custom.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078
  1. html,
  2. body {
  3. height: 100vh;
  4. width: 100vw;
  5. margin: 0;
  6. padding: 0;
  7. overflow: hidden;
  8. }
  9. body {
  10. color: rgba(0, 0, 0, 0.65);
  11. font-size: 14px;
  12. font-variant: tabular-nums;
  13. line-height: 1.5;
  14. background-color: #fff;
  15. font-feature-settings: "tnum";
  16. }
  17. html {
  18. --antd-wave-shadow-color: #008771;
  19. line-height: 1.15;
  20. -webkit-text-size-adjust: 100%;
  21. -ms-text-size-adjust: 100%;
  22. -ms-overflow-style: scrollbar;
  23. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  24. }
  25. ::selection {
  26. color: #008771;
  27. background-color: #cfe8e4;
  28. }
  29. #app {
  30. height: 100%;
  31. position: fixed;
  32. top: 0;
  33. left: 0;
  34. right: 0;
  35. bottom: 0;
  36. margin: 0;
  37. padding: 0;
  38. overflow: auto;
  39. }
  40. .ant-layout,
  41. .ant-layout * {
  42. box-sizing: border-box;
  43. }
  44. .ant-spin-blur {
  45. border-radius: 1.5rem;
  46. }
  47. style attribute {
  48. text-align: center;
  49. }
  50. .ant-table-tbody > tr > td,
  51. .ant-table-thead > tr > th {
  52. padding: 16px;
  53. overflow-wrap: break-word;
  54. }
  55. .ant-table-thead > tr > th {
  56. color: rgba(0, 0, 0, 0.85);
  57. font-weight: 500;
  58. text-align: left;
  59. border-bottom: 1px solid #e8e8e8;
  60. transition: background 0.3s ease;
  61. }
  62. .ant-table-row-cell-break-word {
  63. word-wrap: break-word;
  64. word-break: break-word;
  65. }
  66. .ant-table table {
  67. width: 100%;
  68. text-align: left;
  69. border-radius: 1rem 1rem 0 0;
  70. border-collapse: separate;
  71. border-spacing: 0;
  72. }
  73. .ant-table {
  74. box-sizing: border-box;
  75. margin: 0;
  76. padding: 0;
  77. color: rgba(0, 0, 0, 0.65);
  78. font-size: 14px;
  79. font-variant: tabular-nums;
  80. line-height: 1.5;
  81. list-style: none;
  82. font-feature-settings: "tnum";
  83. position: relative;
  84. clear: both;
  85. }
  86. .ant-table-body {
  87. overflow-x: auto !important;
  88. }
  89. .ant-card-hoverable {
  90. cursor: auto;
  91. cursor: pointer;
  92. }
  93. .ant-card {
  94. box-sizing: border-box;
  95. margin: 0;
  96. padding: 0;
  97. color: rgba(0, 0, 0, 0.65);
  98. font-size: 14px;
  99. font-variant: tabular-nums;
  100. line-height: 1.5;
  101. list-style: none;
  102. font-feature-settings: "tnum";
  103. position: relative;
  104. background-color: #fff;
  105. border-radius: 2px;
  106. transition: all 0.3s;
  107. }
  108. .ant-space {
  109. width: 100%;
  110. }
  111. .ant-layout-sider-zero-width-trigger {
  112. display: none;
  113. }
  114. @media (max-width: 768px) {
  115. .ant-layout-sider {
  116. display: none;
  117. }
  118. .ant-card {
  119. margin: 0.5rem;
  120. }
  121. .ant-tabs {
  122. margin: 0.5rem;
  123. padding: 0.5rem;
  124. }
  125. }
  126. .ant-layout-content {
  127. min-height: auto;
  128. }
  129. .ant-card,
  130. .ant-tabs {
  131. border-radius: 1.5rem;
  132. }
  133. .ant-card-hoverable {
  134. cursor: auto;
  135. }
  136. .ant-card + .ant-card {
  137. margin-top: 20px;
  138. }
  139. .drawer-handle {
  140. position: absolute;
  141. top: 72px;
  142. width: 41px;
  143. height: 40px;
  144. cursor: pointer;
  145. z-index: 0;
  146. text-align: center;
  147. line-height: 40px;
  148. font-size: 16px;
  149. display: flex;
  150. justify-content: center;
  151. align-items: center;
  152. background-color: #fff;
  153. right: -40px;
  154. box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  155. border-radius: 0 4px 4px 0;
  156. }
  157. .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  158. background-color: #006655 !important;
  159. background-image: linear-gradient(
  160. 270deg,
  161. rgba(123, 199, 77, 0) 30%,
  162. #009980,
  163. rgba(123, 199, 77, 0) 100%
  164. );
  165. background-repeat: no-repeat;
  166. animation: ma-bg-move linear 6.6s infinite;
  167. color: #fff;
  168. border-radius: 0.5rem;
  169. }
  170. @-webkit-keyframes ma-bg-move {
  171. 0% {
  172. background-position: -500px 0;
  173. }
  174. 100% {
  175. background-position: 1000px 0;
  176. }
  177. }
  178. @keyframes ma-bg-move {
  179. 0% {
  180. background-position: -500px 0;
  181. }
  182. 50% {
  183. background-position: 1000px 0;
  184. }
  185. 100% {
  186. background-position: 1000px 0;
  187. }
  188. }
  189. .ant-menu-item-active,
  190. .ant-menu-item:hover,
  191. .ant-menu-submenu-active,
  192. .ant-menu-submenu-title:hover,
  193. .ant-menu:not(.ant-menu-inline) .ant-menu-submenu-open {
  194. color: #008771;
  195. background-color: rgb(232 244 242);
  196. border-radius: 0.5rem;
  197. }
  198. .ant-menu-inline .ant-menu-item {
  199. border-radius: 0.5rem;
  200. }
  201. .ant-menu-inline .ant-menu-item:after,
  202. .ant-menu {
  203. border-right-width: 0;
  204. }
  205. .ant-layout-sider-children,
  206. .ant-pagination ul {
  207. margin-top: -0.1px;
  208. padding: 0.5rem;
  209. }
  210. .ant-dropdown-menu,
  211. .ant-select-dropdown-menu {
  212. padding: 0.5rem;
  213. }
  214. .ant-dropdown-menu-item,
  215. .ant-dropdown-menu-item:hover,
  216. .ant-select-dropdown-menu-item,
  217. .ant-select-dropdown-menu-item:hover,
  218. .ant-select-dropdown-menu-item-selected,
  219. .ant-select-selection--multiple .ant-select-selection__choice {
  220. border-radius: 0.5rem;
  221. margin-bottom: 2px;
  222. }
  223. @media (min-width: 769px) {
  224. .drawer-handle {
  225. display: none;
  226. }
  227. .ant-tabs {
  228. padding: 2rem;
  229. }
  230. }
  231. .fade-in-enter,
  232. .fade-in-leave-active,
  233. .fade-in-linear-enter,
  234. .fade-in-linear-leave,
  235. .fade-in-linear-leave-active,
  236. .fade-in-linear-enter,
  237. .fade-in-linear-leave,
  238. .fade-in-linear-leave-active {
  239. opacity: 0;
  240. }
  241. .fade-in-linear-enter-active,
  242. .fade-in-linear-leave-active {
  243. -webkit-transition: opacity 0.2s linear;
  244. transition: opacity 0.2s linear;
  245. }
  246. .fade-in-linear-enter-active,
  247. .fade-in-linear-leave-active {
  248. -webkit-transition: opacity 0.2s linear;
  249. transition: opacity 0.2s linear;
  250. }
  251. .fade-in-enter-active,
  252. .fade-in-leave-active {
  253. -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  254. transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  255. }
  256. .zoom-in-center-enter-active,
  257. .zoom-in-center-leave-active {
  258. -webkit-transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  259. transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
  260. }
  261. .zoom-in-center-enter,
  262. .zoom-in-center-leave-active {
  263. opacity: 0;
  264. -webkit-transform: scaleX(0);
  265. transform: scaleX(0);
  266. }
  267. .zoom-in-top-enter-active,
  268. .zoom-in-top-leave-active {
  269. opacity: 1;
  270. -webkit-transform: scaleY(1);
  271. transform: scaleY(1);
  272. -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  273. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  274. transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  275. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  276. transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  277. opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  278. transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  279. opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  280. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  281. -webkit-transform-origin: center top;
  282. transform-origin: center top;
  283. }
  284. .zoom-in-top-enter,
  285. .zoom-in-top-leave-active {
  286. opacity: 0;
  287. -webkit-transform: scaleY(0);
  288. transform: scaleY(0);
  289. }
  290. .zoom-in-bottom-enter-active,
  291. .zoom-in-bottom-leave-active {
  292. opacity: 1;
  293. -webkit-transform: scaleY(1);
  294. transform: scaleY(1);
  295. -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  296. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  297. transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  298. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  299. transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  300. opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  301. transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  302. opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  303. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  304. -webkit-transform-origin: center bottom;
  305. transform-origin: center bottom;
  306. }
  307. .zoom-in-bottom-enter,
  308. .zoom-in-bottom-leave-active {
  309. opacity: 0;
  310. -webkit-transform: scaleY(0);
  311. transform: scaleY(0);
  312. }
  313. .zoom-in-left-enter-active,
  314. .zoom-in-left-leave-active {
  315. opacity: 1;
  316. -webkit-transform: scale(1, 1);
  317. transform: scale(1, 1);
  318. -webkit-transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  319. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  320. transition: opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  321. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  322. transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  323. opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  324. transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  325. opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1),
  326. -webkit-transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  327. -webkit-transform-origin: top left;
  328. transform-origin: top left;
  329. }
  330. .zoom-in-left-enter,
  331. .zoom-in-left-leave-active {
  332. opacity: 0;
  333. -webkit-transform: scale(0.45, 0.45);
  334. transform: scale(0.45, 0.45);
  335. }
  336. .list-enter-active,
  337. .list-leave-active {
  338. -webkit-transition: all 0.3s;
  339. transition: all 0.3s;
  340. }
  341. .list-enter,
  342. .list-leave-active {
  343. opacity: 0;
  344. -webkit-transform: translateY(-30px);
  345. transform: translateY(-30px);
  346. }
  347. .ant-tooltip-inner {
  348. min-height: 0;
  349. }
  350. .ant-list-item-meta-title {
  351. font-size: 14px;
  352. }
  353. .ant-progress-inner {
  354. background-color: #ebeef5;
  355. }
  356. .deactive-client .ant-collapse-header {
  357. color: rgb(255, 255, 255) !important;
  358. background-color: rgb(255, 127, 127);
  359. }
  360. .ant-table-tbody > tr > td,
  361. .ant-table-thead > tr > th {
  362. padding: 16px 5px;
  363. }
  364. .ant-table-expand-icon-th,
  365. .ant-table-row-expand-icon-cell {
  366. width: 30px;
  367. min-width: 30px;
  368. }
  369. .ant-tabs {
  370. background-color: white;
  371. }
  372. .ant-setting-textarea {
  373. margin-top: 1.5rem;
  374. }
  375. .client-table-header {
  376. background-color: #f0f2f5;
  377. }
  378. .client-table-odd-row {
  379. background-color: #fafafa;
  380. }
  381. .ant-table-pagination.ant-pagination {
  382. float: left;
  383. }
  384. /* change basic colors */
  385. .ant-tag-blue {
  386. background-color: #edf4fa;
  387. border-color: #a9c5e7;
  388. color: #0e49b5;
  389. }
  390. .ant-tag-green {
  391. background-color: #eafff9;
  392. border-color: #76ccb4;
  393. color: #199270;
  394. }
  395. .ant-tag-purple {
  396. background-color: #f2eaf1;
  397. border-color: #d5bed2;
  398. color: #7a316f;
  399. }
  400. .ant-tag-orange,
  401. .ant-alert-warning {
  402. background-color: #ffeee1;
  403. border-color: #fec093;
  404. color: #f37b24;
  405. }
  406. .ant-tag-red,
  407. .ant-alert-error {
  408. background-color: #ffe9e9;
  409. border-color: #ff9e9e;
  410. color: #cf3c3c;
  411. }
  412. .ant-input::placeholder {
  413. opacity: 0.5;
  414. }
  415. .ant-input:hover,
  416. .ant-input:focus {
  417. background-color: rgb(232 244 242);
  418. }
  419. .delete-icon:hover {
  420. color: #e04141;
  421. }
  422. .normal-icon:hover {
  423. color: #008771;
  424. }
  425. /* DARK THEME */
  426. .dark ::selection {
  427. color: #fff;
  428. background-color: #008771;
  429. }
  430. .dark .normal-icon:hover {
  431. color: #ffffff;
  432. }
  433. .dark .ant-layout-sider,
  434. .dark .ant-drawer-content,
  435. .ant-menu-dark,
  436. .ant-menu-dark .ant-menu-sub,
  437. .dark .ant-card,
  438. .dark .ant-table,
  439. .dark .ant-collapse-content,
  440. .dark .ant-tabs {
  441. background-color: #151f31;
  442. color: #ffffffa6;
  443. }
  444. .dark .ant-card-hoverable:hover,
  445. .dark .ant-space-item > .ant-tabs:hover {
  446. box-shadow: 0 1px 10px -1px rgb(154 175 238 / 80%);
  447. }
  448. .dark > .ant-layout,
  449. .dark .drawer-handle,
  450. .dark .ant-table-thead > tr > th,
  451. .dark .ant-table-expanded-row,
  452. .dark .ant-table-expanded-row:hover,
  453. .dark .ant-table-expanded-row .ant-table-tbody,
  454. .dark .ant-calendar {
  455. background-color: #101828;
  456. color: rgb(255 255 255 /65%);
  457. }
  458. .dark .ant-table-expanded-row .ant-table-thead > tr:first-child > th {
  459. border-radius: 0;
  460. }
  461. .dark .ant-calendar,
  462. .dark .ant-card-bordered {
  463. border-color: #151f31;
  464. }
  465. .dark .ant-table-bordered,
  466. .dark .ant-table-bordered.ant-table-empty .ant-table-placeholder,
  467. .dark .ant-table-bordered .ant-table-body > table,
  468. .dark .ant-table-bordered .ant-table-fixed-left table,
  469. .dark .ant-table-bordered .ant-table-fixed-right table,
  470. .dark .ant-table-bordered .ant-table-header > table,
  471. .dark .ant-table-bordered .ant-table-thead > tr:not(:last-child) > th,
  472. .dark .ant-table-bordered .ant-table-tbody > tr > td,
  473. .dark .ant-table-bordered .ant-table-thead > tr > th {
  474. border-color: #2c3950;
  475. }
  476. .dark .ant-table-tbody > tr > td,
  477. .dark .ant-table-thead > tr > th,
  478. .dark .ant-card-head,
  479. .dark .ant-modal-header,
  480. .dark .ant-collapse > .ant-collapse-item,
  481. .dark .ant-tabs-bar,
  482. .dark .ant-list-split .ant-list-item,
  483. .dark .ant-popover-title,
  484. .dark .ant-calendar-header,
  485. .dark .ant-calendar-input-wrap {
  486. border-bottom-color: #2c3950;
  487. }
  488. .dark .ant-modal-footer,
  489. .dark .ant-collapse-content,
  490. .dark .ant-calendar-footer,
  491. .dark .ant-divider-horizontal.ant-divider-with-text-center:before,
  492. .dark .ant-divider-horizontal.ant-divider-with-text-center:after {
  493. border-top-color: #2c3950;
  494. }
  495. .dark .ant-progress-text,
  496. .dark .ant-card-head,
  497. .dark .ant-form,
  498. .dark .ant-collapse > .ant-collapse-item > .ant-collapse-header,
  499. .dark .ant-modal-close-x,
  500. .dark .ant-pagination-item a,
  501. .dark li:not(.ant-pagination-disabled) i,
  502. .dark .ant-form .anticon,
  503. .dark .ant-tabs-tab-arrow-show:not(.ant-tabs-tab-btn-disabled),
  504. .dark .anticon-close,
  505. .dark .ant-list-item-meta-title,
  506. .dark .ant-select-selection i,
  507. .dark .ant-modal-confirm-title,
  508. .dark .ant-modal-confirm-content,
  509. .dark .ant-popover-message,
  510. .dark .ant-modal,
  511. .dark .ant-divider-inner-text,
  512. .dark .ant-popover-title,
  513. .dark .ant-popover-inner-content,
  514. .dark h2,
  515. .dark .ant-modal-title,
  516. .dark .ant-form-item-label > label,
  517. .dark .ant-checkbox-wrapper,
  518. .dark .ant-form-item,
  519. .dark .ant-calendar-footer .ant-calendar-today-btn,
  520. .dark .ant-calendar-footer .ant-calendar-time-picker-btn,
  521. .dark .ant-calendar-day-select,
  522. .dark .ant-calendar-month-select,
  523. .dark .ant-calendar-year-select,
  524. .dark .ant-calendar-date,
  525. .dark .ant-calendar-year-panel-year,
  526. .dark .ant-calendar-month-panel-month,
  527. .dark .ant-calendar-decade-panel-decade {
  528. color: rgba(255, 255, 255, 0.65);
  529. }
  530. .dark .ant-list-item-meta-description {
  531. color: rgba(255, 255, 255, 0.45);
  532. }
  533. .dark .ant-pagination-disabled i,
  534. .dark .ant-tabs-tab-btn-disabled {
  535. color: rgba(255, 255, 255, 0.25);
  536. }
  537. .dark .ant-input,
  538. .dark .ant-input-group-addon,
  539. .dark .ant-collapse,
  540. .dark .ant-select-selection,
  541. .dark .ant-input-number,
  542. .dark .ant-input-number-handler-wrap,
  543. .dark .ant-pagination-item-active,
  544. .dark .ant-table-placeholder,
  545. .dark .ant-empty-normal,
  546. .dark.ant-select-dropdown,
  547. .dark .ant-select-dropdown,
  548. .dark .ant-select-dropdown li,
  549. .dark .ant-select-dropdown-menu-item,
  550. .dark .ant-divider:not(.ant-divider-with-text-center),
  551. .dark .ant-calendar-input,
  552. .dark .client-table-header,
  553. .dark .ant-select-selection--multiple .ant-select-selection__choice,
  554. .dark .ant-calendar-time-picker-inner {
  555. background-color: #222d42;
  556. border-color: #2c3950;
  557. color: rgba(255, 255, 255, 0.65);
  558. }
  559. .dark .ant-select-selection:hover,
  560. .dark .ant-calendar-picker-clear,
  561. .dark .ant-input-number:hover,
  562. .dark .ant-input-number:focus,
  563. .dark .ant-input:hover,
  564. .dark .ant-input:focus {
  565. background-color: rgba(0, 135, 113, 0.3);
  566. border-color: #008771;
  567. }
  568. .dark .ant-btn:not(.ant-btn-primary):not(.ant-btn-danger) {
  569. color: rgba(255, 255, 255, 0.65);
  570. background-color: rgb(10 117 87 / 30%);
  571. border: 1px solid #008771;
  572. }
  573. .dark .ant-radio-button-wrapper,
  574. .dark .ant-radio-button-wrapper:before {
  575. color: rgb(255 255 255 / 65%);
  576. background-color: rgba(0, 135, 113, 0.3);
  577. border-color: #008771;
  578. }
  579. .dark .ant-btn:focus:not(.ant-btn-primary):not(.ant-btn-danger),
  580. .dark .ant-btn:hover:not(.ant-btn-primary):not(.ant-btn-danger) {
  581. color: #fff;
  582. background-color: rgb(10 117 87 / 50%);
  583. border-color: #008771;
  584. }
  585. .dark .ant-btn-primary[disabled],
  586. .dark .ant-btn-danger[disabled],
  587. .dark .ant-calendar-ok-btn-disabled {
  588. color: rgb(255 255 255 / 35%);
  589. background-color: #2c3950;
  590. border-color: #42516c;
  591. }
  592. .dark
  593. .ant-table-tbody
  594. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  595. > td,
  596. .dark .client-table-odd-row {
  597. background-color: #00877122;
  598. }
  599. .dark .ant-table-row-expand-icon {
  600. color: #fff;
  601. background-color: #fff0;
  602. border-color: #9ea2a8;
  603. }
  604. .dark .ant-table-row-expand-icon:hover {
  605. color: #008771;
  606. background-color: #fff0;
  607. border-color: #008771;
  608. }
  609. .dark .ant-switch:not(.ant-switch-checked),
  610. .dark .ant-progress-line .ant-progress-inner {
  611. background-color: #2c3950;
  612. }
  613. .dark .ant-progress-circle-trail {
  614. stroke: #2c3950 !important;
  615. }
  616. .ant-dropdown-menu-dark,
  617. .dark .ant-popover-inner {
  618. background-color: #222d42;
  619. }
  620. .dark > .ant-popover-content > .ant-popover-arrow {
  621. border-color: #222d42;
  622. }
  623. .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
  624. .dark .ant-select-dropdown-menu-item-selected,
  625. .dark .ant-select-dropdown-menu-item:hover,
  626. .dark .ant-calendar-time-picker-select-option-selected {
  627. background-color: #313f5a;
  628. }
  629. .ant-menu-dark .ant-menu-item:hover {
  630. background-color: #2c3950;
  631. }
  632. .dark .ant-alert-message {
  633. color: rgba(255, 255, 255, 0.85);
  634. }
  635. .dark .ant-tag {
  636. color: rgba(255, 255, 255, 0.65);
  637. background-color: #ffffff0a;
  638. border-color: #344461;
  639. }
  640. .dark .ant-tag-blue {
  641. background-color: #111a2c;
  642. border-color: #0f367e;
  643. color: #3c89e8;
  644. }
  645. .dark .ant-tag-red,
  646. .dark .ant-alert-error {
  647. background-color: #291515;
  648. border-color: #5c2626;
  649. color: #e04141;
  650. }
  651. .dark .ant-tag-orange,
  652. .dark .ant-alert-warning {
  653. background-color: #312313;
  654. border-color: #593914;
  655. color: #ffa031;
  656. }
  657. .dark .ant-tag-green {
  658. background-color: #112421;
  659. border-color: #144840;
  660. color: #33bca5;
  661. }
  662. .dark .ant-tag-purple {
  663. background-color: #2c1e32;
  664. border-color: #49394e;
  665. color: #cfb9cc;
  666. }
  667. .dark .ant-modal-content,
  668. .dark .ant-modal-header {
  669. background-color: #181f2c;
  670. }
  671. .dark .ant-calendar-next-month-btn-day .ant-calendar-date,
  672. .dark .ant-calendar-last-month-cell .ant-calendar-date {
  673. color: #2c3950;
  674. }
  675. .dark .ant-calendar-selected-day .ant-calendar-date {
  676. background-color: #008771 !important;
  677. color: #fff;
  678. }
  679. .dark .ant-calendar-date:hover,
  680. .dark .ant-calendar-time-picker-select li:hover {
  681. background-color: #313f5a;
  682. color: #fff;
  683. }
  684. .dark .ant-calendar-header a:hover,
  685. .dark .ant-calendar-header a:hover::before,
  686. .dark .ant-calendar-header a:hover::after {
  687. border-color: #fff;
  688. }
  689. .dark .ant-calendar-time-picker-select li:focus {
  690. color: #fff;
  691. font-weight: 600;
  692. outline: none;
  693. background-color: #008771;
  694. }
  695. .dark .ant-calendar-time-picker-select {
  696. border-right-color: #2c3950;
  697. }
  698. .has-warning .ant-input,
  699. .has-warning .ant-input:hover {
  700. background-color: #fff6e6;
  701. border-color: #ffd98c;
  702. }
  703. .has-warning .ant-input::placeholder {
  704. color: #faad14;
  705. }
  706. .has-warning .ant-input:not([disabled]):hover {
  707. border-color: #ffd98c;
  708. }
  709. .dark .has-warning .ant-input,
  710. .dark .has-warning .ant-input:hover {
  711. border-color: #784e1d;
  712. background: rgb(49, 35, 19);
  713. }
  714. .dark .has-warning .ant-input::placeholder {
  715. color: rgb(255 160 49 / 70%);
  716. }
  717. .dark .has-warning .anticon {
  718. color: #ffa031;
  719. }
  720. .dark .has-success .anticon {
  721. color: #61bf39;
  722. animation-name: diffZoomIn1 !important;
  723. }
  724. .dark .anticon-close-circle {
  725. color: #e04141;
  726. }
  727. .dark .ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  728. text-shadow: 0 1px 2px #00000077;
  729. }
  730. .dark .ant-spin {
  731. color: #fff;
  732. }
  733. .dark .ant-spin-dot-item {
  734. background-color: #fff;
  735. }
  736. .ant-menu,
  737. .ant-radio-button-wrapper {
  738. user-select: none;
  739. }
  740. .ant-calendar-date:hover {
  741. background-color: rgb(232 244 242);
  742. }
  743. .ant-calendar-date:active {
  744. background-color: rgb(232 244 242);
  745. color: rgba(0, 0, 0, 0.65);
  746. }
  747. .ant-calendar-today .ant-calendar-date {
  748. color: #008771;
  749. font-weight: 700;
  750. border-color: #008771;
  751. }
  752. .dark .ant-calendar-today .ant-calendar-date {
  753. color: #fff;
  754. font-weight: 700;
  755. border-color: #008771;
  756. }
  757. .ant-calendar-selected-day .ant-calendar-date {
  758. background: #008771;
  759. color: #ffffff;
  760. }
  761. li.ant-select-dropdown-menu-item:empty:after {
  762. content: "None";
  763. font-weight: normal;
  764. color: rgba(0, 0, 0, 0.25);
  765. }
  766. .dark li.ant-select-dropdown-menu-item:empty:after {
  767. content: "None";
  768. font-weight: normal;
  769. color: rgba(255, 255, 255, 0.3);
  770. }
  771. .ant-select-dropdown.ant-select-dropdown--multiple
  772. .ant-select-dropdown-menu-item:hover
  773. .ant-select-selected-icon {
  774. color: rgba(0, 0, 0, 0.87);
  775. }
  776. .dark.ant-select-dropdown.ant-select-dropdown--multiple
  777. .ant-select-dropdown-menu-item:hover
  778. .ant-select-selected-icon {
  779. color: rgb(255, 255, 255);
  780. }
  781. .ant-select-dropdown.ant-select-dropdown--multiple
  782. .ant-select-dropdown-menu-item-selected
  783. .ant-select-selected-icon,
  784. .ant-select-dropdown.ant-select-dropdown--multiple
  785. .ant-select-dropdown-menu-item-selected:hover
  786. .ant-select-selected-icon {
  787. color: #3c89e8;
  788. }
  789. .ant-select-selection:hover,
  790. .ant-input-number-focused,
  791. .ant-input-number:hover {
  792. background-color: rgb(232 244 242);
  793. }
  794. .dark .ant-input-number-handler:active {
  795. background-color: #008771;
  796. }
  797. .dark .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
  798. .dark .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  799. color: #fff;
  800. }
  801. .dark .ant-input-number-handler-down {
  802. border-top: 1px solid rgba(217, 217, 217, 0.3);
  803. }
  804. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
  805. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
  806. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select,
  807. .dark
  808. .ant-calendar-year-panel-header
  809. .ant-calendar-year-panel-year-select
  810. .dark
  811. .ant-calendar-month-panel-header
  812. .ant-calendar-month-panel-century-select,
  813. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
  814. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select,
  815. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select {
  816. color: rgba(255, 255, 255, 0.85);
  817. }
  818. .dark .ant-calendar-year-panel-header {
  819. border-bottom: 1px solid #222d42;
  820. }
  821. .dark .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
  822. .dark .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  823. color: rgba(255, 255, 255, 0.35);
  824. }
  825. .dark .ant-calendar-year-panel-year:hover,
  826. .dark .ant-calendar-month-panel-month:hover,
  827. .dark .ant-calendar-decade-panel-decade:hover {
  828. background-color: #222d42;
  829. }
  830. .dark .ant-calendar-header a:hover {
  831. color: #fff;
  832. }
  833. .dark .ant-calendar-month-panel-header {
  834. background-color: #101828;
  835. border-bottom: 1px solid #222d42;
  836. }
  837. .dark .ant-calendar-year-panel,
  838. .dark .ant-calendar table {
  839. background-color: #101828;
  840. }
  841. .dark .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year,
  842. .dark
  843. .ant-calendar-year-panel-selected-cell
  844. .ant-calendar-year-panel-year:hover,
  845. .dark .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month,
  846. .dark
  847. .ant-calendar-month-panel-selected-cell
  848. .ant-calendar-month-panel-month:hover,
  849. .dark
  850. .ant-calendar-decade-panel-selected-cell
  851. .ant-calendar-decade-panel-decade,
  852. .dark
  853. .ant-calendar-decade-panel-selected-cell
  854. .ant-calendar-decade-panel-decade:hover {
  855. color: #fff;
  856. background-color: #008771;
  857. }
  858. .dark .ant-calendar-last-month-cell .ant-calendar-date,
  859. .dark .ant-calendar-last-month-cell .ant-calendar-date:hover,
  860. .dark .ant-calendar-next-month-btn-day .ant-calendar-date,
  861. .dark .ant-calendar-next-month-btn-day .ant-calendar-date:hover {
  862. color: rgb(255 255 255 / 25%);
  863. background: transparent;
  864. border-color: transparent;
  865. }
  866. .dark .ant-calendar-today .ant-calendar-date:hover {
  867. color: #fff;
  868. border-color: #008771;
  869. background-color: #008771;
  870. }
  871. .dark
  872. .ant-calendar-decade-panel-last-century-cell
  873. .ant-calendar-decade-panel-decade,
  874. .dark
  875. .ant-calendar-decade-panel-next-century-cell
  876. .ant-calendar-decade-panel-decade {
  877. color: rgb(255 255 255 / 25%);
  878. }
  879. .dark .ant-calendar-decade-panel-header {
  880. border-bottom: 1px solid #222d42;
  881. background-color: #101828;
  882. }
  883. .dark .ant-checkbox-inner {
  884. background-color: rgba(0, 135, 113, 0.3);
  885. border-color: rgba(0, 135, 113, 0.3);
  886. }
  887. .dark .ant-checkbox-checked .ant-checkbox-inner {
  888. background-color: #008771;
  889. border-color: #008771;
  890. }
  891. .dark .ant-calendar-input {
  892. background-color: #101828;
  893. }
  894. .dark .ant-calendar-input::placeholder {
  895. color: rgba(255, 255, 255, 0.25);
  896. }
  897. .ant-input-number-handler-wrap {
  898. border-radius: 0;
  899. }
  900. .ant-input-number-handler {
  901. border-radius: 0;
  902. }
  903. .ant-input-number {
  904. overflow: clip;
  905. }
  906. .ant-calendar-year-panel-year:hover,
  907. .ant-calendar-decade-panel-decade:hover,
  908. .ant-calendar-month-panel-month:hover,
  909. .ant-dropdown-menu-item:hover,
  910. .ant-dropdown-menu-submenu-title:hover,
  911. .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled),
  912. .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
  913. .ant-table-tbody
  914. > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(
  915. .ant-table-row-selected
  916. )
  917. > td,
  918. .ant-table-tbody
  919. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  920. > td,
  921. .ant-table-thead
  922. > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(
  923. .ant-table-row-selected
  924. )
  925. > td,
  926. .ant-table-thead
  927. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  928. > td {
  929. background-color: rgb(232 244 242);
  930. }
  931. .dark .ant-dropdown-menu-item:hover,
  932. .dark .ant-dropdown-menu-submenu-title:hover,
  933. .dark .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled),
  934. .dark .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) {
  935. background-color: #313f5a;
  936. }