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

Feature Request: Support lists for selector interpolation #2544

Closed
SLaks opened this issue Apr 8, 2015 · 2 comments
Closed

Feature Request: Support lists for selector interpolation #2544

SLaks opened this issue Apr 8, 2015 · 2 comments

Comments

@SLaks
Copy link
Contributor

SLaks commented Apr 8, 2015

If I interpolate a list variable in a selector, can you expand it into multiple selectors when nesting?

For example:

Source

@tags: a, b, code, dd;

@{tags} {
  &:hover {
   color: red; 
  }
}

Current Output

a, b, code, dd:hover {
  color: red;
}

Desired Output

a:hover, b:hover, code:hover, dd:hover {
  color: red;
}
@seven-phases-max
Copy link
Member

See #1421 (also #1694 and other issues linked there).

@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