You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a very specific bug with my LESS using the Lesshat keyframes mixin. There appears to be an extra semicolon which breaks the CSS for the HTC One stock android browser. So far this is the only device/browser that I've seen affected but there could be others.
This major issue is now also affecting Safari on OS X 10.11 and iOS 9 betas.
The issue is not the extra semicolon at the end of the @Keyframes, but the fact that the line is not terminated by the "}" on a contiguous line, but on the line below.
If you try to move the last "}" up, it starts working with Safari. I assume the same will happen with the HTC. Even the less hat code mentions that the "@*keyframes must be in a single line".
I've added a pull requests that moves the "}" up, by having to create a fake line below it. Please see it below.
Hi
I have a very specific bug with my LESS using the Lesshat keyframes mixin. There appears to be an extra semicolon which breaks the CSS for the HTC One stock android browser. So far this is the only device/browser that I've seen affected but there could be others.
I have the following LESS:
Which gets compiled to:
The offending semicolon seems to be the one right at the end, before the final brace '}'.
I believe this could also be the cause of this issue: #129
Thanks
JumpSlash
The text was updated successfully, but these errors were encountered: