mirror of
https://github.com/less/less.js.git
synced 2026-01-24 14:48:00 -05: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)
13 lines
178 B
Plaintext
13 lines
178 B
Plaintext
/* double nested file */
|
|
should {
|
|
be: invisible;
|
|
}
|
|
/* do not extend outside of this */
|
|
.something {
|
|
invisible: suppress warning;
|
|
}
|
|
.invisible {
|
|
&:extend(.something all);
|
|
}
|
|
|