Animation.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. .cesium-animation-theme {
  2. visibility: hidden;
  3. display: block;
  4. position: absolute;
  5. z-index: -100;
  6. }
  7. .cesium-animation-themeNormal {
  8. color: #222;
  9. }
  10. .cesium-animation-themeHover {
  11. color: #4488b0;
  12. }
  13. .cesium-animation-themeSelect {
  14. color: #242;
  15. }
  16. .cesium-animation-themeDisabled {
  17. color: #333;
  18. }
  19. .cesium-animation-themeKnob {
  20. color: #222;
  21. }
  22. .cesium-animation-themePointer {
  23. color: #2e2;
  24. }
  25. .cesium-animation-themeSwoosh {
  26. color: #8ac;
  27. }
  28. .cesium-animation-themeSwooshHover {
  29. color: #aef;
  30. }
  31. .cesium-animation-svgText {
  32. fill: #edffff;
  33. font-family: Sans-Serif;
  34. font-size: 15px;
  35. text-anchor: middle;
  36. }
  37. .cesium-animation-blank {
  38. fill: #000;
  39. fill-opacity: 0.01; /* This must be clickable, so it can't be 'fill: none'. */
  40. stroke: none;
  41. }
  42. .cesium-animation-rectButton {
  43. cursor: pointer;
  44. -moz-user-select: none;
  45. -webkit-user-select: none;
  46. -ms-user-select: none;
  47. user-select: none;
  48. }
  49. .cesium-animation-rectButton .cesium-animation-buttonGlow {
  50. fill: #fff;
  51. stroke: none;
  52. /* Widget will add: filter: url(#animation_blurred); */
  53. display: none;
  54. }
  55. .cesium-animation-rectButton:hover .cesium-animation-buttonGlow {
  56. display: block;
  57. }
  58. .cesium-animation-rectButton .cesium-animation-buttonPath {
  59. fill: #edffff;
  60. }
  61. .cesium-animation-rectButton .cesium-animation-buttonMain {
  62. /* Widget will add: fill: url(#animation_buttonNormal); */
  63. stroke: #444;
  64. stroke-width: 1.2;
  65. }
  66. .cesium-animation-rectButton:hover .cesium-animation-buttonMain {
  67. /* Widget will add: fill: url(#animation_buttonHovered); */
  68. stroke: #aef;
  69. }
  70. .cesium-animation-rectButton:active .cesium-animation-buttonMain {
  71. fill: #abd6ff;
  72. }
  73. .cesium-animation-buttonDisabled {
  74. -moz-user-select: none;
  75. -webkit-user-select: none;
  76. -ms-user-select: none;
  77. user-select: none;
  78. }
  79. .cesium-animation-buttonDisabled .cesium-animation-buttonMain {
  80. /* Widget will add: fill: url(#animation_buttonDisabled); */
  81. stroke: #555;
  82. }
  83. .cesium-animation-buttonDisabled .cesium-animation-buttonPath {
  84. fill: #818181;
  85. }
  86. .cesium-animation-buttonDisabled .cesium-animation-buttonGlow {
  87. display: none;
  88. }
  89. .cesium-animation-buttonToggled .cesium-animation-buttonGlow {
  90. display: block;
  91. fill: #2e2;
  92. }
  93. .cesium-animation-buttonToggled .cesium-animation-buttonMain {
  94. stroke: #2e2;
  95. }
  96. .cesium-animation-buttonToggled:hover .cesium-animation-buttonGlow {
  97. fill: #fff;
  98. }
  99. .cesium-animation-buttonToggled:hover .cesium-animation-buttonMain {
  100. stroke: #2e2;
  101. }
  102. .cesium-animation-shuttleRingG {
  103. cursor: pointer;
  104. }
  105. /* Widget will add:
  106. .cesium-animation-shuttleRingG .cesium-animation-shuttleRingSwoosh {
  107. fill: url(#animation_shuttleRingSwooshGradient);
  108. }
  109. .cesium-animation-shuttleRingG:hover .cesium-animation-shuttleRingSwoosh {
  110. fill: url(#animation_shuttleRingSwooshHovered);
  111. }
  112. */
  113. .cesium-animation-shuttleRingPointer {
  114. /* Widget will add: fill: url(#animation_shuttleRingPointerGradient); */
  115. cursor: pointer;
  116. }
  117. .cesium-animation-shuttleRingPausePointer {
  118. /* Widget will add: fill: url(#animation_shuttleRingPointerPaused); */
  119. cursor: pointer;
  120. }
  121. .cesium-animation-shuttleRingBack {
  122. fill: #181818;
  123. fill-opacity: 0.8;
  124. stroke: #333;
  125. stroke-width: 1.2;
  126. }
  127. .cesium-animation-shuttleRingSwoosh line {
  128. stroke: #8ac;
  129. stroke-width: 3;
  130. stroke-opacity: 0.2;
  131. stroke-linecap: round;
  132. }
  133. .cesium-animation-knobOuter {
  134. /* Widget will add: fill: url(#animation_knobOuter); */
  135. cursor: pointer;
  136. stroke: #444;
  137. stroke-width: 1.2;
  138. }
  139. .cesium-animation-knobInner {
  140. /* Widget will add: fill: url(#animation_knobInner); */
  141. cursor: pointer;
  142. }