YUI is stripping out whitespace between % and px like this
height: calc(100% + 30px)
Rules don't work without them.
How I can resolve this problem, if I need to use only this minifier?
You can use this workaround for this:
height: calc(100% - -30px);