We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
To reproduce:
@variable: .bucket; @{variable} { // interpolated selector color: blue; } .some-class:extend(.bucket) {} // does nothing, no match is found
Current behavior:
.bucket, .some-class { color: blue; }
Expected behavior:
.bucket { color: blue; }
Environment information:
less
nodejs
operating system
The text was updated successfully, but these errors were encountered:
The following is the description of the official document:
extend-feature-selector-interpolation-with-extend
However, :extend attached to an interpolated selector works:
.bucket { color: blue; } @{variable}:extend(.bucket) {} @variable: .selector;
compiles to:
.bucket, .selector { color: blue; }
Done!
Using the same environment, the results are as follows:
Sorry, something went wrong.
matthew-dean
No branches or pull requests
To reproduce:
Current behavior:
Expected behavior:
Environment information:
less
version: v4.2.0nodejs
version: 12.22.12operating system
: win10The text was updated successfully, but these errors were encountered: