96d719b31c
Also - import mixins separately from variables, those two should not be mashed together - change mobile navigation logic to work around the new mixin Change-Id: I54ae992dd5627dd54a690dd064cf662b382761c1
17 lines
484 B
Text
17 lines
484 B
Text
@import 'variables.less';
|
|
@import 'mediawiki.mixins.less';
|
|
|
|
@media screen {
|
|
@import 'screen-common.less';
|
|
|
|
// When responsive mode is not enabled, apply desktop styles at lower resolutions unconditionally.
|
|
// When responsive mode is enabled, this class will be present and these rules will not apply
|
|
// and instead the rules in skin-responsive.less will apply.
|
|
body:not( .skin--responsive ) {
|
|
@import 'screen-desktop.less';
|
|
}
|
|
}
|
|
|
|
@media print {
|
|
@import 'print-common.less';
|
|
}
|