matthiasmullie / minify

CSS & JavaScript minifier, in PHP. Removes whitespace, strips comments, combines files (incl. @import statements and small assets in CSS files), and optimizes/shortens a few common programming patterns.
https://matthiasmullie.github.io/minify/
MIT License
1.97k stars 309 forks source link

Calc function missing on background-position property #395

Closed gijo-varghese closed 2 years ago

gijo-varghese commented 2 years ago

Describe the bug Some calc functions in the background-position property are missing after minify:

background-position: right 0.8em bottom calc(50% - 5px), right 0.8em top calc(50% - 5px);

The above CSS rule minifies to

background-position: right .8em bottom calc(50% - 5px),right .8em top;