-
Notifications
You must be signed in to change notification settings - Fork 12
Open
Labels
Description
It looks like this plugin tries not to break html selectors, but it doesn't handle more complex selectors containing html.
Test case:
Input:
html[data-whatintent=keyboard] .button:focus {}Actual output:
:not(#\9):not(#\9):not(#\9) html[data-whatintent=keyboard] .button:focus {}These styles never end up being applied because html has no parent element
Expected output:
html[data-whatintent=keyboard]:not(#\9):not(#\9):not(#\9) .button:focus {}It should append stackableRoot to the root selector, instead of prepending
bpartridge