You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Jochen Kemnade (JIRA)" <ji...@apache.org> on 2016/01/05 17:13:39 UTC

[jira] [Assigned] (TAP5-2524) CSS minification breaks keyframes

     [ https://issues.apache.org/jira/browse/TAP5-2524?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jochen Kemnade reassigned TAP5-2524:
------------------------------------

    Assignee: Jochen Kemnade

> CSS minification breaks keyframes 
> ----------------------------------
>
>                 Key: TAP5-2524
>                 URL: https://issues.apache.org/jira/browse/TAP5-2524
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-webresources
>    Affects Versions: 5.4
>            Reporter: Jochen Kemnade
>            Assignee: Jochen Kemnade
>
> {code}
> @keyframes anim {
>     0% { opacity: 0; }
>   100% { opacity: 1; }
> }
> {code}
> is turned into
> {code}
> @keyframes anim{0{opacity:0}100%{opacity:1}}
> {code}
> but that should be
> {code}
> @keyframes anim{0%{opacity:0}100%{opacity:1}}
> {code}
> 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.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)