-
Notifications
You must be signed in to change notification settings - Fork 467
New issue
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
@each on nested lists assigns the wrong value the the variable in the loop. #1709
Comments
+1 |
Looks related to #1729, maybe |
Spec added sass/sass-spec#610 |
Pretty sure this is a duplicate of #1645 |
This can be simplified to: $qwe: transition;
$prefix: '-webkit-';
$prefixed: #{$prefix}$qwe,;
foo { bar: $prefixed; } |
Ran across the same bug today when debugging Bourbon's Here is a simplified version of the bug:
|
@sheinzle that is a different bug and has already been fixed. |
Thanks @mgreter - I'm excited to see this in production so I can switch back to libsass, and leave slow Ruby sass behind :) |
In this mixin,
$transitions
contains a comma-delimited list of CSS transitions, (each of which SASS treats a s a space-delimited list). However, the inner @each which should contain the entire CSS transition, only contains the first item of the transition.Uncommenting the commented lines shows how things get weird.
Example:
The mixin works as expected in Ruby Sass, but fails with lib sass, (running through grunt and grunt-sass).
The text was updated successfully, but these errors were encountered: