Skip to content
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

Interpolated selectors list with nested selectors #2626

Closed
steven-pribilinskiy opened this issue Jul 7, 2015 · 2 comments
Closed

Interpolated selectors list with nested selectors #2626

steven-pribilinskiy opened this issue Jul 7, 2015 · 2 comments

Comments

@steven-pribilinskiy
Copy link

Source:

@c: .a, .b;

@{c} {
  &,
  & p {
    prop: value;
  }
}

Should be the same as if we would write:

.a, .b {
  &,
  & p {
    prop: value;
  }
}

But...

Compiled:

.a, .b,
.a, .b p {
  prop: value;
}

Expected:

.a,
.b,
.a p,
.b p {
  prop: value;
}
@seven-phases-max
Copy link
Member

See #1421.

@seven-phases-max
Copy link
Member

Closing as duplicate of #1421.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants