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
Upstream issue: sass/sass#2196
.#{'b-' + black} { background: black; }
LibSass 3.4.0-RC1
.b-#000{background:black}
Ruby Sass 3.4.22
The text was updated successfully, but these errors were encountered:
@bwbuchanan thanks for the report. I have confirm this behaviour is broken in both LibSass and Ruby Sass.
Sorry, something went wrong.
Another example:
$colors: red #f00, yellow #ff0, green #0f0, blue #00f; @each $entry in $colors { $name: nth($entry, 1); $color: nth($entry, 2); .box-#{$name} > header { background: $color; } }
Was reported at Ruby Sass in 2013, I can reproduce it in Libasass 3.5.0.beta.2 (via node-sass 4.5.0). Seems to be fine in LibSass 3.4.0 though.
Another similar issue — #1701
Add todo spec test for libsass issue 2232
e7df70f
sass/libsass#2232
No branches or pull requests
Upstream issue: sass/sass#2196
LibSass 3.4.0-RC1
Ruby Sass 3.4.22
The text was updated successfully, but these errors were encountered: