Closed Spope closed 10 years ago
.keyframes has a little bug, it works for all -engines- declaration except for the standard @keyframes rule when combining mulitple instructions. It removes the semicolon :
@-webkit-keyframes test{ from{top:-800px;left:-800px;}to{top:0px;left:0px;}} @-moz-keyframes test{ from{top:-800px;left:-800px;}to{top:0px;left:0px;}} @-o-keyframes test{ from{top:-800px;left:-800px;}to{top:0px;left:0px;}} @keyframes test{ from{top:-800pxleft:-800px}to{top:0pxleft:0px}; }
My lessHat function is :
.keyframes(~'test, from{top:-800px;left:-800px;}to{top:0px;left:0px;}');
Fixed in the new version 2.0.13.
Quickly fixed ! Thanks!
.keyframes has a little bug, it works for all -engines- declaration except for the standard @keyframes rule when combining mulitple instructions. It removes the semicolon :
My lessHat function is :