Hey,
looks like when parsing pseudo selectors it is removing one of the colons:
when parsing this rule:
.fancyscroll::-webkit-scrollbar { border: none; }
becomes:
.fancyscroll:-webkit-scrollbar { border: none; }
which isn't valid, tried version 0.9.22 and trunk
Cheers,
Paul
Anonymous
I wasn't able to solve this nicely had to hack a solution, ran into an issue handling CSS2 :before, :after etc. pseudo elements.
Main issue is the CSS2 interface isn't made for CSS3 https://www.w3.org/Style/CSS/SAC/doc/org/w3c/css/sac/Selector.html
Ideally if that had a pseudo element legacy object for the CSS2 pseudo elements, we could handle those cases easily.
-Joshua.
please try the latest snapshot
fix confirmed and working, thanks