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
Tested using latest master
Describe the bug Trying to minify CSS that includes @supports selector produces wrong output
@supports selector
To Reproduce
var result = Uglify.Css(@"@supports selector(:has(*)) { .VentaRapida { position: absolute; } }");
Minified output or stack trace @supports :has(*)){.VentaRapida{position:absolute;}}
@supports :has(*)){.VentaRapida{position:absolute;}}
Excepted output code @supports selector(:has(*)){.VentaRapida{position:absolute;}}
@supports selector(:has(*)){.VentaRapida{position:absolute;}}
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Tested using latest master
Describe the bug
Trying to minify CSS that includes
@supports selector
produces wrong outputTo Reproduce
Minified output or stack trace
@supports :has(*)){.VentaRapida{position:absolute;}}
Excepted output code
@supports selector(:has(*)){.VentaRapida{position:absolute;}}
The text was updated successfully, but these errors were encountered: