|
| Issue Type: |
New Feature Bug |
| Description: |
A CSS SSX containing the following:
{ { code} p \ { width: calc(50% + 1px) } {code } }
is minified to:
{ { code} p \ {width:calc(50%+1px)} {code } }
Notice the missing spaces around the + operator. This is a syntax error in CSS, the declaration including the calc expression gets entirely discarded by the CSS parser as a consequence.
This also means that ?minify=false does not behave the same as without. |
|