DAZ

Results 3 issues of DAZ

LESS chokes on any of the propriety MS expressions at the moment, but this one would be useful for setting a max-width {width:expression(documentElement.clientWidth > @max-width-1 ? "@max-width" : "90%");}

IE support

``` .foo(@bar:1){ div{color:red;}} #test{.foo(2);} ``` Produces (note the rogue 'foo' that has been added to the nested property!): ``` #test { foo div { color: red; } } ```

dynamic mixins

Can a nested rule refer to an argument from its parent? This is what I want to do: .box(@width:200px){ width:@width; .column{margin:@width/5} } .content{.box(600px);} And this should produce: ``` .content{width:600px;} .content...

enhancement
2.0 - less.js