dialog.less 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020
  1. .modal {
  2. &.el-dialog {
  3. background: fade(#121d1c, 95);
  4. border: 1px solid fade(@darkBlue, 50);
  5. box-shadow: 0px 8px 17px 1px rgba(5, 187, 76, 0.3);
  6. &.el-dialog--center .el-dialog__body,
  7. .el-dialog__body {
  8. padding: 16px 24px;
  9. }
  10. &.hide-header {
  11. .el-dialog__header {
  12. border: none;
  13. .el-dialog__title {
  14. display: none;
  15. }
  16. }
  17. }
  18. }
  19. }
  20. .parcel-box {
  21. padding: 0 30px;
  22. }
  23. .title-select .el-select .el-input__inner {
  24. width: 133px;
  25. max-width: 190px;
  26. height: 25px;
  27. background: rgba(67, 81, 107, 0.2);
  28. border: 0px solid #2a374f;
  29. border-radius: 0px;
  30. font-size: 13px;
  31. color: #b3b3b3;
  32. }
  33. .title-select .el-input__suffix {
  34. display: none;
  35. }
  36. .footerButton {
  37. justify-content: right;
  38. .el-button:first-child {
  39. width: 108px;
  40. background-color: rgba(84, 135, 183, 0.16) !important;
  41. color: #b3b3b3;
  42. border-color: transparent;
  43. }
  44. .el-button:last-of-type {
  45. background-color: rgba(5, 90, 187, 0.3);
  46. border: 1px solid #3b506c;
  47. color: #b3b3b3;
  48. font-size: 14px;
  49. border: none;
  50. width: 108px;
  51. // min-height: 25px !important;
  52. &:hover {
  53. background-color: rgba(5, 187, 76, 0.6);
  54. color: #ffffff;
  55. }
  56. }
  57. }
  58. .el-overlay {
  59. ul li {
  60. list-style: none;
  61. }
  62. .wind-comp-form {
  63. padding-left: 30px;
  64. .el-form-item {
  65. margin-bottom: 20px !important;
  66. width: 310px !important;
  67. }
  68. }
  69. .custom-comp-form {
  70. .el-select {
  71. width: 100% !important;
  72. max-width: 100% !important;
  73. .el-input__inner {
  74. width: 100% !important;
  75. max-width: 100% !important;
  76. }
  77. }
  78. .first-row {
  79. .el-form-item {
  80. .el-form-item__content {
  81. display: flex;
  82. flex-direction: column;
  83. align-items: flex-start;
  84. }
  85. }
  86. .el-switch {
  87. display: block;
  88. }
  89. .first-row-second-col {
  90. display: flex;
  91. justify-content: space-between;
  92. align-items: center;
  93. .el-form-item {
  94. flex: 1;
  95. padding-right: 5px;
  96. }
  97. }
  98. }
  99. .second-row {
  100. .operator {
  101. display: grid;
  102. grid-template-columns: auto auto auto auto auto;
  103. }
  104. .buttons {
  105. background-color: rgba(5, 187, 76, 0.2);
  106. border: 1px solid #3b6c53;
  107. color: #b3b3b3;
  108. font-size: 14px;
  109. width: 60px;
  110. height: 50px;
  111. margin-bottom: 10px;
  112. &.is-round {
  113. padding: 0 !important;
  114. }
  115. &:hover {
  116. background-color: rgba(5, 187, 76, 0.5);
  117. color: #ffffff;
  118. }
  119. }
  120. .el-button+.el-button {
  121. margin-left: 0;
  122. }
  123. .el-form-item {
  124. .el-form-item__content {
  125. display: flex;
  126. flex-direction: column;
  127. align-items: flex-start;
  128. }
  129. }
  130. }
  131. .el-tabs {
  132. .el-tabs__item {
  133. margin-right: 25px !important;
  134. }
  135. .el-tabs__header::before,
  136. .el-tabs__header::after {
  137. background: transparent;
  138. }
  139. .el-tabs--border-card>.el-tabs__header .el-tabs__item+.el-tabs__item {
  140. margin-left: 0;
  141. }
  142. &.el-tabs--border-card {
  143. background: transparent !important;
  144. border-color: rgba(83, 98, 104, 0.2) !important;
  145. }
  146. &.el-tabs--border-card>.el-tabs__header {
  147. background: transparent !important;
  148. border-color: rgba(83, 98, 104, 0.2) !important;
  149. }
  150. &.el-tabs--border-card>.el-tabs__header .el-tabs__item.is-active,
  151. &.el-tabs--border-card>.el-tabs__header .el-tabs__item:hover {
  152. color: #05bb4c !important;
  153. background: transparent !important;
  154. border-right-color: transparent !important;
  155. border-left-color: transparent !important;
  156. }
  157. &.el-tabs--border-card>.el-tabs__content {
  158. padding: 5px;
  159. }
  160. }
  161. .el-tag {
  162. margin-bottom: 5px;
  163. --el-tag-background-color: #1f4f2e;
  164. --el-tag-border-color: #1f4f2e;
  165. --el-tag-font-color: #05bb4c;
  166. font-size: 14px;
  167. }
  168. }
  169. .el-radio-group {
  170. height: 28px;
  171. .el-radio-button__original-radio+.el-radio-button__inner {
  172. background-color: rgba(5, 187, 76, 0.2);
  173. border: 1px solid #3b6c53;
  174. color: #b3b3b3;
  175. font-size: 14px;
  176. // background-color: rgba(5, 187, 76, 0.5);
  177. // color: #ffffff;
  178. }
  179. .el-radio-button:focus:not(.is-focus):not(:active):not(.is-disabled) {
  180. box-shadow: unset;
  181. }
  182. .el-radio-button__inner:hover {
  183. border: 1px solid #3b6c53;
  184. }
  185. .el-radio-button__original-radio:checked+.el-radio-button__inner {
  186. // background-color: rgba(5, 187, 76, 0.2);
  187. // border: 1px solid #3b6c53;
  188. // color: #b3b3b3;
  189. // font-size: 14px;
  190. box-shadow: unset;
  191. background-color: rgba(5, 187, 76, 0.5);
  192. color: #ffffff;
  193. }
  194. }
  195. .el-drawer.rtl {
  196. height: 100%;
  197. background-color: #161816 !important;
  198. .el-drawer__header {
  199. font-size: 18px;
  200. color: #d8dde3;
  201. }
  202. .el-drawer__body {
  203. height: calc(100% - 70px);
  204. .drawer-form {
  205. display: flex;
  206. align-items: center;
  207. margin-bottom: 15px;
  208. }
  209. .table-wrapper {
  210. height: calc(100% - 70px - 33px);
  211. }
  212. .select-item {
  213. margin-right: 10px;
  214. white-space: nowrap;
  215. display: flex;
  216. align-items: center;
  217. }
  218. .btns {
  219. align-items: center;
  220. display: flex;
  221. .buttons {
  222. background-color: rgba(5, 187, 76, 0.2);
  223. border: 1px solid #3b6c53;
  224. color: #b3b3b3;
  225. font-size: 14px;
  226. &:hover,
  227. &.active {
  228. background-color: rgba(5, 187, 76, 0.5);
  229. color: #ffffff;
  230. }
  231. }
  232. }
  233. .el-pagination {
  234. display: flex;
  235. justify-content: flex-end;
  236. padding-bottom: 15px;
  237. padding-top: 15px;
  238. }
  239. }
  240. }
  241. .el-dialog {
  242. &:not(.cDialog) {
  243. background: #080d14;
  244. border: 1px solid #08213d;
  245. border-top: 0px;
  246. box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.35);
  247. border-radius: 12px 12px 6px 6px;
  248. }
  249. }
  250. .el-dialog__header {
  251. padding: 20px 0 !important;
  252. // border-bottom: 1px solid #323b3c;
  253. background: url("~@/assets/imgs/dialog-title2.png") no-repeat;
  254. background-size: 100% 100%;
  255. background-position: center;
  256. }
  257. .dialog-title {
  258. text-align: center;
  259. font-size: 18px;
  260. font-family: Microsoft YaHei;
  261. font-weight: 400;
  262. color: #ffffff;
  263. }
  264. .el-dialog__headerbtn {
  265. &:hover,
  266. &:active {
  267. .el-dialog__close {
  268. color: #fff;
  269. }
  270. }
  271. }
  272. .el-checkbox__input.is-checked .el-checkbox__inner {
  273. border-color: #05bb4c !important;
  274. }
  275. .el-date-editor--daterange {
  276. background: transparent;
  277. border: 1px solid #2a374f;
  278. border-radius: 30px;
  279. height: 25px;
  280. .el-range-input {
  281. background: transparent;
  282. color: #fff;
  283. }
  284. .el-range-separator {
  285. width: 10%;
  286. color: #fff;
  287. position: relative;
  288. }
  289. }
  290. .el-tabs__item.is-active::after {
  291. content: "";
  292. display: block;
  293. width: 100%;
  294. height: 7px;
  295. border-bottom: 1px solid #05bb4c;
  296. border-left: 1px solid #05bb4c;
  297. border-right: 1px solid #05bb4c;
  298. position: absolute;
  299. bottom: 0;
  300. left: 0px;
  301. box-sizing: border-box;
  302. }
  303. .el-tabs__item.is-active {
  304. color: #05bb4c !important;
  305. background: linear-gradient(0deg,
  306. rgb(0 199 80 / 80%),
  307. rgb(0 199 80 / 20%),
  308. rgb(0 199 80 / 0%));
  309. }
  310. .card {
  311. position: fixed;
  312. top: 120px;
  313. right: 20px;
  314. width: 383px;
  315. background: rgba(0, 0, 0, 0.3);
  316. border: none;
  317. color: #fff;
  318. border-radius: 8px;
  319. padding: 24px 13px;
  320. }
  321. .content {
  322. height: 100%;
  323. height: calc(100% - 59px);
  324. }
  325. .home_card .header {
  326. margin-bottom: 10px;
  327. }
  328. .home_card .header img {
  329. margin-right: 10px;
  330. vertical-align: -7%;
  331. }
  332. .el-menu {
  333. z-index: 2002 !important;
  334. }
  335. .el-menu .el-menu-item:hover {
  336. background-color: transparent !important;
  337. color: rgba(28, 153, 255, 1);
  338. }
  339. .el-menu-item-group .el-menu-item.is-active {
  340. color: #999999 !important;
  341. }
  342. .el-menu .el-menu-item .router-link-exact-active,
  343. .el-sub-menu .el-sub-menu__title .router-link-active {
  344. color: rgba(28, 153, 255, 1) !important;
  345. }
  346. .el-sub-menu__title i,
  347. .el-menu-item a {
  348. font-size: 18px !important;
  349. color: rgba(186, 197, 216, 1) !important;
  350. }
  351. .el-menu-item a .icon-State-monitoring {
  352. font-size: 21px !important;
  353. }
  354. .el-menu-item:hover a {
  355. color: rgba(28, 153, 255, 1) !important;
  356. }
  357. .el-sub-menu.is-opened::before {
  358. content: "";
  359. position: absolute;
  360. display: block;
  361. width: 5px;
  362. height: 40px;
  363. background: rgba(28, 153, 255, 1);
  364. border-top-left-radius: 4px;
  365. border-bottom-left-radius: 4px;
  366. top: 8px;
  367. right: 0;
  368. }
  369. .el-input__inner {
  370. background: rgba(83, 98, 104, 0.2) !important;
  371. border-radius: 12.5px !important;
  372. border: 0px solid #3b6c53 !important;
  373. }
  374. .tanchuc .el-dropdown-menu__item:hover {
  375. background: rgba(0, 70, 199, 0.3) !important;
  376. }
  377. .station .el-input-number__decrease {
  378. background: rgba(67, 81, 107, 0.2) !important;
  379. border-radius: 13px 0px 0px 13px !important;
  380. }
  381. .station .el-input-number__increase {
  382. background: rgba(67, 81, 107, 0.2) !important;
  383. border-radius: 0px 13px 13px 0px !important;
  384. }
  385. .tables .el-switch__core {
  386. background: none;
  387. }
  388. .el-picker__poppe {
  389. z-index: 999;
  390. }
  391. .station .el-picker-panel__footer {
  392. background: blue !important;
  393. }
  394. .elDatePicker {
  395. /*border: 1px solid #094493 !important;*/
  396. border: none;
  397. }
  398. .metse .el-table th {
  399. background: rgba(83, 89, 104, 0.1) !important;
  400. }
  401. .tables .el-input-number__increase,
  402. .tables .el-input-number__decrease {
  403. border: none !important;
  404. }
  405. .tables .el-input-number__increase,
  406. .tables .el-input-number__decrease {
  407. background: rgba(67, 81, 107, 0.2);
  408. }
  409. .tables .el-input-number span {
  410. height: 14.5px !important;
  411. color: #999a9d;
  412. }
  413. .metse .el-input-number span {
  414. height: 12px !important;
  415. color: #999a9d;
  416. }
  417. .metse .el-input-number.is-controls-right .el-input-number__decrease {
  418. top: 16px;
  419. }
  420. .metse .el-input-number__increase {
  421. top: 3px;
  422. }
  423. .changeButton .el-button--default {
  424. background: rgba(0, 70, 199, 0.4) !important;
  425. border: none !important;
  426. color: #ffffff;
  427. }
  428. .changeButton .el-switch.is-disabled {
  429. background: red !important;
  430. }
  431. // .el-popper .el-menu--popup {
  432. // min-width: 140px !important;
  433. // /*padding: 20px 0!important;*/
  434. // }
  435. // .el-popper .el-menu--popup .el-menu-item-group .el-menu-item {
  436. // height: 35px !important;
  437. // line-height: 35px !important;
  438. // font-size: 13px !important;
  439. // }
  440. // .el-popper
  441. // .el-menu--popup
  442. // .el-menu-item-group
  443. // .router-link-active
  444. // .el-menu-item {
  445. // background: linear-gradient(91deg, #1c99ff, transparent) !important;
  446. // color: #fff !important;
  447. // }
  448. // .el-popper.is-pure .el-menu-item:hover {
  449. // background: linear-gradient(91deg, #1c99ff, transparent) !important;
  450. // color: #fff !important;
  451. // }
  452. // .el-popper.is-light {
  453. // color: #d1d1d1 !important;
  454. // background-color: rgb(0, 0, 0, 0.9) !important;
  455. // border-color: #555555 !important;
  456. // border-radius: unset;
  457. // }
  458. // .el-popper.is-light .el-popper__arrow::before {
  459. // background-color: rgb(0, 0, 0, 0.8) !important;
  460. // /*border-left: 1px solid #555555 !important;*/
  461. // /*border-bottom: 1px solid #555555 !important;*/
  462. // }
  463. // .el-popper.is-pure {
  464. // border-image: linear-gradient(
  465. // 180deg,
  466. // transparent,
  467. // #1a7ccd,
  468. // #1a7ccd,
  469. // transparent
  470. // )
  471. // 2 1;
  472. // border: 1px solid #002767;
  473. // background: linear-gradient(278deg, #002767, transparent) !important;
  474. // border-radius: 5px !important;
  475. // backdrop-filter: blur(5px);
  476. // }
  477. .el-dialog--center .el-dialog__body,
  478. .el-dialog__body {
  479. padding: 25px 24px;
  480. }
  481. .parcel-box .el-dialog__body {
  482. padding: 0px 15px;
  483. }
  484. .el-select .el-select__tags .el-tag {
  485. background-color: #343a39;
  486. color: #ffffff;
  487. }
  488. /* .el-icon-close {
  489. background-color: rgba(30,90,163, .5);
  490. } */
  491. .el-select .el-input__inner {
  492. width: 190px;
  493. max-width: 190px;
  494. // height: 25px;
  495. background: rgba(67, 81, 107, 0.2);
  496. border: 1px solid #2a374f;
  497. border-radius: 12.5px;
  498. font-size: 13px;
  499. color: #b3b3b3;
  500. }
  501. .title-select .el-select .el-input__inner {
  502. width: 133px;
  503. max-width: 190px;
  504. height: 25px;
  505. background: rgba(67, 81, 107, 0.2);
  506. border: 0px solid #2a374f;
  507. border-radius: 0px;
  508. font-size: 13px;
  509. color: #b3b3b3;
  510. }
  511. .title-select .el-input__suffix {
  512. display: none;
  513. }
  514. .station .el-input__inner {
  515. max-width: 190px;
  516. height: 25px;
  517. background: rgba(67, 81, 107, 0.2);
  518. border: 1px solid #2a374f;
  519. border-radius: 12.5px;
  520. font-size: 13px;
  521. color: #b3b3b3;
  522. width: 150px;
  523. }
  524. .search-input {
  525. width: 160px;
  526. }
  527. .search-input .el-date-editor {
  528. --el-date-editor-width: 120px;
  529. }
  530. .search-input .el-input__inner {
  531. max-width: 190px;
  532. height: 25px;
  533. background: rgba(67, 81, 107, 0.2);
  534. border: 1px solid #2a374f;
  535. border-radius: 12.5px;
  536. font-size: 13px;
  537. color: #b3b3b3;
  538. width: 150px;
  539. }
  540. .el-select .el-input__icon {
  541. height: 40px;
  542. position: relative;
  543. top: -7px;
  544. }
  545. .el-icon-full-screen {
  546. position: absolute;
  547. right: 20px;
  548. top: 10px;
  549. color: #909399;
  550. }
  551. .s {
  552. min-width: 300px !important;
  553. }
  554. .el-message--warning {
  555. background: #090e19 !important;
  556. box-shadow: 0 0 22px rgba(0, 70, 199, 0.2) inset !important;
  557. border: 1px solid #094493 !important;
  558. }
  559. .el-message--warning .el-message__content {
  560. color: #ffffff !important;
  561. }
  562. .el-message .el-icon-warning {
  563. font-size: 16px;
  564. color: #ffd02b !important;
  565. }
  566. .el-menu-item-group__title {
  567. padding: 0 !important;
  568. }
  569. .economicTable1 .has-gutter .el-table__cell {
  570. padding: 0 !important;
  571. }
  572. .economicTable1 .el-table__row .el-table__cell {
  573. padding: 5px 0 !important;
  574. }
  575. .el-table {
  576. font-family: "MicrosoftYaHei" !important;
  577. background-color: transparent !important;
  578. /*font-size: 14px !important;*/
  579. }
  580. .el-checkbox__inner {
  581. background-color: transparent !important;
  582. border-color: #959595 !important;
  583. }
  584. .el-checkbox__input.is-checked+.el-checkbox__label {
  585. color: rgba(255, 255, 255, 1) !important;
  586. }
  587. .el-checkbox__label {
  588. color: #959595 !important;
  589. font-size: 13px !important;
  590. }
  591. .el-checkbox__input {
  592. display: inline-block;
  593. }
  594. .el-checkbox__label {
  595. padding-left: 0;
  596. }
  597. .el-button.is-round {
  598. padding: 0px 30px !important;
  599. }
  600. .el-button {
  601. min-height: 30px !important;
  602. }
  603. /* .el-button--default {
  604. background-color: rgba(0, 70, 199, 0.2) !important;
  605. border: none !important;
  606. color: #B3B3B3 !important;
  607. } */
  608. .el-button--primary {
  609. background-color: rgba(0, 70, 199, 0.4);
  610. border: none !important;
  611. }
  612. .mentues .el-table__cell {
  613. padding: 0 !important;
  614. }
  615. .mentuese .el-table__fixed-header-wrapper .el-table__cell .cell {
  616. color: #ffffff !important;
  617. }
  618. .met .el-table__body {
  619. font-size: 13px !important;
  620. }
  621. .mentuese .cell {
  622. text-overflow: ellipsis !important;
  623. white-space: nowrap !important;
  624. }
  625. .mentuese .el-table__cell {
  626. padding: 0 !important;
  627. }
  628. .met .has-gutter .el-table__cell .cell {
  629. line-height: 50px;
  630. color: #ffffff !important;
  631. }
  632. .metse .el-table__body .cell {
  633. line-height: 36px !important;
  634. }
  635. .metse .el-table__fixed-header-wrapper .cell {
  636. line-height: 45px !important;
  637. }
  638. .metse .el-input--small .el-input__inner {
  639. height: 26px !important;
  640. line-height: 26px !important;
  641. }
  642. .mentuese .el-table__cell .cell {
  643. line-height: 50px;
  644. /*color: #FFFFFF;*/
  645. }
  646. /*.el-table__cell{*/
  647. /* color: ;*/
  648. /*}*/
  649. .mentues .el-table__body .el-table__cell {
  650. padding: 5px 0 !important;
  651. }
  652. .el-dialog__header {
  653. font-size: 16px;
  654. color: #fff;
  655. }
  656. .el-select__popper.is-light {
  657. background: #141a25 !important;
  658. border: 1px solid #2a374f !important;
  659. border-radius: unset !important;
  660. /* top: 100px !important; */
  661. }
  662. // .el-dialog--center .el-dialog__body,
  663. // .el-dialog__body {
  664. // padding: 20px !important;
  665. // }
  666. .el-select-dropdown__item.hover,
  667. .el-select-dropdown__item:hover {
  668. background-color: rgba(0, 70, 199, 0.4) !important;
  669. color: #fff !important;
  670. }
  671. .el-select-dropdown__item.selected {
  672. color: #fff !important;
  673. font-weight: normal !important;
  674. }
  675. .el-select-dropdown__item {
  676. color: #b3b3b3 !important;
  677. height: 36px !important;
  678. line-height: 36px !important;
  679. font-size: 12px !important;
  680. }
  681. .el-select__popper .el-popper__arrow::before {
  682. display: none;
  683. }
  684. .table-fixed .el-table__fixed-left {
  685. height: 100% !important;
  686. }
  687. .table-fixed .el-table__fixed {
  688. height: 100% !important;
  689. }
  690. .el-table__fixed-right::before,
  691. .el-table__fixed::before {
  692. background-color: transparent !important;
  693. }
  694. .is-opened .el-sub-menu__title i {
  695. color: rgba(28, 153, 255, 1) !important;
  696. }
  697. .el-tabs__nav-wrap::after {
  698. height: 1px !important;
  699. background-color: #3a3f43 !important;
  700. }
  701. .el-tabs__nav {
  702. padding-bottom: 10px;
  703. }
  704. .el-tabs__item {
  705. height: 28px !important;
  706. line-height: 28px !important;
  707. padding: 0 17px !important;
  708. margin-right: 30px;
  709. color: #b3b3b3 !important;
  710. }
  711. .el-tabs__nav-wrap {
  712. padding: 0 25px;
  713. }
  714. .el-tabs__header::before,
  715. .el-tabs__header::after {
  716. content: "";
  717. display: inline-block;
  718. width: 10px;
  719. height: 1px;
  720. background: #ffffff;
  721. position: absolute;
  722. bottom: 0px;
  723. z-index: 99;
  724. }
  725. .el-tabs__header::after {
  726. right: 0;
  727. }
  728. .el-tabs__active-bar {
  729. height: 1px !important;
  730. }
  731. // .el-dialog__body::before,
  732. // .el-dialog__body::after {
  733. // content: "";
  734. // display: block;
  735. // width: 5px;
  736. // height: 5px;
  737. // border-radius: 50%;
  738. // background: rgba(16, 73, 126, 1);
  739. // position: absolute;
  740. // }
  741. // .el-dialog__body::before {
  742. // bottom: 9px;
  743. // left: 9px;
  744. // }
  745. // .el-dialog__body::after {
  746. // bottom: 9px;
  747. // right: 9px;
  748. // }
  749. // .dialog-title {
  750. // position: relative;
  751. // }
  752. // .dialog-title .dialog-title-img {
  753. // position: absolute;
  754. // top: -25px;
  755. // }
  756. // .dialog-title .title {
  757. // margin-left: 20px;
  758. // color: #1c99ff;
  759. // // color: #05bb4c;
  760. // }
  761. .dialog-body {
  762. position: relative;
  763. }
  764. .dialog-body .dialog-img {
  765. position: absolute;
  766. right: -20px;
  767. bottom: 50px;
  768. }
  769. .economicTable .el-table__header-wrapper tr {
  770. background: rgba(83, 89, 104, 0.3) !important;
  771. }
  772. .economicTable .el-table__header-wrapper tr th {
  773. vertical-align: top !important;
  774. }
  775. .economicTable .el-table__header-wrapper tr .cell {
  776. color: #b3b3b3;
  777. font-family: MicrosoftYaHei;
  778. font-size: 14px;
  779. }
  780. .economicTable .el-table__body-wrapper tr .cell {
  781. color: #d8d8d9;
  782. font-family: ArialMT;
  783. font-size: 13px;
  784. height: 25px !important;
  785. }
  786. .economicTable .el-table__body-wrapper tr .cell .el-checkbox {
  787. height: 25px;
  788. }
  789. .el-message-box {
  790. background: fade(#121d1c, 95);
  791. border: 1px solid fade(@darkBlue, 50);
  792. box-shadow: 0px 8px 17px 1px rgba(5, 187, 76, 0.3);
  793. }
  794. .el-message-box__header {
  795. .el-message-box__title {
  796. color: @gray;
  797. }
  798. }
  799. .el-message-box__content {
  800. color: @white;
  801. }
  802. .el-message-box__btns {
  803. .el-button {
  804. height: 30px;
  805. flex: 0 0 auto;
  806. background: transparent;
  807. border: 1px solid @gray;
  808. padding: 0 1.481vh;
  809. color: @gray;
  810. font-size: 1.296vh;
  811. cursor: pointer;
  812. &.el-button--primary {
  813. border-color: @darkBlue;
  814. color: @darkBlue;
  815. background: fade(@darkBlue, 20);
  816. }
  817. }
  818. }
  819. }
  820. .el-message {
  821. &.el-message--info {
  822. border-color: @gray;
  823. background-color: fade(@gray, 20);
  824. color: @gray;
  825. }
  826. &.el-message--success {
  827. border-color: @darkBlue;
  828. background-color: fade(@darkBlue, 20);
  829. color: @darkBlue;
  830. }
  831. &.el-message--warning {
  832. border-color: @yellow;
  833. background-color: fade(@yellow, 20);
  834. color: @yellow;
  835. }
  836. &.el-message--error {
  837. border-color: @red;
  838. background-color: fade(@red, 20);
  839. color: @red;
  840. }
  841. }