-
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
bug with & (parent-selector) and @each directive in 3.3.2 #1757
Comments
This appears to be a bug with - @each $list in & {
+ @for $i from 1 through length(&) {
+ $list: nth(&, $i); |
ah good catch! I can work with that, shall I update the title of this issue? |
xzyfer
added a commit
to xzyfer/sass-spec
that referenced
this issue
Dec 1, 2015
This PR add specs for sass/libsass#1757
Yea please. |
Spec added sass/sass-spec#637 |
Added to the 3.4 milestone since there is a viable workaround. |
deleted |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-- edit --
The following regression has been identified by @xzyfer as having to do with the
@each
directive. Current workaround is to use a@for
loop instead.resulted in this in 3.2.5
but in 3.3.2 does this
The text was updated successfully, but these errors were encountered: