mirror of
https://github.com/less/less.js.git
synced 2026-02-09 22:45:28 -05:00
Fixed a bug that could appear with compression enabled, and minor tabbing issues in tests.
23 lines
330 B
Plaintext
23 lines
330 B
Plaintext
.mixin_import1() {
|
|
@media all {
|
|
.tst {
|
|
color: black;
|
|
@media screen {
|
|
color: red;
|
|
.tst3 {
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.mixin_import2() {
|
|
.tst2 {
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.tst3 {
|
|
color: grey;
|
|
} |