CSS minification in :not()
ShockedPlot7560 opened this issue ยท 3 comments
ShockedPlot7560 commented
Currently, all spaces in the :not() function are removed, breaking most conditions. Example:
ul > li:not(.class ul > li, .another-class ul > li) {
display: none;
}
will become :
ul>li:not(.classul>li,.another-classsul>li){display:none;}
nizarmah commented
Oh. I never had that use case.
Thanks for reporting it.
I'll make sure to address it.
I need some time, though.
Ironic, saying it after 2 years. I know.
nizarmah commented
nizarmah commented
Hello again @ShockedPlot7560. Thanks again for reporting this btw!
I've released v3
, which contains the fix. I'm closing this.
Don't hesitate to open a new issue if you run into any issues.
This time I assure you the response time will be much better ๐
.