Fix dynamic mixins with nested rules

Dynamic mixins with more than one level of nesting wouldn't work.
This is now fixed. Also refactored mixin.definition.eval a little.
This commit is contained in:
cloudhead
2010-04-22 13:07:41 -04:00
parent 1e0cfe9ac1
commit 25dbfb177a
5 changed files with 31 additions and 7 deletions

View File

@@ -0,0 +1,13 @@
.mix (@a: 10) {
.inner {
height: @a * 10;
.innest {
width: @a;
}
}
}
.class {
.mix(30);
}