less.js
less.js copied to clipboard
Less. The dynamic stylesheet language.
from https://github.com/less/less.js/issues/2541 but I've seen this in projects ``` // mixins.less .background(@image) { background-image: data-uri(@image); } ``` ``` // app/content/button.less button { .background("images/btn.jpg"); } ``` I would expect the image...
See: https://github.com/plus3network/gulp-less/issues/126 Related issues: https://github.com/plus3network/gulp-less/issues/126
According to: https://github.com/web-platform-tests/wpt/blob/master/css/css-variables/test_variable_legal_values.html ...Less should be able to parse a block like this for custom properties: ```less legal css variable values { --percentage: 25%; --number: 37; --length: 12em; --time: 75ms;...
```less div { @value: 1px; a: @value * 1rem; // 1px - ok b: @value * 1px * 1rem; // 1px - ok d: @value / 1px; // 1px -...
Hi, This is a feature request concerning `less-browser`. #### Current behavior There are currently 2 ways of compiling a less resource to css client-side: either put it in a ``...
Currently, there's not an easy way to demo changes in code output online between versions. Would someone be willing to take the time to update http://lesscss.org/less-preview ? The UI (dropdown)...
## My Input So this: ``` less .class, .other { /* stuff */ } .class { .class, .other { /* more stuff */ } } .extension { &:extend(.class all); }...
Extend all does not always find matches in selector generated by another extend. Such match can but does not have to be found, depending on circumstances: - Two extend keywords...
**Version** Less 3.8.1 via CodeKit **description** An error is thrown when escaping color variable and using it in an other var as string. No error with Less 2.x A less...
Hey! LESS version 3.8.1 introduced outputting HSL color values as authored instead of their HEX counterparts (e.g. `hsl(0, 0%, 76%)` outputs `hsl(0, 0%, 76%)` instead of `#c2c2c2` now), which is...