You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
311 B
33 lines
311 B
@charset "UTF-8";
|
|
|
|
@import "import/test.less";
|
|
|
|
.start() {
|
|
.test2 {
|
|
color: red;
|
|
}
|
|
}
|
|
|
|
.mix() {
|
|
color: black;
|
|
}
|
|
|
|
.test1 {
|
|
.mix();
|
|
}
|
|
|
|
.start();
|
|
|
|
.mixin_import1();
|
|
|
|
.mixin_import2();
|
|
|
|
@debug: 1;
|
|
& when (@debug = 1) {
|
|
.test {
|
|
color: red;
|
|
& when (@debug = 1) {
|
|
width: 2;
|
|
}
|
|
}
|
|
}
|