index.css 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333
  1. .drawCur {
  2. cursor: url(/static/images/cur/draw.cur), auto;
  3. }
  4. .measureCur {
  5. cursor: url(/static/images/cur/measure.cur), auto;
  6. }
  7. html,
  8. body {
  9. background-color: black;
  10. width: 100%;
  11. height: 100%;
  12. margin: 0;
  13. padding: 0;
  14. overflow: hidden;
  15. color: #eee;
  16. }
  17. #loadingbar {
  18. bottom: 0;
  19. left: 0;
  20. margin: auto;
  21. position: absolute;
  22. right: 0;
  23. top: 0;
  24. z-index: 999999;
  25. display: none;
  26. }
  27. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  28. body::-webkit-scrollbar {
  29. width: 10px;
  30. height: 10px;
  31. }
  32. /* 滚动条里面小方块 */
  33. body::-webkit-scrollbar-thumb {
  34. border-radius: 10px;
  35. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  36. /* background: rgba(85, 229, 38, 0.71); */
  37. background: rgba(105, 186, 255, 0.5);
  38. }
  39. /* 滚动条里面轨道 */
  40. body::-webkit-scrollbar-track {
  41. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  42. border-radius: 10px;
  43. /* background: #2a4fd1b3; */
  44. background: rgba(105, 186, 255, 0.1);
  45. }
  46. /* 滚动条整体样式(高宽分别对应横竖滚动条的尺寸) */
  47. div::-webkit-scrollbar {
  48. width: 10px;
  49. height: 10px;
  50. }
  51. /* 滚动条里面小方块 */
  52. div::-webkit-scrollbar-thumb {
  53. border-radius: 10px;
  54. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  55. /* background: rgba(85, 229, 38, 0.71); */
  56. background: rgba(105, 186, 255, 0.5);
  57. }
  58. /* 滚动条里面轨道 */
  59. div::-webkit-scrollbar-track {
  60. -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  61. border-radius: 10px;
  62. /* background: #2a4fd1b3; */
  63. background: rgba(105, 186, 255, 0.1);
  64. }
  65. .messageIndex,
  66. .el-message {
  67. z-index: 300000000000 !important;
  68. }
  69. .el-dialog {
  70. background: transparent !important;
  71. background: url(/static/images/popup/background.png) no-repeat !important;
  72. background-size: 100% 100% !important;
  73. background-position: center !important;
  74. }
  75. .el-dialog__title,
  76. .el-form-item__label {
  77. color: white !important;
  78. }
  79. .el-dialog__header {
  80. background: url(/static/images/popup/title.png) no-repeat !important;
  81. background-size: 100% 100% !important;
  82. background-position: center !important;
  83. }
  84. .el-dialog__headerbtn .el-dialog__close {
  85. color: white !important;
  86. }
  87. .vl-notify {
  88. border: none !important;
  89. border-radius: .4vw !important;
  90. background: rgba(4, 28, 50, 0.76) !important;
  91. }
  92. div::-webkit-scrollbar {
  93. width: 5px;
  94. height: 5px;
  95. }
  96. div::-webkit-scrollbar-thumb {
  97. background: rgba(63, 147, 245, 0.6);
  98. border-radius: 5px;
  99. }
  100. div::-webkit-scrollbar-track {
  101. background: rgba(4, 28, 50, 0.6);
  102. }
  103. .vl-notice-title {
  104. width: auto !important;
  105. padding: 0 !important;
  106. margin: 0 15px !important;
  107. background: unset !important;
  108. border: none !important;
  109. position: relative;
  110. }
  111. .vl-notice-title:after {
  112. width: 100%;
  113. height: 4px;
  114. content: '';
  115. position: absolute;
  116. left: 0;
  117. bottom: 0;
  118. background: linear-gradient(180deg, #0061a8 0%, #123568 46%, #11478e 100%);
  119. border-radius: 4px;
  120. z-index: -1;
  121. }
  122. .vl-notice-title>span {
  123. font-size: 16px;
  124. font-weight: 700;
  125. letter-spacing: 1px;
  126. }
  127. .icon-remove {
  128. width: 22px;
  129. height: 22px;
  130. color: #fff !important;
  131. background-color: rgba(51, 95, 135, 1);
  132. line-height: 23px;
  133. padding: 0 5px;
  134. border-radius: 4px;
  135. right: 0 !important;
  136. top: 10px !important;
  137. }
  138. .lv-icon-maxmini>i {
  139. color: #fff !important;
  140. }
  141. .lv-icon-maxmini .vlicon-max {
  142. display: none;
  143. }
  144. /* .el-input>input, */
  145. .el-select-dropdown,
  146. .el-textarea>textarea {
  147. color: #fff !important;
  148. background-color: rgba(4, 28, 50, 0.5) !important;
  149. border: 1px solid rgba(15, 122, 200, 0.4) !important;
  150. }
  151. .el-input .el-input-group__append {
  152. color: #fff !important;
  153. background-color: rgba(4, 28, 50, 0.5) !important;
  154. border: 1px solid rgba(15, 122, 200, 0.4) !important;
  155. }
  156. .el-input-group__append>button {
  157. color: #fff !important;
  158. background-color: rgba(4, 28, 50, 0.5) !important;
  159. border: 1px solid rgba(15, 122, 200, 0.4) !important;
  160. padding: 6px 20px;
  161. }
  162. .el-select-dropdown__item {
  163. color: #ebebeb !important;
  164. }
  165. .el-button--primary,
  166. .notify-btn-primary {
  167. background: #0F7AC8 !important;
  168. border-color: #0F7AC8 !important;
  169. color: #fff !important;
  170. }
  171. .el-button--primary:hover,
  172. .notify-btn-primary:hover {
  173. background: #0f7bc8d8 !important;
  174. border-color: #0f7bc8d8 !important;
  175. color: #fff !important;
  176. }
  177. .el-icon-search {
  178. color: #20A0FC !important;
  179. }
  180. /* .el-button--default,
  181. .notify-btn-default {
  182. background: rgba(63, 147, 245, 0.2) !important;
  183. border-color: #3F93F5 !important;
  184. color: rgba(182, 224, 255, 1) !important;
  185. } */
  186. .el-button--default:hover,
  187. .notify-btn-default:hover {
  188. background: rgba(63, 148, 245, 0.432) !important;
  189. border-color: #3F93F5 !important;
  190. color: rgba(182, 224, 255, 1) !important;
  191. }
  192. .el-select-dropdown__item.hover,
  193. .el-select-dropdown__item:hover {
  194. color: #fff !important;
  195. background-color: rgba(255, 255, 255, .35) !important;
  196. }
  197. .el-cascader__dropdown,
  198. .el-picker-panel,
  199. .el-picker-panel__footer {
  200. color: #fff !important;
  201. background-color: rgba(4, 28, 50, 0.5) !important;
  202. border: 1px solid rgba(15, 122, 200, 0.4) !important;
  203. }
  204. .el-time-panel {
  205. background-color: rgba(4, 28, 50, 0.85) !important;
  206. }
  207. .el-time-spinner__item {
  208. color: #fff !important;
  209. }
  210. .el-time-spinner__item:hover {
  211. color: #fff !important;
  212. background: rgba(63, 148, 245, 0.432) !important;
  213. }
  214. .el-time-panel__footer>button:nth-child(1),
  215. .el-date-table th,
  216. .el-picker-panel__icon-btn,
  217. .el-date-picker__header-label {
  218. color: #fff !important;
  219. }
  220. .el-pagination>button,
  221. .el-pager li {
  222. color: #c2c2c2 !important;
  223. background-color: rgba(4, 28, 50, 0.5) !important;
  224. }
  225. .el-pager li.active {
  226. color: #fff !important;
  227. background-color: rgba(4, 28, 50, 0.5) !important;
  228. }
  229. .el-color-picker__panel {
  230. background-color: rgba(4, 28, 50, 0.5) !important;
  231. }
  232. .el-cascader-node {
  233. color: #fff !important;
  234. }
  235. .el-cascader-node:hover {
  236. color: #fff !important;
  237. background-color: rgba(255, 255, 255, .35) !important;
  238. }
  239. /* .el-cascader-node:not(.is-disabled):hover */
  240. .el-cascader-node:not(.is-disabled):focus {
  241. background-color: rgba(4, 28, 50, 0.5) !important;
  242. }
  243. .el-checkbox__input>.el-checkbox__inner {
  244. border: 1px solid #96A9B7;
  245. background-color: rgba(4, 28, 50, 0.6);
  246. }
  247. .el-icon-s-operation,
  248. .el-icon-location-outline,
  249. .el-icon-share,
  250. .el-icon-delete {
  251. color: #20A0FC;
  252. }
  253. .el-icon-s-operation+a,
  254. .el-icon-location-outline+a,
  255. .el-icon-share+a,
  256. .el-icon-delete+a {
  257. color: #CDDEEB;
  258. }
  259. .el-pagination__jump {
  260. color: #CDDEEB !important;
  261. }
  262. .el-input-number__decrease,
  263. .el-input-number__increase {
  264. color: #fff !important;
  265. background-color: rgba(4, 28, 50, 0.5) !important;
  266. border: 1px solid rgba(15, 122, 200, 0.4) !important;
  267. }
  268. /* ---------------------------- */