custom.css 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074
  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: #fff6e6;
  697. border-color: #ffd98c;
  698. }
  699. .has-warning .ant-input::placeholder {
  700. color: #faad14;
  701. }
  702. .has-warning .ant-input:not([disabled]):hover {
  703. border-color: #ffd98c;
  704. }
  705. .dark .has-warning .ant-input,
  706. .dark .has-warning .ant-input:hover {
  707. border-color: #784e1d;
  708. background: rgb(49, 35, 19);
  709. }
  710. .dark .has-warning .ant-input::placeholder {
  711. color: rgb(255 160 49 / 70%);
  712. }
  713. .dark .has-warning .anticon {
  714. color: #ffa031;
  715. }
  716. .dark .has-success .anticon {
  717. color: #61bf39;
  718. animation-name: diffZoomIn1 !important;
  719. }
  720. .dark .anticon-close-circle {
  721. color: #e04141;
  722. }
  723. .dark .ant-spin-nested-loading > div > .ant-spin .ant-spin-text {
  724. text-shadow: 0 1px 2px #00000077;
  725. }
  726. .dark .ant-spin {
  727. color: #fff;
  728. }
  729. .dark .ant-spin-dot-item {
  730. background-color: #fff;
  731. }
  732. .ant-menu,
  733. .ant-radio-button-wrapper {
  734. user-select: none;
  735. }
  736. .ant-calendar-date:hover {
  737. background-color: rgb(232 244 242);
  738. }
  739. .ant-calendar-date:active {
  740. background-color: rgb(232 244 242);
  741. color: rgba(0, 0, 0, 0.65);
  742. }
  743. .ant-calendar-today .ant-calendar-date {
  744. color: #008771;
  745. font-weight: 700;
  746. border-color: #008771;
  747. }
  748. .dark .ant-calendar-today .ant-calendar-date {
  749. color: #fff;
  750. font-weight: 700;
  751. border-color: #008771;
  752. }
  753. .ant-calendar-selected-day .ant-calendar-date {
  754. background: #008771;
  755. color: #ffffff;
  756. }
  757. li.ant-select-dropdown-menu-item:empty:after {
  758. content: "None";
  759. font-weight: normal;
  760. color: rgba(0, 0, 0, 0.25);
  761. }
  762. .dark li.ant-select-dropdown-menu-item:empty:after {
  763. content: "None";
  764. font-weight: normal;
  765. color: rgba(255, 255, 255, 0.3);
  766. }
  767. .ant-select-dropdown.ant-select-dropdown--multiple
  768. .ant-select-dropdown-menu-item:hover
  769. .ant-select-selected-icon {
  770. color: rgba(0, 0, 0, 0.87);
  771. }
  772. .dark.ant-select-dropdown.ant-select-dropdown--multiple
  773. .ant-select-dropdown-menu-item:hover
  774. .ant-select-selected-icon {
  775. color: rgb(255, 255, 255);
  776. }
  777. .ant-select-dropdown.ant-select-dropdown--multiple
  778. .ant-select-dropdown-menu-item-selected
  779. .ant-select-selected-icon,
  780. .ant-select-dropdown.ant-select-dropdown--multiple
  781. .ant-select-dropdown-menu-item-selected:hover
  782. .ant-select-selected-icon {
  783. color: #3c89e8;
  784. }
  785. .ant-select-selection:hover,
  786. .ant-input-number-focused,
  787. .ant-input-number:hover {
  788. background-color: rgb(232 244 242);
  789. }
  790. .dark .ant-input-number-handler:active {
  791. background-color: #008771;
  792. }
  793. .dark .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
  794. .dark .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  795. color: #fff;
  796. }
  797. .dark .ant-input-number-handler-down {
  798. border-top: 1px solid rgba(217, 217, 217, 0.3);
  799. }
  800. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-century-select,
  801. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-decade-select,
  802. .dark .ant-calendar-year-panel-header .ant-calendar-year-panel-month-select,
  803. .dark
  804. .ant-calendar-year-panel-header
  805. .ant-calendar-year-panel-year-select
  806. .dark
  807. .ant-calendar-month-panel-header
  808. .ant-calendar-month-panel-century-select,
  809. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-decade-select,
  810. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-month-select,
  811. .dark .ant-calendar-month-panel-header .ant-calendar-month-panel-year-select {
  812. color: rgba(255, 255, 255, 0.85);
  813. }
  814. .dark .ant-calendar-year-panel-header {
  815. border-bottom: 1px solid #222d42;
  816. }
  817. .dark .ant-calendar-year-panel-last-decade-cell .ant-calendar-year-panel-year,
  818. .dark .ant-calendar-year-panel-next-decade-cell .ant-calendar-year-panel-year {
  819. color: rgba(255, 255, 255, 0.35);
  820. }
  821. .dark .ant-calendar-year-panel-year:hover,
  822. .dark .ant-calendar-month-panel-month:hover,
  823. .dark .ant-calendar-decade-panel-decade:hover {
  824. background-color: #222d42;
  825. }
  826. .dark .ant-calendar-header a:hover {
  827. color: #fff;
  828. }
  829. .dark .ant-calendar-month-panel-header {
  830. background-color: #101828;
  831. border-bottom: 1px solid #222d42;
  832. }
  833. .dark .ant-calendar-year-panel,
  834. .dark .ant-calendar table {
  835. background-color: #101828;
  836. }
  837. .dark .ant-calendar-year-panel-selected-cell .ant-calendar-year-panel-year,
  838. .dark
  839. .ant-calendar-year-panel-selected-cell
  840. .ant-calendar-year-panel-year:hover,
  841. .dark .ant-calendar-month-panel-selected-cell .ant-calendar-month-panel-month,
  842. .dark
  843. .ant-calendar-month-panel-selected-cell
  844. .ant-calendar-month-panel-month:hover,
  845. .dark
  846. .ant-calendar-decade-panel-selected-cell
  847. .ant-calendar-decade-panel-decade,
  848. .dark
  849. .ant-calendar-decade-panel-selected-cell
  850. .ant-calendar-decade-panel-decade:hover {
  851. color: #fff;
  852. background-color: #008771;
  853. }
  854. .dark .ant-calendar-last-month-cell .ant-calendar-date,
  855. .dark .ant-calendar-last-month-cell .ant-calendar-date:hover,
  856. .dark .ant-calendar-next-month-btn-day .ant-calendar-date,
  857. .dark .ant-calendar-next-month-btn-day .ant-calendar-date:hover {
  858. color: rgb(255 255 255 / 25%);
  859. background: transparent;
  860. border-color: transparent;
  861. }
  862. .dark .ant-calendar-today .ant-calendar-date:hover {
  863. color: #fff;
  864. border-color: #008771;
  865. background-color: #008771;
  866. }
  867. .dark
  868. .ant-calendar-decade-panel-last-century-cell
  869. .ant-calendar-decade-panel-decade,
  870. .dark
  871. .ant-calendar-decade-panel-next-century-cell
  872. .ant-calendar-decade-panel-decade {
  873. color: rgb(255 255 255 / 25%);
  874. }
  875. .dark .ant-calendar-decade-panel-header {
  876. border-bottom: 1px solid #222d42;
  877. background-color: #101828;
  878. }
  879. .dark .ant-checkbox-inner {
  880. background-color: rgba(0, 135, 113, 0.3);
  881. border-color: rgba(0, 135, 113, 0.3);
  882. }
  883. .dark .ant-checkbox-checked .ant-checkbox-inner {
  884. background-color: #008771;
  885. border-color: #008771;
  886. }
  887. .dark .ant-calendar-input {
  888. background-color: #101828;
  889. }
  890. .dark .ant-calendar-input::placeholder {
  891. color: rgba(255, 255, 255, 0.25);
  892. }
  893. .ant-input-number-handler-wrap {
  894. border-radius: 0;
  895. }
  896. .ant-input-number-handler {
  897. border-radius: 0;
  898. }
  899. .ant-input-number {
  900. overflow: clip;
  901. }
  902. .ant-calendar-year-panel-year:hover,
  903. .ant-calendar-decade-panel-decade:hover,
  904. .ant-calendar-month-panel-month:hover,
  905. .ant-dropdown-menu-item:hover,
  906. .ant-dropdown-menu-submenu-title:hover,
  907. .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled),
  908. .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled),
  909. .ant-table-tbody
  910. > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(
  911. .ant-table-row-selected
  912. )
  913. > td,
  914. .ant-table-tbody
  915. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  916. > td,
  917. .ant-table-thead
  918. > tr.ant-table-row-hover:not(.ant-table-expanded-row):not(
  919. .ant-table-row-selected
  920. )
  921. > td,
  922. .ant-table-thead
  923. > tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
  924. > td {
  925. background-color: rgb(232 244 242);
  926. }
  927. .dark .ant-dropdown-menu-item:hover,
  928. .dark .ant-dropdown-menu-submenu-title:hover,
  929. .dark .ant-select-dropdown-menu-item-active:not(.ant-select-dropdown-menu-item-disabled),
  930. .dark .ant-select-dropdown-menu-item:hover:not(.ant-select-dropdown-menu-item-disabled) {
  931. background-color: #313f5a;
  932. }