sass / sass

Sass makes CSS fun!

Home Page:https://sass-lang.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Selector unification is asymmetrical for the universal selector

nex3 opened this issue · comments

Currently the unification of the universal selector, *, isn't symmetrical. selector-unify("*", ".a") returns (("*.a")), but selector-unify(".a", "*") returns ((".a")). The latter is correct; a universal selector without a namespace should be eliminated any time there's another selector present.