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

Less. The dynamic stylesheet language.

Results 187 less.js issues
Sort by recently updated
recently updated
newest added

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...

bug

See: https://github.com/plus3network/gulp-less/issues/126 Related issues: https://github.com/plus3network/gulp-less/issues/126

bug

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;...

low priority

```less div { @value: 1px; a: @value * 1rem; // 1px - ok b: @value * 1px * 1rem; // 1px - ok d: @value / 1px; // 1px -...

bug
needs decision

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 ``...

feature request
low priority

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)...

high priority
up-for-grabs
good first issue

## My Input So this: ``` less .class, .other { /* stuff */ } .class { .class, .other { /* more stuff */ } } .extension { &:extend(.class all); }...

bug
medium priority

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...

bug
medium priority

**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...

bug
medium priority
up-for-grabs

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...

bug
low priority