mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-12-04 12:09:30 +00:00
5852e320a3
Creates a new skins.vector.zebra.styles module that will hold style modifications for the Vector Zebra update. Affected files are copied from skins.vector.styles without modification (at this point) to improve revision history in git. The new module should compile without error and existing styles should not be affected. Bug: T332600 Change-Id: I9b367ca0a0afea32b49915b40bc03c05910d4227
25 lines
787 B
Plaintext
25 lines
787 B
Plaintext
/**
|
|
* Vector Zebra stylesheets
|
|
* NOTE: The skins.vector.zebra.styles module is intended to hold
|
|
* styles that are in-development under a feature flag.
|
|
* This module should be folded back into skins.vector.styles after
|
|
* the feature flag as been removed.
|
|
*/
|
|
|
|
@import 'mediawiki.mixins.less';
|
|
@import '../common/variables.less';
|
|
@import './mixins.less';
|
|
|
|
@media screen {
|
|
@import './layouts/screen.less';
|
|
@import './layouts/toc/pinned.less';
|
|
@import './layouts/toc/unpinned.less';
|
|
@import './components/Dropdown.less';
|
|
@import './components/MainMenu.less';
|
|
@import './components/PinnableElement.less';
|
|
@import './components/PinnableHeader.less';
|
|
@import './components/PageTools.less';
|
|
@import './components/TableOfContents.less';
|
|
@import './components/StickyHeader.less';
|
|
}
|