-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Selector unification is asymmetrical for the universal selector #2247
Labels
bug
Something isn't working
Comments
nex3
added a commit
to sass/dart-sass
that referenced
this issue
Feb 21, 2017
nex3
added a commit
to sass/dart-sass
that referenced
this issue
Feb 24, 2017
nex3
added a commit
to sass/dart-sass
that referenced
this issue
Feb 25, 2017
nex3
added a commit
to sass/dart-sass
that referenced
this issue
May 26, 2017
nex3
added a commit
to sass/sass-spec
that referenced
this issue
May 28, 2017
nex3
added a commit
to sass/dart-sass
that referenced
this issue
May 28, 2017
nex3
added a commit
to sass/dart-sass
that referenced
this issue
May 28, 2017
nex3
added a commit
to sass/sass-spec
that referenced
this issue
May 28, 2017
nex3
added a commit
to sass/sass-spec
that referenced
this issue
Jun 16, 2017
nex3
added a commit
that referenced
this issue
Jun 16, 2017
nex3
added a commit
that referenced
this issue
Jun 16, 2017
nex3
added a commit
to sass/sass-spec
that referenced
this issue
Jun 16, 2017
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Currently the unification of the universal selector,
*
, isn't symmetrical.selector-unify("*", ".a")
returns(("*.a"))
, butselector-unify(".a", "*")
returns((".a"))
. The latter is correct; a universal selector without a namespace should be eliminated any time there's another selector present.The text was updated successfully, but these errors were encountered: