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
Classes that contained the @-ms-keyframes are now within @-ms-keyframes.
Steps to recreate
Place @-ms-keyframes and contained rules inside a class.
.delete-this {
@-ms-keyframes wiggle {
0% { -ms-transform: rotate(3deg); }
50% { -ms-transform: rotate(-3deg); }
100% { -ms-transform: rotate(3deg); }
}
}
Compile with web compiler
Current behavior
Classes that contained the @-ms-keyframes are now within @-ms-keyframes. I believe @Keyframes are only allowed "From", "To" and/or [percentage]. See attached images.
Base Code:
Compiled Code:
Expected behavior
The classes should be outside not inside.
The text was updated successfully, but these errors were encountered:
Installed product versions
Description
Classes that contained the @-ms-keyframes are now within @-ms-keyframes.
Steps to recreate
Place @-ms-keyframes and contained rules inside a class.
.delete-this {
@-ms-keyframes wiggle {
0% { -ms-transform: rotate(3deg); }
50% { -ms-transform: rotate(-3deg); }
100% { -ms-transform: rotate(3deg); }
}
}
Compile with web compiler
Current behavior
Classes that contained the @-ms-keyframes are now within @-ms-keyframes. I believe @Keyframes are only allowed "From", "To" and/or [percentage]. See attached images.
Base Code:
Compiled Code:
Expected behavior
The classes should be outside not inside.
The text was updated successfully, but these errors were encountered: