Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.4
-
None
Description
@keyframes anim { 0% { opacity: 0; } 100% { opacity: 1; } }
is turned into
@keyframes anim{0{opacity:0}100%{opacity:1}}
but that should be
@keyframes anim{0%{opacity:0}100%{opacity:1}}
See https://github.com/yui/yuicompressor/issues/151, https://github.com/yui/yuicompressor/issues/162, https://github.com/yui/yuicompressor/pull/118, https://github.com/yui/yuicompressor/issues/80 and others.