index.css 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. /* 中图合入代码 */
  88. .vl-notify.vl-notify-alert h2.vl-notice-title {
  89. border-bottom: 0px solid #eee !important;
  90. background-color: #fff0 !important;
  91. background: url(/static/images/popup/title.png) no-repeat !important;
  92. background-size: 100% 100% !important;
  93. }
  94. .vl-notify.vl-notify-iframe {
  95. background-color: #fff0 !important;
  96. background: url(/static/images/popup/background.png) no-repeat !important;
  97. background-size: 100% 100% !important;
  98. }
  99. .vl-notify.vl-notify-alert {
  100. background-color: #fff0 !important;
  101. background: url(/static/images/popup/background.png) no-repeat !important;
  102. background-size: 100% 100% !important;
  103. }
  104. .vl-notify.vl-notify-main {
  105. border: 0px solid #eee !important;
  106. background-color: #fff0 !important;
  107. }
  108. /*---------------------------- */