Files
deb-python-lesscpy/lesscpy/test/less/scope.less
2012-01-28 14:52:09 +00:00

23 lines
341 B
Plaintext

@x: blue;
@z: transparent;
.scope1 {
@y: orange;
@z: black;
color: @x; // blue
border-color: @z; // black
.hidden {
@x: #131313;
}
.scope2 {
@y: red;
color: @x; // blue
.scope3 {
@local: white;
color: @y; // red
border-color: @z; // black
background-color: @local; // white
}
}
}