fmarcia / uglifycss

Port of YUI CSS Compressor from Java to NodeJS
MIT License
284 stars 37 forks source link

Leave the space after media query `not` #74

Open madmurphy opened 3 years ago

madmurphy commented 3 years ago

The CSS fragment

@media only screen and not (max-width:768px) {

gets minified as

@media only screen and not(max-width:768px){

However that is an error and does not work in Firefox. It should become:

@media only screen and not (max-width:768px){

--madmurphy

FlowIT-JIT commented 2 years ago

Related: #71

FlowIT-JIT commented 2 years ago

Any progress on this issue? The problem dates back to 2019 (see #71). Is there any known work around available, except avoid not ?