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
Version 2.4.8 removes spaces in css selector when inside a media (or @supports) query:
@media screen and (-ms-high-contrast: none) { body :focus { outline: 2px solid #5e9ed6; } }
The space before : is removed and changing the selector.
@media screen and (-ms-high-contrast: none) { body:focus { outline: 2px solid #5e9ed6; } }
The space before : should not be removed.
The text was updated successfully, but these errors were encountered:
Hi @nethzyr The same for me even with asterisk.
@media ... { .content :not(...) { ... } } or @media ... { .content *:not(...) { ... } }
@media ... { .content :not(...) { ... } }
@media ... { .content *:not(...) { ... } }
After compressing: @media ...{ .content:not() { ... } }
@media ...{ .content:not() { ... } }
UPD: temporary solution is to use "* *" @media ... { .content * *:not(...) { ... } }
@media ... { .content * *:not(...) { ... } }
After compressing: @media ... { .content * :not(...) { ... } }
@media ... { .content * :not(...) { ... } }
Sorry, something went wrong.
Fixed in my fork: primefaces-extensions/resources-optimizer-maven-plugin@80679c5
No branches or pull requests
Version 2.4.8 removes spaces in css selector when inside a media (or @supports) query:
The space before : is removed and changing the selector.
The space before : should not be removed.
The text was updated successfully, but these errors were encountered: