less.ruby icon indicating copy to clipboard operation
less.ruby copied to clipboard

Less Ruby — now at http://github.com/cowboyd/less.rb

Results 93 less.ruby issues
Sort by recently updated
recently updated
newest added
trafficstars

I don't know if "conditional selectors" is the right term, but I'd there to be some way to have all my styles that apply to an element be in the...

It would be nice if less could watch multiple files ``` lessc -w file1.less file2.less file3.less ```

enhancement

The following causes an error when processed with less: ``` @op: .5; #title-bar { background-color: rgba(0, 0, 0, @op); } ``` This is the output of lessc: ``` /Users/caleb/Applications/ruby-1.8.7-p174/lib/ruby/gems/1.8/gems/polyglot-0.2.9/lib/polyglot.rb:78:in `max':...

bug

I am attempting to compile a simple LESS file that @imports two additional simple CSS files. This is taking over 4 seconds! It seems that it should compile almost instantaneously....

enhancement
2.0 - less.js

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

// CODE div#administration div.js:content { font-size:smaller; } // ERROR ! Syntax Error: on line 2185: expected one of . # [ ( :: : \* - @media @font-face , ;...

css support

I get a parse errror using less 1.2.19 with print CSS selectors: ``` @page { margin: 2cm } @page :first { margin-top: 10cm } ``` The CSS paged media specification:...

2.0 - less.js

This valid CSS: ``` @media screen { body { color:red; } h1 { color:blue; } } ``` get compiled to ``` @media screen body { color: red; } @media screen...

2.0 - less.js

I noticed in lessjs that it parses for both and tags. However after less parses the less syntax in the style tag and then tries to reapply it back to...

The Ruby implementation of Less was the first. Now, I am reading that you are only working on Less in JS, which is obviously a major change, and not compatible...