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
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
I can confirm this is caused by the same issue that is described in #4892 . When I patch $animate.addClass/removeClass to perform the domOperation immediately, the box shadow stays visible correctly.
Actually no, this has to do with the fallback class mechanism put in place to capture hanging animations. ngAnimate adds a clip property to make sure the animation does something and ends. The clip property in this case erases the styling for box-shadow. Guess we'll need to remove this fallback property system.
…ng styles
The clip property seems to remove the box-shadow property when an absolute
positioned animation is ongoing. This fix changes the property to be border-spacing
which is also very underused. The border-spacing CSS property is only visible
when border-collapse is set to separate.
Closesangular#4902
…ng styles
The clip property seems to remove the box-shadow property when an absolute
positioned animation is ongoing. This fix changes the property to be border-spacing
which is also very underused. The border-spacing CSS property is only visible
when border-collapse is set to separate.
Closesangular#4902Closesangular#5030
jamesdaily
pushed a commit
to jamesdaily/angular.js
that referenced
this issue
Jan 27, 2014
…ng styles
The clip property seems to remove the box-shadow property when an absolute
positioned animation is ongoing. This fix changes the property to be border-spacing
which is also very underused. The border-spacing CSS property is only visible
when border-collapse is set to separate.
Closesangular#4902Closesangular#5030
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When $animate.enabled == true box shadows do not appear while the animations is going. They reappear once transition is complete.
See Plunker.
http://plnkr.co/edit/0hnTAZJjfo2ao2whiIzr?p=preview
The text was updated successfully, but these errors were encountered: