Files
less.js/test/less/sourcemaps/basic.less
2013-09-17 19:37:00 +01:00

27 lines
285 B
Plaintext

@var: black;
.a() {
color: red;
}
.b {
color: green;
.a();
color: blue;
background: @var;
}
.a, .b {
background: green;
.c, .d {
background: gray;
& + & {
color: red;
}
}
}
.extend:extend(.a all) {
color: pink;
}
@import (inline) "imported.css";