toolWeatherMap.css 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #timePlayerControl {
  2. position: absolute;
  3. left: 50%;
  4. bottom: 40px;
  5. z-index: 90000;
  6. width: 400px;
  7. margin: 0px 0 0 155px;
  8. height: 32px;
  9. padding: 4px 5px;
  10. background: url(../../images/layout/bg-normal.png);
  11. border:1px solid #0ff;
  12. }
  13. #timePlayerControl .player-control {
  14. float:left;
  15. }
  16. #timePlayerControl .player-control a {
  17. width:32px;
  18. height: 32px;
  19. float: left;
  20. margin:0 2px;
  21. }
  22. #timePlayerControl .player-control a:hover,
  23. #timePlayerControl .player-control .active {
  24. background:url(../../images/layout/lihover-tools_03.png);
  25. }
  26. #timePlayerControl .player-control span {
  27. width:32px;
  28. height: 32px;
  29. float: left;
  30. }
  31. #timePlayerControl .player-control .prev-start span {
  32. background:url(../../images/tools/icon-MediaFirst.png) no-repeat;
  33. }
  34. #timePlayerControl .player-control .prev span {
  35. background:url(../../images/tools/icon-MediaPrevious.png) no-repeat;
  36. }
  37. #timePlayerControl .player-control .pause span {
  38. background:url(../../images/tools/icon-MediaPause.png) no-repeat;
  39. }
  40. #timePlayerControl .player-control .pause {
  41. display:none;
  42. }
  43. #timePlayerControl .player-control .play span {
  44. background:url(../../images/tools/icon-MediaPlay.png) no-repeat;
  45. }
  46. #timePlayerControl .player-control .next span {
  47. background:url(../../images/tools/icon-MediaNext.png) no-repeat;
  48. }
  49. #timePlayerControl .player-control .next-end span {
  50. background:url(../../images/tools/icon-MediaFastForward.png) no-repeat;
  51. }
  52. #timePlayerControl .time-picker {
  53. float:right;
  54. margin-right: 35px;
  55. position:relative;
  56. }
  57. #timePlayerControl .datetime-picker {
  58. margin-top: 1px;
  59. width:120px;
  60. border: 0px solid #dcdcdc;
  61. height: 28px;
  62. display: inline-block;
  63. line-height: 28px;
  64. color: #fff;
  65. padding: 0 8px;
  66. background: #3371c8;
  67. cursor: pointer;
  68. }
  69. #timePlayerControl .abtn-close {
  70. position: absolute;
  71. right: -5px;
  72. top: 0px;
  73. text-indent: -999999px;
  74. overflow: hidden;
  75. background: url(../../images/layout/bg_close.gif) no-repeat center 7px;
  76. border: none;
  77. width: 30px;
  78. height:30px;
  79. }
  80. #timePlayerControl .time-list {
  81. position: absolute;
  82. bottom: 29px;
  83. left: -5px;
  84. background: #fff;
  85. width: 134px;
  86. border: 1px solid #2664b1;
  87. max-height:200px;
  88. overflow:hidden;
  89. overflow-y:auto;
  90. padding:3px;
  91. display:none;
  92. }
  93. #timePlayerControl .time-list li {
  94. padding:5px;
  95. cursor: pointer;
  96. }
  97. #timePlayerControl .time-list li:hover {
  98. background:#2664b1;
  99. color:#fff;
  100. }