custom.css 25 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090
  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: 12px 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-expand-icon-th,
  361. .ant-table-row-expand-icon-cell {
  362. width: 30px;
  363. min-width: 30px;
  364. }
  365. .ant-tabs {
  366. background-color: white;
  367. }
  368. .ant-setting-textarea {
  369. margin-top: 1.5rem;
  370. }
  371. .client-table-header {
  372. background-color: #f0f2f5;
  373. }
  374. .client-table-odd-row {
  375. background-color: #fafafa;
  376. }
  377. .ant-table-pagination.ant-pagination {
  378. float: left;
  379. }
  380. /* change basic colors */
  381. .ant-tag-blue {
  382. background-color: #edf4fa;
  383. border-color: #a9c5e7;
  384. color: #0e49b5;
  385. }
  386. .ant-tag-green {
  387. background-color: #eafff9;
  388. border-color: #76ccb4;
  389. color: #199270;
  390. }
  391. .ant-tag-purple {
  392. background-color: #f2eaf1;
  393. border-color: #d5bed2;
  394. color: #7a316f;
  395. }
  396. .ant-tag-orange,
  397. .ant-alert-warning {
  398. background-color: #ffeee1;
  399. border-color: #fec093;
  400. color: #f37b24;
  401. }
  402. .ant-tag-red,
  403. .ant-alert-error {
  404. background-color: #ffe9e9;
  405. border-color: #ff9e9e;
  406. color: #cf3c3c;
  407. }
  408. .ant-input::placeholder {
  409. opacity: 0.5;
  410. }
  411. .ant-input:hover,
  412. .ant-input:focus {
  413. background-color: rgb(232 244 242);
  414. }
  415. .delete-icon:hover {
  416. color: #e04141;
  417. }
  418. .normal-icon:hover {
  419. color: #008771;
  420. }
  421. /* DARK THEME */
  422. .dark ::selection {
  423. color: #fff;
  424. background-color: #008771;
  425. }
  426. .dark .normal-icon:hover {
  427. color: #ffffff;
  428. }
  429. .dark .ant-layout-sider,
  430. .dark .ant-drawer-content,
  431. .ant-menu-dark,
  432. .ant-menu-dark .ant-menu-sub,
  433. .dark .ant-card,
  434. .dark .ant-table,
  435. .dark .ant-collapse-content,
  436. .dark .ant-tabs {
  437. background-color: #151f31;
  438. color: #ffffffa6;
  439. }
  440. .dark .ant-card-hoverable:hover,
  441. .dark .ant-space-item > .ant-tabs:hover {
  442. box-shadow: 0 1px 10px -1px rgb(154 175 238 / 80%);
  443. }
  444. .dark > .ant-layout,
  445. .dark .drawer-handle,
  446. .dark .ant-table-thead > tr > th,
  447. .dark .ant-table-expanded-row,
  448. .dark .ant-table-expanded-row:hover,
  449. .dark .ant-table-expanded-row .ant-table-tbody,
  450. .dark .ant-calendar {
  451. background-color: #101828;
  452. color: rgb(255 255 255 /65%);
  453. }
  454. .dark .ant-table-expanded-row .ant-table-thead > tr:first-child > th {
  455. border-radius: 0;
  456. }
  457. .dark .ant-calendar,
  458. .dark .ant-card-bordered {
  459. border-color: #151f31;
  460. }
  461. .dark .ant-table-bordered,
  462. .dark .ant-table-bordered.ant-table-empty .ant-table-placeholder,
  463. .dark .ant-table-bordered .ant-table-body > table,
  464. .dark .ant-table-bordered .ant-table-fixed-left table,
  465. .dark .ant-table-bordered .ant-table-fixed-right table,
  466. .dark .ant-table-bordered .ant-table-header > table,
  467. .dark .ant-table-bordered .ant-table-thead > tr:not(:last-child) > th,
  468. .dark .ant-table-bordered .ant-table-tbody > tr > td,
  469. .dark .ant-table-bordered .ant-table-thead > tr > th {
  470. border-color: #2c3950;
  471. }
  472. .dark .ant-table-tbody > tr > td,
  473. .dark .ant-table-thead > tr > th,
  474. .dark .ant-card-head,
  475. .dark .ant-modal-header,
  476. .dark .ant-collapse > .ant-collapse-item,
  477. .dark .ant-tabs-bar,
  478. .dark .ant-list-split .ant-list-item,
  479. .dark .ant-popover-title,
  480. .dark .ant-calendar-header,
  481. .dark .ant-calendar-input-wrap {
  482. border-bottom-color: #2c3950;
  483. }
  484. .dark .ant-modal-footer,
  485. .dark .ant-collapse-content,
  486. .dark .ant-calendar-footer,
  487. .dark .ant-divider-horizontal.ant-divider-with-text-center:before,
  488. .dark .ant-divider-horizontal.ant-divider-with-text-center:after {
  489. border-top-color: #2c3950;
  490. }
  491. .dark .ant-progress-text,
  492. .dark .ant-card-head,
  493. .dark .ant-form,
  494. .dark .ant-collapse > .ant-collapse-item > .ant-collapse-header,
  495. .dark .ant-modal-close-x,
  496. .dark .ant-pagination-item a,
  497. .dark li:not(.ant-pagination-disabled) i,
  498. .dark .ant-form .anticon,
  499. .dark .ant-tabs-tab-arrow-show:not(.ant-tabs-tab-btn-disabled),
  500. .dark .anticon-close,
  501. .dark .ant-list-item-meta-title,
  502. .dark .ant-select-selection i,
  503. .dark .ant-modal-confirm-title,
  504. .dark .ant-modal-confirm-content,
  505. .dark .ant-popover-message,
  506. .dark .ant-modal,
  507. .dark .ant-divider-inner-text,
  508. .dark .ant-popover-title,
  509. .dark .ant-popover-inner-content,
  510. .dark h2,
  511. .dark .ant-modal-title,
  512. .dark .ant-form-item-label > label,
  513. .dark .ant-checkbox-wrapper,
  514. .dark .ant-form-item,
  515. .dark .ant-calendar-footer .ant-calendar-today-btn,
  516. .dark .ant-calendar-footer .ant-calendar-time-picker-btn,
  517. .dark .ant-calendar-day-select,
  518. .dark .ant-calendar-month-select,
  519. .dark .ant-calendar-year-select,
  520. .dark .ant-calendar-date,
  521. .dark .ant-calendar-year-panel-year,
  522. .dark .ant-calendar-month-panel-month,
  523. .dark .ant-calendar-decade-panel-decade {
  524. color: rgba(255, 255, 255, 0.65);
  525. }
  526. .dark .ant-list-item-meta-description {
  527. color: rgba(255, 255, 255, 0.45);
  528. }
  529. .dark .ant-pagination-disabled i,
  530. .dark .ant-tabs-tab-btn-disabled {
  531. color: rgba(255, 255, 255, 0.25);
  532. }
  533. .dark .ant-input,
  534. .dark .ant-input-group-addon,
  535. .dark .ant-collapse,
  536. .dark .ant-select-selection,
  537. .dark .ant-input-number,
  538. .dark .ant-input-number-handler-wrap,
  539. .dark .ant-pagination-item-active,
  540. .dark .ant-table-placeholder,
  541. .dark .ant-empty-normal,
  542. .dark.ant-select-dropdown,
  543. .dark .ant-select-dropdown,
  544. .dark .ant-select-dropdown li,
  545. .dark .ant-select-dropdown-menu-item,
  546. .dark .ant-divider:not(.ant-divider-with-text-center),
  547. .dark .ant-calendar-input,
  548. .dark .client-table-header,
  549. .dark .ant-select-selection--multiple .ant-select-selection__choice,
  550. .dark .ant-calendar-time-picker-inner {
  551. background-color: #222d42;
  552. border-color: #2c3950;
  553. color: rgba(255, 255, 255, 0.65);
  554. }
  555. .dark .ant-select-selection:hover,
  556. .dark .ant-calendar-picker-clear,
  557. .dark .ant-input-number:hover,
  558. .dark .ant-input-number:focus,
  559. .dark .ant-input:hover,
  560. .dark .ant-input:focus {
  561. background-color: rgba(0, 135, 113, 0.3);
  562. border-color: #008771;
  563. }
  564. .dark .ant-btn:not(.ant-btn-primary):not(.ant-btn-danger) {
  565. color: rgba(255, 255, 255, 0.65);
  566. background-color: rgb(10 117 87 / 30%);
  567. border: 1px solid #008771;
  568. }
  569. .dark .ant-radio-button-wrapper,
  570. .dark .ant-radio-button-wrapper:before {
  571. color: rgb(255 255 255 / 65%);
  572. background-color: rgba(0, 135, 113, 0.3);
  573. border-color: #008771;
  574. }
  575. .dark .ant-btn:focus:not(.ant-btn-primary):not(.ant-btn-danger),
  576. .dark .ant-btn:hover:not(.ant-btn-primary):not(.ant-btn-danger) {
  577. color: #fff;
  578. background-color: rgb(10 117 87 / 50%);
  579. border-color: #008771;
  580. }
  581. .dark .ant-btn-primary[disabled],
  582. .dark .ant-btn-danger[disabled],
  583. .dark .ant-calendar-ok-btn-disabled {
  584. color: rgb(255 255 255 / 35%);
  585. background-color: #2c3950;
  586. border-color: #42516c;
  587. }
  588. .dark
  589. .ant-table-tbody
  590. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  591. > td,
  592. .dark .client-table-odd-row {
  593. background-color: #00877122;
  594. }
  595. .dark .ant-table-row-expand-icon {
  596. color: #fff;
  597. background-color: #fff0;
  598. border-color: #9ea2a8;
  599. }
  600. .dark .ant-table-row-expand-icon:hover {
  601. color: #008771;
  602. background-color: #fff0;
  603. border-color: #008771;
  604. }
  605. .dark .ant-switch:not(.ant-switch-checked),
  606. .dark .ant-progress-line .ant-progress-inner {
  607. background-color: #2c3950;
  608. }
  609. .dark .ant-progress-circle-trail {
  610. stroke: #2c3950 !important;
  611. }
  612. .ant-dropdown-menu-dark,
  613. .dark .ant-popover-inner {
  614. background-color: #222d42;
  615. }
  616. .dark > .ant-popover-content > .ant-popover-arrow {
  617. border-color: #222d42;
  618. }
  619. .ant-dropdown-menu-dark .ant-dropdown-menu-item:hover,
  620. .dark .ant-select-dropdown-menu-item-selected,
  621. .dark .ant-select-dropdown-menu-item:hover,
  622. .dark .ant-calendar-time-picker-select-option-selected {
  623. background-color: #313f5a;
  624. }
  625. .ant-menu-dark .ant-menu-item:hover {
  626. background-color: #2c3950;
  627. }
  628. .dark .ant-alert-message {
  629. color: rgba(255, 255, 255, 0.85);
  630. }
  631. .dark .ant-tag {
  632. color: rgba(255, 255, 255, 0.65);
  633. background-color: #ffffff0a;
  634. border-color: #344461;
  635. }
  636. .dark .ant-tag-blue {
  637. background-color: #111a2c;
  638. border-color: #0f367e;
  639. color: #3c89e8;
  640. }
  641. .dark .ant-tag-red,
  642. .dark .ant-alert-error {
  643. background-color: #291515;
  644. border-color: #5c2626;
  645. color: #e04141;
  646. }
  647. .dark .ant-tag-orange,
  648. .dark .ant-alert-warning {
  649. background-color: #312313;
  650. border-color: #593914;
  651. color: #ffa031;
  652. }
  653. .dark .ant-tag-green {
  654. background-color: #112421;
  655. border-color: #144840;
  656. color: #33bca5;
  657. }
  658. .dark .ant-tag-purple {
  659. background-color: #2c1e32;
  660. border-color: #49394e;
  661. color: #cfb9cc;
  662. }
  663. .dark .ant-modal-content,
  664. .dark .ant-modal-header {
  665. background-color: #181f2c;
  666. }
  667. .dark .ant-calendar-next-month-btn-day .ant-calendar-date,
  668. .dark .ant-calendar-last-month-cell .ant-calendar-date {
  669. color: #2c3950;
  670. }
  671. .dark .ant-calendar-selected-day .ant-calendar-date {
  672. background-color: #008771 !important;
  673. color: #fff;
  674. }
  675. .dark .ant-calendar-date:hover,
  676. .dark .ant-calendar-time-picker-select li:hover {
  677. background-color: #313f5a;
  678. color: #fff;
  679. }
  680. .dark .ant-calendar-header a:hover,
  681. .dark .ant-calendar-header a:hover::before,
  682. .dark .ant-calendar-header a:hover::after {
  683. border-color: #fff;
  684. }
  685. .dark .ant-calendar-time-picker-select li:focus {
  686. color: #fff;
  687. font-weight: 600;
  688. outline: none;
  689. background-color: #008771;
  690. }
  691. .dark .ant-calendar-time-picker-select {
  692. border-right-color: #2c3950;
  693. }
  694. .has-warning .ant-input,
  695. .has-warning .ant-input:hover {
  696. background-color: #ffeee1;
  697. border-color: #fec093;
  698. }
  699. .has-warning .ant-input::placeholder {
  700. color: #f37b24;
  701. }
  702. .has-warning .ant-input:not([disabled]):hover {
  703. border-color: #fec093;
  704. }
  705. .ant-modal-confirm-confirm .ant-modal-confirm-body>.anticon, .ant-modal-confirm-warning .ant-modal-confirm-body>.anticon,
  706. .ant-alert-warning .ant-alert-icon,
  707. .has-warning.has-feedback .ant-form-item-children-icon {
  708. color: #f37b24;
  709. }
  710. .dark .has-warning .ant-input,
  711. .dark .has-warning .ant-input:hover {
  712. border-color: #784e1d;
  713. background: rgb(49, 35, 19);
  714. }
  715. .dark .has-warning .ant-input::placeholder {
  716. color: rgb(255 160 49 / 70%);
  717. }
  718. .dark .has-warning .anticon {
  719. color: #ffa031;
  720. }
  721. .dark .has-success .anticon {
  722. color: #61bf39;
  723. animation-name: diffZoomIn1 !important;
  724. }
  725. .dark .anticon-close-circle {
  726. color: #e04141;
  727. }
  728. .dark .ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  729. text-shadow: 0 1px 2px #00000077;
  730. }
  731. .dark .ant-spin {
  732. color: #fff;
  733. }
  734. .dark .ant-spin-dot-item {
  735. background-color: #fff;
  736. }
  737. .ant-menu,
  738. .ant-radio-button-wrapper {
  739. user-select: none;
  740. }
  741. .ant-calendar-date:hover {
  742. background-color: rgb(232 244 242);
  743. }
  744. .ant-calendar-date:active {
  745. background-color: rgb(232 244 242);
  746. color: rgba(0, 0, 0, 0.65);
  747. }
  748. .ant-calendar-today .ant-calendar-date {
  749. color: #008771;
  750. font-weight: 700;
  751. border-color: #008771;
  752. }
  753. .dark .ant-calendar-today .ant-calendar-date {
  754. color: #fff;
  755. font-weight: 700;
  756. border-color: #008771;
  757. }
  758. .ant-calendar-selected-day .ant-calendar-date {
  759. background: #008771;
  760. color: #ffffff;
  761. }
  762. li.ant-select-dropdown-menu-item:empty:after {
  763. content: "None";
  764. font-weight: normal;
  765. color: rgba(0, 0, 0, 0.25);
  766. }
  767. .dark li.ant-select-dropdown-menu-item:empty:after {
  768. content: "None";
  769. font-weight: normal;
  770. color: rgba(255, 255, 255, 0.3);
  771. }
  772. .ant-select-dropdown.ant-select-dropdown--multiple
  773. .ant-select-dropdown-menu-item:hover
  774. .ant-select-selected-icon {
  775. color: rgba(0, 0, 0, 0.87);
  776. }
  777. .dark.ant-select-dropdown.ant-select-dropdown--multiple
  778. .ant-select-dropdown-menu-item:hover
  779. .ant-select-selected-icon {
  780. color: rgb(255, 255, 255);
  781. }
  782. .ant-select-dropdown.ant-select-dropdown--multiple
  783. .ant-select-dropdown-menu-item-selected
  784. .ant-select-selected-icon,
  785. .ant-select-dropdown.ant-select-dropdown--multiple
  786. .ant-select-dropdown-menu-item-selected:hover
  787. .ant-select-selected-icon {
  788. color: #3c89e8;
  789. }
  790. .ant-select-selection:hover,
  791. .ant-input-number-focused,
  792. .ant-input-number:hover {
  793. background-color: rgb(232 244 242);
  794. }
  795. .dark .ant-input-number-handler:active {
  796. background-color: #008771;
  797. }
  798. .dark .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
  799. .dark .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  800. color: #fff;
  801. }
  802. .dark .ant-input-number-handler-down {
  803. border-top: 1px solid rgba(217, 217, 217, 0.3);
  804. }
  805. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
  806. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
  807. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select,
  808. .dark
  809. .ant-calendar-year-panel-header
  810. .ant-calendar-year-panel-year-select
  811. .dark
  812. .ant-calendar-month-panel-header
  813. .ant-calendar-month-panel-century-select,
  814. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
  815. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select,
  816. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select {
  817. color: rgba(255, 255, 255, 0.85);
  818. }
  819. .dark .ant-calendar-year-panel-header {
  820. border-bottom: 1px solid #222d42;
  821. }
  822. .dark .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
  823. .dark .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  824. color: rgba(255, 255, 255, 0.35);
  825. }
  826. .dark .ant-calendar-year-panel-year:hover,
  827. .dark .ant-calendar-month-panel-month:hover,
  828. .dark .ant-calendar-decade-panel-decade:hover {
  829. background-color: #222d42;
  830. }
  831. .dark .ant-calendar-header a:hover {
  832. color: #fff;
  833. }
  834. .dark .ant-calendar-month-panel-header {
  835. background-color: #101828;
  836. border-bottom: 1px solid #222d42;
  837. }
  838. .dark .ant-calendar-year-panel,
  839. .dark .ant-calendar table {
  840. background-color: #101828;
  841. }
  842. .dark .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year,
  843. .dark
  844. .ant-calendar-year-panel-selected-cell
  845. .ant-calendar-year-panel-year:hover,
  846. .dark .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month,
  847. .dark
  848. .ant-calendar-month-panel-selected-cell
  849. .ant-calendar-month-panel-month:hover,
  850. .dark
  851. .ant-calendar-decade-panel-selected-cell
  852. .ant-calendar-decade-panel-decade,
  853. .dark
  854. .ant-calendar-decade-panel-selected-cell
  855. .ant-calendar-decade-panel-decade:hover {
  856. color: #fff;
  857. background-color: #008771;
  858. }
  859. .dark .ant-calendar-last-month-cell .ant-calendar-date,
  860. .dark .ant-calendar-last-month-cell .ant-calendar-date:hover,
  861. .dark .ant-calendar-next-month-btn-day .ant-calendar-date,
  862. .dark .ant-calendar-next-month-btn-day .ant-calendar-date:hover {
  863. color: rgb(255 255 255 / 25%);
  864. background: transparent;
  865. border-color: transparent;
  866. }
  867. .dark .ant-calendar-today .ant-calendar-date:hover {
  868. color: #fff;
  869. border-color: #008771;
  870. background-color: #008771;
  871. }
  872. .dark
  873. .ant-calendar-decade-panel-last-century-cell
  874. .ant-calendar-decade-panel-decade,
  875. .dark
  876. .ant-calendar-decade-panel-next-century-cell
  877. .ant-calendar-decade-panel-decade {
  878. color: rgb(255 255 255 / 25%);
  879. }
  880. .dark .ant-calendar-decade-panel-header {
  881. border-bottom: 1px solid #222d42;
  882. background-color: #101828;
  883. }
  884. .dark .ant-checkbox-inner {
  885. background-color: rgba(0, 135, 113, 0.3);
  886. border-color: rgba(0, 135, 113, 0.3);
  887. }
  888. .dark .ant-checkbox-checked .ant-checkbox-inner {
  889. background-color: #008771;
  890. border-color: #008771;
  891. }
  892. .dark .ant-calendar-input {
  893. background-color: #101828;
  894. }
  895. .dark .ant-calendar-input::placeholder {
  896. color: rgba(255, 255, 255, 0.25);
  897. }
  898. .ant-input-number-handler-wrap {
  899. border-radius: 0;
  900. }
  901. .ant-input-number-handler {
  902. border-radius: 0;
  903. }
  904. .ant-input-number {
  905. overflow: clip;
  906. }
  907. .tag-of-wrap {
  908. text-wrap: pretty;
  909. overflow-wrap: anywhere;
  910. max-width: 200px;
  911. }
  912. .ant-modal-body {
  913. overflow-x: auto;
  914. }
  915. .ant-calendar-year-panel-year:hover,
  916. .ant-calendar-decade-panel-decade:hover,
  917. .ant-calendar-month-panel-month:hover,
  918. .ant-dropdown-menu-item:hover,
  919. .ant-dropdown-menu-submenu-title:hover,
  920. .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled),
  921. .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
  922. .ant-table-tbody
  923. > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(
  924. .ant-table-row-selected
  925. )
  926. > td,
  927. .ant-table-tbody
  928. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  929. > td,
  930. .ant-table-thead
  931. > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(
  932. .ant-table-row-selected
  933. )
  934. > td,
  935. .ant-table-thead
  936. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  937. > td {
  938. background-color: rgb(232 244 242);
  939. }
  940. .dark .ant-dropdown-menu-item:hover,
  941. .dark .ant-dropdown-menu-submenu-title:hover,
  942. .dark .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled),
  943. .dark .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) {
  944. background-color: #313f5a;
  945. }