We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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;}
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
Hey! Small update regarding this: the issue was with Clean CSS.
Clean CSS was updated in #40 which fixed this issue. Lightning CSS, added in #36, also resolves this issue.
I haven't created the release yet, but it'll resolve this issue. I'll update the thread by the end of this week when I do.
Hello again @ShockedPlot7560. Thanks again for reporting this btw!
I've released v3, which contains the fix. I'm closing this.
v3
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 😅.
nizarmah
No branches or pull requests
Currently, all spaces in the :not() function are removed, breaking most conditions. Example:
will become :
The text was updated successfully, but these errors were encountered: