dialog.less 17 KB

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