global.css 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. /* 全局滚动条 */
  2. /*滚动条整体部分*/
  3. ::-webkit-scrollbar {
  4. width: 5px;
  5. height: 5px;
  6. }
  7. /*正常情况下滑块的样式*/
  8. ::-webkit-scrollbar-thumb {
  9. border-radius: 6px;
  10. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  11. background: rgba(4, 103, 143, 0.9);
  12. }
  13. /*正常时候的主干部分*/
  14. ::-webkit-scrollbar-track {
  15. box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  16. border-radius: 6px;
  17. background: rgba(0, 0, 0, 0.3);
  18. }
  19. /* @borderColor: #00aaff;
  20. @borderColor32: #00aaff32;
  21. @borderColor64: #00aaff64;
  22. @topTitleBgLeft: #002645;
  23. @topTitleMinLeft: #002f56;
  24. @lightColor: #74ffff; */
  25. /* el-tree */
  26. .el-icon-caret-right:before {
  27. display: none;
  28. }
  29. .el-tree {
  30. background: rgba(255, 255, 255, 0) !important;
  31. color: #fff;
  32. font-family: "PingFangSC SC";
  33. }
  34. .el-tree-node .is-focusable {
  35. background: rgba(255, 255, 255, 0) !important ;
  36. }
  37. .el-tree-node__content:hover,
  38. .el-upload-list__item:hover {
  39. background: rgba(255, 255, 255, 0) !important;
  40. }
  41. .el-tree--highlight-current .el-tree-node.is-current > .el-tree-node__content {
  42. background: rgba(255, 255, 255, 0) !important;
  43. }
  44. .el-tree-node:focus > .el-tree-node__content {
  45. background: transparent !important;
  46. }
  47. /* el-collapse */
  48. .el-collapse {
  49. border: none;
  50. }
  51. .el-collapse-item {
  52. border: none;
  53. }
  54. .el-collapse-item__header {
  55. text-indent: 20px;
  56. background: linear-gradient(
  57. to top,
  58. rgba(79, 172, 254, 0.5),
  59. rgba(0, 242, 254, 0.5)
  60. );
  61. font-size: 18px;
  62. font-family: PingFang SC;
  63. font-weight: 400;
  64. color: #ffffff;
  65. border: none;
  66. }
  67. .el-collapse-item__header i {
  68. text-indent: 0px;
  69. }
  70. .el-collapse-item__wrap {
  71. background-color: rgba(255, 255, 255, 0);
  72. border: none;
  73. }
  74. /* 下拉框 */
  75. .el-select .el-input__inner:focus {
  76. border: 1px solid rgba(47, 184, 255, 0.7);
  77. }
  78. .el-select .el-input__inner {
  79. background: rgba(0, 39, 77, 1);
  80. color: white;
  81. font-size: 16px;
  82. border: 1px solid rgba(47, 184, 255, 0.7);
  83. border-radius: 2px;
  84. }
  85. .el-select-dropdown {
  86. border: 1px solid rgba(47, 184, 255, 0.7);
  87. border-radius: 2px;
  88. color: #fff;
  89. background-color: rgba(0, 39, 77, 0.8);
  90. box-shadow: 0 2px 12px 0 rgb(0 0 0 / 10%);
  91. margin: 5px 0;
  92. }
  93. .el-select-dropdown__item {
  94. font-size: 15px;
  95. color: #fff;
  96. }
  97. .el-select-dropdown__item.hover,
  98. .el-select-dropdown__item:hover {
  99. background-color: rgba(79, 172, 254, 0.4);
  100. color: rgba(0, 242, 254, 1);
  101. }
  102. .el-select-dropdown__item.selected {
  103. color: rgba(0, 242, 254, 1);
  104. }
  105. .el-popper[x-placement^="bottom"] .popper__arrow::after {
  106. border-bottom-color: rgba(47, 184, 255, 0.7);
  107. }
  108. .el-popper[x-placement^="bottom"] .popper__arrow {
  109. border-bottom-color: rgba(47, 184, 255, 0.7);
  110. }
  111. /* el-dialog el-message-box */
  112. .el-dialog,
  113. .el-message-box {
  114. background: rgba(0, 39, 77, 0.9);
  115. border: 1px solid #2fb8ff;
  116. box-sizing: border-box;
  117. }
  118. .el-dialog__header {
  119. position: relative;
  120. background: linear-gradient(to left, transparent, transparent) right bottom
  121. no-repeat,
  122. linear-gradient(to right, transparent, #00aaff, transparent) right bottom
  123. no-repeat;
  124. background-size: 0 0, 100% 1px, 0 0, 0 0;
  125. }
  126. .dialogTitle {
  127. display: flex;
  128. align-items: center;
  129. font-size: 18px;
  130. font-family: pingfangSC;
  131. font-weight: 300;
  132. color: #e6e6e6;
  133. }
  134. .dialogTitleIcon {
  135. width: 16px;
  136. height: 16px;
  137. background-color: #2fb8ff;
  138. clip-path: polygon(0 0, 100% 50%, 0 100%, 0 0);
  139. margin-right: 1rem;
  140. }
  141. .el-dialog__title,
  142. .el-message-box__title {
  143. color: #ffffff;
  144. }
  145. .el-form-item__label,
  146. .el-message-box__message {
  147. color: #ffffff;
  148. }
  149. .el-input__inner,
  150. .el-textarea__inner {
  151. background: none;
  152. color: #f2f6fc;
  153. }
  154. /* el-button--default */
  155. .el-button--default,
  156. .el-button--default:focus {
  157. background-image: --webkit-linear-gradient(to top, #303133, #606266);
  158. background-image: --moz-linear-gradient(to top, #303133, #606266);
  159. background-image: linear-gradient(to top, #303133, #606266);
  160. color: #c0c4cc;
  161. }
  162. .el-button--default:hover {
  163. background-image: --webkit-linear-gradient(to top, #606266, #909399);
  164. background-image: --moz-linear-gradient(to top, #606266, #909399);
  165. background-image: linear-gradient(to top, #606266, #909399);
  166. color: #fff;
  167. }
  168. .el-button--primary,
  169. .el-button--primary:focus {
  170. background-image: --webkit-linear-gradient(to top, #002f56, #00aaff);
  171. background-image: --moz-linear-gradient(to top, #002f56, #00aaff);
  172. background-image: linear-gradient(to top, #002f56, #00aaff);
  173. }
  174. .el-button--primary:hover {
  175. background-image: --webkit-linear-gradient(to top, #00aaff, #1deef5);
  176. background-image: --moz-linear-gradient(to top, #00aaff, #1deef5);
  177. background-image: linear-gradient(to top, #00aaff, #1deef5);
  178. }
  179. /* table */
  180. .el-dialog__body *,
  181. #WholeProcessManagement
  182. *:not(.el-pager li, .el-pagination .btn-prev, .StepsMyBox, .StepsMyBox
  183. *, .el-table__row, .el-table__header-wrapper),
  184. tr,
  185. td,
  186. th {
  187. background-color: transparent !important;
  188. }
  189. .el-table__row {
  190. background: #00395c !important;
  191. }
  192. .el-table__row:hover {
  193. cursor: pointer !important;
  194. color: #fff !important;
  195. background-color: #ffffff32 !important;
  196. background: #ffffff32 !important;
  197. }
  198. .el-table__header-wrapper {
  199. background: #00000064 !important;
  200. }
  201. /* .el-table__body-wrapper */
  202. .is-scrolling-none.el-table__body {
  203. background-color: #00000032 !important;
  204. }
  205. .el-table,
  206. .el-pagination__total,
  207. .el-pagination__jump {
  208. color: #c0c4cc;
  209. }
  210. .el-table thead {
  211. color: #ffffff;
  212. }
  213. .el-table__fixed-right::before,
  214. .el-table__fixed::before,
  215. .el-table::before {
  216. height: 0;
  217. }
  218. .has-gutter {
  219. background-color: #00000064 !important;
  220. }
  221. /* 二级菜单 */
  222. .el-menu--popup-bottom-start {
  223. background-color: #00aaffaa;
  224. }
  225. #app ~ .el-menu--horizontal .el-menu-item {
  226. /* padding: 10px 0; */
  227. margin: 10px;
  228. height: 50px !important;
  229. text-align: center;
  230. font-size: 20px;
  231. font-family: pingfangSC;
  232. font-weight: bold;
  233. line-height: 50px;
  234. color: #ffffffaa;
  235. background-color: #254fc6;
  236. box-sizing: border-box;
  237. }
  238. #app ~ .el-menu--horizontal .is-active {
  239. background: linear-gradient(0deg, #4279d2 0%, #0942c0 100%);
  240. border: 1px solid #74ffff;
  241. }
  242. #app ~ .el-menu--horizontal .el-menu-item:hover {
  243. border: 1px solid #74ffff;
  244. }
  245. .docx-wrapper section.docx {
  246. box-shadow: none !important;
  247. }
  248. /* leaflet 弹窗样式修改 */
  249. .leaflet-popup-content-wrapper,
  250. .leaflet-popup-tip {
  251. background: transparent;
  252. }
  253. .leaflet-popup-tip {
  254. background: #002f56;
  255. }
  256. /* .el-step__icon */
  257. .el-step__icon {
  258. background-color: #002f56;
  259. }
  260. .is-process {
  261. color: #fff !important;
  262. border-color: #fff !important;
  263. }
  264. .docx-wrapper {
  265. background: #ffffff !important;
  266. justify-content: flex-start !important;
  267. padding: 0 !important;
  268. }
  269. .docx-wrapper .docx {
  270. width: 100% !important;
  271. }
  272. /* iframe标签自动隐藏:主要用于同屏对比中打印时新建的标签 */
  273. body iframe {
  274. position: fixed;
  275. z-index: -1;
  276. }
  277. .leaflet-touch .leaflet-bar a {
  278. position: fixed;
  279. left: 21%;
  280. top: 150px;
  281. }
  282. /* ChartCard组件中的Empty组件样式 */
  283. .el-empty {
  284. width: 100%;
  285. height: 100%;
  286. padding: 0;
  287. }
  288. .el-empty__image {
  289. width: 40px;
  290. }
  291. .el-empty__description {
  292. margin: 0;
  293. }
  294. /* 时间范围组件 */
  295. .el-range-separator {
  296. color: #ffffff !important;
  297. }
  298. /* el-loading样式 */
  299. /* 修改动画的大小 给文字加粗效果 */
  300. .el-loading-spinner {
  301. font-size: 40px;
  302. font-weight: bold;
  303. }
  304. /* 修改文字的大小 */
  305. .el-loading-mask .el-loading-spinner .el-loading-text {
  306. font-size: 18px;
  307. }
  308. /* filter */
  309. .el-table-filter {
  310. background-color: rgb(0, 39, 77) !important;
  311. border-color: rgba(0, 39, 77, 0.6) !important;
  312. }
  313. .is-disabled {
  314. background-color: rgb(0, 39, 77, 0.5) !important;
  315. }
  316. .el-table-filter__bottom{
  317. border-top-color: rgb(255,255,255, 0.3) !important;
  318. }
  319. .el-table-filter__list-item{
  320. color: rgba(255,255,255,0.9);
  321. }