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
I thought I was going crazy, but it seems that :not with multiple selectors do not get parsed correctly?
:not
Input: :not(FOO, .BAR) Output: :not(FOO, FOO)
:not(FOO, .BAR)
:not(FOO, FOO)
Here's a screenshot of the debugger output in Intellij.
The text was updated successfully, but these errors were encountered:
Fixed an error with the negation parameters; #66
35c736a
Thanks for pointing this out. It always took the first selector only :( Will be fixed in 6.3.2 which is building atm
Sorry, something went wrong.
Thank you for the speedy turn around time!
phax
No branches or pull requests
I thought I was going crazy, but it seems that
:not
with multiple selectors do not get parsed correctly?Input:
:not(FOO, .BAR)
Output:
:not(FOO, FOO)
Here's a screenshot of the debugger output in Intellij.
The text was updated successfully, but these errors were encountered: