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

I want to create a simple LESS plugin that create variables on a function call I want to do this because i want to have a less variable dynamic on...

support as plugin
question

As a developer, I did installation for all needed tools/software into virtual machine spinning with Vagrant Up and Virtual Box. With my Vagrant settings I have other than localhost domain...

browser
bug
medium priority
up-for-grabs

A variable extracted from a list has a different value than expected, but not during the first mixin loop. An example is: ``` less @list: red, blue, green; .loop(@rules, @index:...

question

on the manual: ```less .mixin(@value) when (ispixel(@value)) {width: @value} .mixin(@value) when not(default()) {padding: (@value / 5)} div-1 { .mixin(100px); } div-2 { /* ... */ .mixin(100%); } ``` result: ```css...

needs decision
question

in my case first I use function to create a `.in-10` ... ``` css @selectors: 5, 10, 20; each(@selectors, { .in-@{value}{ padding: (@value)px; } }); ``` then use `.in-10` as...

question

How do I use a variable in less js as a command that appears before a ( bracket or parenthesis? I asked on Stack Overflow and couldn't get any help....

question

I'm using less.js version 3.8.1 in the Browser for local development (less.min.js from /dist from the 3.8.1 Release Source Zip), and in Internet Explorer 11 it throws a TypeError because...

bug
low priority

I'm trying to bundle `[email protected]` and `[email protected]` with `[email protected]` via `[email protected]`. My `webpack.config.js` looks like this: ```js const path = require('path'); const MiniCssExtractPlugin = require('mini-css-extract-plugin'); const { VueLoaderPlugin } =...

research needed

Here are 2 examples of valid code using the `:is` pseudo-class that are not handled by LESS correctly. Can you please allow valid code like this to work with LESS?...

bug
high priority

#697 proposes single and double character hex color support (eg: `#E` would convert to `#EEEEEE`). In the spirit of this, I'm proposing support for alpha hex support. `#FF000080` The extra...

feature request
medium priority