mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 07:15:09 +00:00
33 lines
No EOL
311 B
Text
33 lines
No EOL
311 B
Text
@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;
|
|
}
|
|
}
|
|
} |