园林绿化
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

103 lines
2.8 KiB

  1. /* packages/widgets/Source/Timeline/Timeline.css */
  2. .cesium-timeline-main {
  3. position: relative;
  4. left: 0;
  5. bottom: 0;
  6. overflow: hidden;
  7. border: solid 1px #888;
  8. -moz-user-select: none;
  9. -webkit-user-select: none;
  10. -ms-user-select: none;
  11. user-select: none;
  12. }
  13. .cesium-timeline-trackContainer {
  14. width: 100%;
  15. overflow: auto;
  16. border-top: solid 1px #888;
  17. position: relative;
  18. top: 0;
  19. left: 0;
  20. }
  21. .cesium-timeline-tracks {
  22. position: absolute;
  23. top: 0;
  24. left: 0;
  25. width: 100%;
  26. }
  27. .cesium-timeline-needle {
  28. position: absolute;
  29. left: 0;
  30. top: 1.7em;
  31. bottom: 0;
  32. width: 1px;
  33. background: #f00;
  34. }
  35. .cesium-timeline-bar {
  36. position: relative;
  37. left: 0;
  38. top: 0;
  39. overflow: hidden;
  40. cursor: pointer;
  41. width: 100%;
  42. height: 1.7em;
  43. background:
  44. linear-gradient(
  45. to bottom,
  46. rgba(116, 117, 119, 0.8) 0%,
  47. rgba(58, 68, 82, 0.8) 11%,
  48. rgba(46, 50, 56, 0.8) 46%,
  49. rgba(53, 53, 53, 0.8) 81%,
  50. rgba(53, 53, 53, 0.8) 100%);
  51. }
  52. .cesium-timeline-ruler {
  53. visibility: hidden;
  54. white-space: nowrap;
  55. font-size: 80%;
  56. z-index: -200;
  57. }
  58. .cesium-timeline-highlight {
  59. position: absolute;
  60. bottom: 0;
  61. left: 0;
  62. background: #08f;
  63. }
  64. .cesium-timeline-ticLabel {
  65. position: absolute;
  66. top: 0;
  67. left: 0;
  68. white-space: nowrap;
  69. font-size: 80%;
  70. color: #eee;
  71. }
  72. .cesium-timeline-ticMain {
  73. position: absolute;
  74. bottom: 0;
  75. left: 0;
  76. width: 1px;
  77. height: 50%;
  78. background: #eee;
  79. }
  80. .cesium-timeline-ticSub {
  81. position: absolute;
  82. bottom: 0;
  83. left: 0;
  84. width: 1px;
  85. height: 33%;
  86. background: #aaa;
  87. }
  88. .cesium-timeline-ticTiny {
  89. position: absolute;
  90. bottom: 0;
  91. left: 0;
  92. width: 1px;
  93. height: 25%;
  94. background: #888;
  95. }
  96. .cesium-timeline-icon16 {
  97. display: block;
  98. position: absolute;
  99. width: 16px;
  100. height: 16px;
  101. background-image: url(data:text/plain;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAQCAYAAAB3AH1ZAAAAAXNSR0IArs4c6QAAAAZiS0dEAP8A/wD/oL2nkwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAAd0SU1FB9sIDBITKIVzLEMAAAKNSURBVEjHxdXNSxRhHAfw7zzrqhuoWJnSkrippUVSEKsHI9BTUYdAJA/RoYMREV26rAdn6tAfUARi16hQqkOBQRgUEYFWEC3OwczMjdZd92VmdWfmeelgTjO7q7gb0VzmmZnn85vvPPPMM8B/3qTcE2PPpuTZKB1eWuUQACgXYACYwVFbCTTVeZXB/i55o4LFelcAZfStYD4vpAoPGAGo4GBcQEgSOAUMQyAezwK6iQfDPXnhS/FkHZ+/8VLMWxxqWkfH3gbMRNOYi2roavbja0zHQmoFPYf8ED4Ko4aivm9MOG/u9I8mwrafeK7a/tVrNc/bARYN5noadeq7q0342vXw9CIMU6BmW8rVP9cPBPe52uu+v3O/y9sB4gkTWs6Qsk0mj5ExXMelejvA8WafYmkmGPHanTijdtvif8rx5RiCjdWKs2Cp3jWRDl96KhrbqlBeJqBOLyLQXg0IgbkZDS0dO8EZxZfPSTA9jvDDK3mT0OmP1FXh3XwEEAKdTX5MRWLgjCK4pwH3xt/YnjgLHAv4lHTCAKMMu/wV+KZGob6PoKyMQ0+sgBpZVJZn0NterxQaVqef/DRn+/EXYds/mZx2eVeAW9d65dhCEsaKCb7K8HH0gqTevyh9GDkn0VULRiaLzJKGBu9swfdaiie5RVo9ESURN8E8BE0n7ggACJy8KzghSCzp6DmwWxkaCm24EBXr8wI8Hrkq06QBiRC0t24HALS11IBTCyJl4vb1AXmzpbVYTwoVOXN0h7L8Mwtm8bXPybIQ/5FCX3dA2cr6XowvGCA02CvztAnz9+JiZk1AMxG6fEreSoBiPNmoyNnuWiWVzAIAtISO08E6pZi/3N96AIDn4E3h3P8L/wshP+txtEs4JAAAAABJRU5ErkJggg==);
  102. background-repeat: no-repeat;
  103. }