Skip to content
New issue

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

Incorrect minification of @supports #258

Closed
vbwdev opened this issue Dec 10, 2015 · 1 comment
Closed

Incorrect minification of @supports #258

vbwdev opened this issue Dec 10, 2015 · 1 comment

Comments

@vbwdev
Copy link

vbwdev commented Dec 10, 2015

This code

@supports ((-webkit-filter: invert(1)) or (filter: invert(1))) {
  a:hover {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}

is minimized in this code

@supports ((-webkit-filter:invert(1))or (filter:invert(1))){a:hover{-webkit-filter:invert(1);filter:invert(1)}}

Сhrome and Firefox don't work without space between ")" and "or".

It works correctly http:https://jsfiddle.net/hgfn04xq/
It works incorrectly http:https://jsfiddle.net/tcq6fsbp/

@lahmatiy
Copy link
Member

Thank you for bug report.
Check out 1.4.4

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants