This commit is contained in:
synth-ruiner
2017-12-22 17:22:08 +00:00
commit 495f1d958e
3484 changed files with 393731 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
.container-no-parent-selector {
.mixin-no-parent-selector();
}
.container-with-parent-selector {
.mixin-with-parent-selector()
}

View File

@@ -0,0 +1,13 @@
.theOnlySelector {
avoid: warning;
}
.unusedAndReference:extend(.theOnlySelector) {
unused-and: reference;
}
@import (reference) "global-scope-nested.less";
.test-b {
background-color: green;
&:extend(.test-a all);
}

View File

@@ -0,0 +1,3 @@
.test-a {
color: red;
}

View File

@@ -0,0 +1,8 @@
.mixin-no-parent-selector() {
background-color: red;
}
.mixin-with-parent-selector() {
&:first-child{ // USING AN & SELECTOR HERE
background-color: blue;
}
}

View File

@@ -0,0 +1,12 @@
/* double nested file */
should {
be: invisible;
}
/* do not extend outside of this */
.something {
invisible: suppress warning;
}
.invisible {
&:extend(.something all);
}

View File

@@ -0,0 +1,10 @@
/*
tralala
*/
.fix {
fix: fix;
}
.something {
@import (reference) "multiple-import-nested.less";
inside: something;
}

View File

@@ -0,0 +1,3 @@
.mixin {
was: included;
}

View File

@@ -0,0 +1,3 @@
ruleset {
shall-be-invisible: less;
}