mirror of
https://gerrit.wikimedia.org/r/mediawiki/skins/Vector.git
synced 2024-11-17 20:52:14 +00:00
95c80c4efe
In I23f18fc5f078da3331cad540bbaf533d348f2108 layout was pulled out into a separate file and we changed the ordering of our CSS. This was done with the thinking that media print queries would be mixed with media screen. After discussions with Volker, I have been convinced this was a mistake. media queries of the same type can be nested so the @media screen is removed from layout.less and the media query in index.less will be used instead. Change-Id: I3aab00c9bcc734ea1ba5a9cf242c6e36ac1cc076
21 lines
459 B
Plaintext
21 lines
459 B
Plaintext
@import '../../variables.less';
|
|
|
|
/* Vector screen styles */
|
|
@media screen {
|
|
@import 'common.less';
|
|
@import 'legacy/layout.less';
|
|
@import 'PersonalMenu.less';
|
|
@import 'SearchBox.less';
|
|
@import 'VectorTabs.less';
|
|
@import 'watchstar.less';
|
|
@import 'VectorMenu.less';
|
|
@import 'Portal.less';
|
|
@import 'Sidebar.less';
|
|
@import 'SidebarLogo.less';
|
|
@import 'Footer.less';
|
|
@import 'externalLinks.less';
|
|
}
|
|
|
|
@import 'watchstar-ie8.less';
|
|
@import 'print.less';
|