mirror of
https://github.com/less/less.js.git
synced 2026-05-01 03:00:22 -04:00
- refactored how import reference works - refactored to-css-visitor (this is side product, it was getting complicated) - fixes issues #1851, #1896, #1878, #2716, #1968, #2162 (same as #1896)
14 lines
229 B
Plaintext
14 lines
229 B
Plaintext
.theOnlySelector {
|
|
avoid: warning;
|
|
}
|
|
.unusedAndReference:extend(.theOnlySelector) {
|
|
unused-and: reference;
|
|
}
|
|
|
|
@import (reference) "global-scope-nested.less";
|
|
|
|
.test-b {
|
|
background-color: green;
|
|
&:extend(.test-a all);
|
|
}
|