智慧水务管理系统 - 精河县供水工程综合管理平台

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. .cesium-baseLayerPicker-selected {
  2. position: absolute;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. border: none;
  8. }
  9. .cesium-baseLayerPicker-dropDown {
  10. display: block;
  11. position: absolute;
  12. box-sizing: content-box;
  13. top: auto;
  14. right: 0;
  15. width: 320px; /* Includes space needed for scrollbar */
  16. max-height: 500px;
  17. margin-top: 5px;
  18. background-color: rgba(38, 38, 38, 0.75);
  19. border: 1px solid #444;
  20. padding: 6px;
  21. overflow: auto;
  22. border-radius: 10px;
  23. -moz-user-select: none;
  24. -webkit-user-select: none;
  25. -ms-user-select: none;
  26. user-select: none;
  27. transform: translate(0, -20%);
  28. visibility: hidden;
  29. opacity: 0;
  30. transition:
  31. visibility 0s 0.2s,
  32. opacity 0.2s ease-in,
  33. transform 0.2s ease-in;
  34. }
  35. .cesium-baseLayerPicker-dropDown-visible {
  36. transform: translate(0, 0);
  37. visibility: visible;
  38. opacity: 1;
  39. transition:
  40. opacity 0.2s ease-out,
  41. transform 0.2s ease-out;
  42. }
  43. .cesium-baseLayerPicker-sectionTitle {
  44. display: block;
  45. font-family: sans-serif;
  46. font-size: 16pt;
  47. text-align: left;
  48. color: #edffff;
  49. margin-bottom: 4px;
  50. }
  51. .cesium-baseLayerPicker-choices {
  52. margin-bottom: 5px;
  53. }
  54. .cesium-baseLayerPicker-categoryTitle {
  55. color: #edffff;
  56. font-size: 11pt;
  57. }
  58. .cesium-baseLayerPicker-choices {
  59. display: block;
  60. border: 1px solid #888;
  61. border-radius: 5px;
  62. padding: 5px 0;
  63. }
  64. .cesium-baseLayerPicker-item {
  65. display: inline-block;
  66. vertical-align: top;
  67. margin: 2px 5px;
  68. width: 64px;
  69. text-align: center;
  70. cursor: pointer;
  71. }
  72. .cesium-baseLayerPicker-itemLabel {
  73. display: block;
  74. font-family: sans-serif;
  75. font-size: 8pt;
  76. text-align: center;
  77. vertical-align: middle;
  78. color: #edffff;
  79. cursor: pointer;
  80. word-wrap: break-word;
  81. }
  82. .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemLabel,
  83. .cesium-baseLayerPicker-item:focus .cesium-baseLayerPicker-itemLabel {
  84. text-decoration: underline;
  85. }
  86. .cesium-baseLayerPicker-itemIcon {
  87. display: inline-block;
  88. position: relative;
  89. width: inherit;
  90. height: auto;
  91. background-size: 100% 100%;
  92. border: solid 1px #444;
  93. border-radius: 9px;
  94. color: #edffff;
  95. margin: 0;
  96. padding: 0;
  97. cursor: pointer;
  98. box-sizing: border-box;
  99. }
  100. .cesium-baseLayerPicker-item:hover .cesium-baseLayerPicker-itemIcon {
  101. border-color: #fff;
  102. box-shadow:
  103. 0 0 8px #fff,
  104. 0 0 8px #fff;
  105. }
  106. .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemLabel {
  107. color: rgb(189, 236, 248);
  108. }
  109. .cesium-baseLayerPicker-selectedItem .cesium-baseLayerPicker-itemIcon {
  110. border: double 4px rgb(189, 236, 248);
  111. }