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)
9 lines
168 B
Plaintext
9 lines
168 B
Plaintext
.mixin-no-parent-selector() {
|
|
background-color: red;
|
|
}
|
|
.mixin-with-parent-selector() {
|
|
&:first-child{ // USING AN & SELECTOR HERE
|
|
background-color: blue;
|
|
}
|
|
}
|