17 lines
451 B
Text
17 lines
451 B
Text
|
@import 'variables.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';
|
||
|
}
|