inputmask.css 839 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .im-caret {
  2. -webkit-animation: 1s blink step-end infinite;
  3. -moz-animation: 1s blink step-end infinite;
  4. -ms-animation: 1s blink step-end infinite;
  5. -o-animation: 1s blink step-end infinite;
  6. animation: 1s blink step-end infinite;
  7. }
  8. @keyframes blink {
  9. from, to {
  10. border-right-color: black;
  11. }
  12. 50% {
  13. border-right-color: transparent;
  14. }
  15. }
  16. @-moz-keyframes blink {
  17. from, to {
  18. border-right-color: black;
  19. }
  20. 50% {
  21. border-right-color: transparent;
  22. }
  23. }
  24. @-webkit-keyframes blink {
  25. from, to {
  26. border-right-color: black;
  27. }
  28. 50% {
  29. border-right-color: transparent;
  30. }
  31. }
  32. @-ms-keyframes blink {
  33. from, to {
  34. border-right-color: black;
  35. }
  36. 50% {
  37. border-right-color: transparent;
  38. }
  39. }
  40. @-o-keyframes blink {
  41. from, to {
  42. border-right-color: black;
  43. }
  44. 50% {
  45. border-right-color: transparent;
  46. }
  47. }
  48. .im-static {
  49. color: grey;
  50. }