暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

processing.scss 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. div.DTE {
  2. div.DTE_Processing_Indicator {
  3. position: absolute;
  4. top: 17px;
  5. right: 9px;
  6. height: 2em;
  7. width: 2em;
  8. z-index: 20;
  9. font-size: 12px;
  10. display: none;
  11. -webkit-transform: translateZ(0);
  12. -ms-transform: translateZ(0);
  13. transform: translateZ(0);
  14. }
  15. &.processing {
  16. div.DTE_Processing_Indicator {
  17. display: block;
  18. }
  19. div.DTE_Field div.DTE_Processing_Indicator {
  20. display: none;
  21. }
  22. }
  23. div.DTE_Field div.DTE_Processing_Indicator {
  24. top: 13px;
  25. right: 0;
  26. font-size: 8px;
  27. }
  28. &.DTE_Inline {
  29. div.DTE_Processing_Indicator {
  30. top: 5px;
  31. right: 6px;
  32. font-size: 6px;
  33. }
  34. }
  35. &.DTE_Bubble {
  36. div.DTE_Processing_Indicator {
  37. top: 10px;
  38. right: 14px;
  39. font-size: 8px;
  40. }
  41. }
  42. div.DTE_Processing_Indicator span,
  43. div.DTE_Processing_Indicator:before,
  44. div.DTE_Processing_Indicator:after {
  45. display: block;
  46. background: black;
  47. width: 0.5em;
  48. height: 1.5em;
  49. border: 1px solid rgba( 0, 0, 0, 0.4 );
  50. background-color: rgba( 0, 0, 0, 0.1 );
  51. -webkit-animation: editorProcessing 0.9s infinite ease-in-out;
  52. animation: editorProcessing 0.9s infinite ease-in-out;
  53. }
  54. div.DTE_Processing_Indicator:before,
  55. div.DTE_Processing_Indicator:after {
  56. position: absolute;
  57. top: 0;
  58. content: '';
  59. }
  60. div.DTE_Processing_Indicator:before {
  61. left: -1em;
  62. -webkit-animation-delay: -0.3s;
  63. animation-delay: -0.3s;
  64. }
  65. div.DTE_Processing_Indicator span {
  66. -webkit-animation-delay: -0.15s;
  67. animation-delay: -0.15s;
  68. }
  69. div.DTE_Processing_Indicator:after {
  70. left: 1em;
  71. }
  72. @-webkit-keyframes editorProcessing {
  73. 0%,
  74. 80%,
  75. 100% {
  76. transform: scale(1, 1);
  77. }
  78. 40% {
  79. transform: scale(1, 1.5);
  80. }
  81. }
  82. @keyframes editorProcessing {
  83. 0%,
  84. 80%,
  85. 100% {
  86. transform: scale(1, 1);
  87. }
  88. 40% {
  89. transform: scale(1, 1.5);
  90. }
  91. }
  92. }