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

Minimal Reproduction using less 3.12.0 fail.less: ```less .fail { background-image: url('/images/absolute.png'); } .works { background-image: url('images/relative.png'); } ``` run: ```bash lessc -rp=https://mycdn/url/folder fail.less ./out.css ``` out.css ```css .fail { background-image:...

needs info

Have this piece of code that imports component files based on a variable. ```less @components: { columns: true; ratios: false; }; each(@components, { & when (@value = true) { @import...

bug
low priority

In `less-loader` we have custom `FileManager` plugin (https://github.com/webpack-contrib/less-loader/blob/master/src/utils.js#L27). Algorithm (https://github.com/webpack-contrib/less-loader/blob/master/src/utils.js#L87): - try to load less file using built-in `FileManager`, if it is fail - try to load less file using...

bug
medium priority
up-for-grabs

Less.js Version: 3.11.1 ```less /** a */ .modal { /** b */ &-header { font-size: 12px; } /** c */ &-title { font-size: 12px; } ``` Output: ```css /** a...

feature request
low priority
up-for-grabs

PhantomJS has long created issues for continuous integration tests, where it will timeout or not download, and more recently, fail to execute browser tests under Node 4. If someone had...

high priority
up-for-grabs
good first issue

Heya guys. I have found an annoying issue, which is pretty basic use of two mechanics: I cant extend a class i generate by nesting it using "& {}" Heres...

bug
medium priority
up-for-grabs

I understand from the docs that extends can't be used to extend a selector with a variable in it, but it is supposed to be able to be attached to...

bug
medium priority
up-for-grabs

the link to "Less.js Syntax Highlighting User Defined Language by Raúl Salitrero" is broken at [lesscss.org/tools/](http://lesscss.org/tools/) in section "Notepad++" (probably because the NPP project moved to github). The version by...

low priority

## Feature Request It would be very powerful if :extend could be passed a class name as a variable. e.g. something like: ``` &:extend(@{extending-class-string}); ``` or: ``` &:extend(@extending-class); ``` ##...

feature request
low priority

Can you add please an options to keep empty selectors, or at least point me at the file where i can add it myself. I need it to ease the...

feature request
low priority
up-for-grabs
needs decision