Files
less.js/test/less/import-reference.less
jurcovicovam 8f1c35a814 Extend looses @supports imported by reference
New logic: directive with body that contains something referenced (for
example by extend) will be shown in output too. @Media works with the same
logic - it shows up in output if it contains something visible.

Related to: #2359
2015-01-23 17:48:26 +01:00

22 lines
334 B
Plaintext

@import (reference) url("import-once.less");
@import (reference) url("css-3.less");
@import (reference) url("media.less");
@import (reference) url("import/import-reference.less");
.b {
.z();
}
.zz();
.visible:extend(.z all) {
extend: test;
}
.test-mediaq-import {
.mixin-with-mediaq(340px);
}
.class:extend(.class all) {
}