Files
deb-python-lesscpy/lesscpy/test/less/mixins-nested-basic.less
2012-02-17 09:40:56 +00:00

18 lines
264 B
Plaintext

.nested-ruleset (@width: 200px) {
width: @width;
.column {
margin: @width;
&.blue {
color: blue;
.deep {
padding: @width;
}
}
}
}
.content {
.nested-ruleset(600px);
}
.content-em {
.nested-ruleset();
}