wp-autoless/vendor/leafo/lessphp/tests/inputs/scopes.less

41 lines
303 B
Text
Raw Permalink Normal View History

2016-07-25 13:40:28 +01:00
@a: 10;
@some {
@b: @a + 10;
div {
@c: @b + 10;
other {
@d: @c + 10;
world {
@e: @d + 10;
height: @e;
}
}
}
}
body {
@some;
}
@some;
.test(@x: 10) {
height: @x;
.test(@y: 11) {
height: @y;
.test(@z: 12) {
height: @z;
}
.test;
}
.test;
}
pre {
.test;
}