pixsy/node_modules/less/test/less-bom/sourcemaps/basic.less

27 lines
288 B
Plaintext
Raw Normal View History

2017-12-22 17:22:08 +00:00
@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";