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
The text was updated successfully, but these errors were encountered:
n3dst4
changed the title
boxShadowBlur and textShadowBlur animation generates textShadow property which is invalid in MS Edge
boxShadowBlur and textShadowBlur animation look wrong in MS Edge
Dec 12, 2016
As far as I can tell, the generated shadow property is constructed in an older format which Edge has somehow chosen to drop support for. The text-shadow for example is in the format color offset-x offset-y radius blur, while the official format is color offset-x offset-y blur.
Needs to be looked into, but currently (1.4.0+) you can ignore those split bits, and use the entire string value directly - {boxShadow:["red 0px 0px 25px", "blue 10px 10px 15px"]} etc :-)
Steps:
Expected:
The same pretty shadow effect
Actual:
A big solid black border effect.
Tested on:
Microsoft Edge 38.14393.0.0
Chrome 54.0.2840.99 m
Screenshot
Chrome:
Edge:
The text was updated successfully, but these errors were encountered: