Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. .mwc-cashout-request-row-wrapper.ng-hide:not(.ng-hide-animate) {
  2. display: block !important;
  3. -webkit-animation: fadeout 1s forwards; /* Safari 4+ */
  4. -moz-animation: fadeout 1s forwards; /* Fx 5+ */
  5. -o-animation: fadeout 1s forwards; /* Opera 12+ */
  6. animation: fadeout 1s forwards; /* IE 10+, Fx 29+ */
  7. }
  8.  
  9. @keyframes fadeout {
  10. 0% {
  11. opacity: 1;
  12. }
  13. 99% {
  14. opacity: 0;
  15. }
  16. 100% {
  17. opacity: 0;
  18. position: fixed;
  19. z-index: -9999;
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement