CodeSleeve / asset-pipeline

This Laravel 4 package provides a very simple and easy to use asset pipeline. It was heavily inspired by the Rails asset pipeline. We make use of the wonderful Assetic package to help with pre-compliation!
http://www.codesleeve.com
MIT License
491 stars 53 forks source link

CSS media queries without space after keyword broken #221

Open jakubito opened 9 years ago

jakubito commented 9 years ago

Media queries typed like this

@media( max-width:650px){}

will end up minified to this

@media max-width:650px){}

which breaks the syntax rules and browser will exclude whole media query. Always have a space character after @media keyword for proper minification. Already opened here nitra/PhpMin#6