theme.less 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. .bg-white {
  2. background-color: @component-background !important;
  3. }
  4. html[data-theme='light'] {
  5. .text-secondary {
  6. color: rgba(0, 0, 0, 0.45);
  7. }
  8. .ant-alert-success {
  9. background-color: #f6ffed;
  10. border: 1px solid #b7eb8f;
  11. }
  12. .ant-alert-error {
  13. background-color: #fff2f0;
  14. border: 1px solid #ffccc7;
  15. }
  16. .ant-alert-warning {
  17. background-color: #fffbe6;
  18. border: 1px solid #ffe58f;
  19. }
  20. }
  21. [data-theme='dark'] {
  22. .text-secondary {
  23. color: #8b949e;
  24. }
  25. .ant-card-grid-hoverable:hover {
  26. box-shadow: 0 3px 6px -4px rgb(0 0 0 / 48%), 0 6px 16px 0 rgb(0 0 0 / 32%),
  27. 0 9px 28px 8px rgb(0 0 0 / 20%);
  28. }
  29. .ant-card-grid {
  30. box-shadow: 1px 0 0 0 #434343, 0 1px 0 0 #434343, 1px 1px 0 0 #434343, 1px 0 0 0 #434343 inset,
  31. 0 1px 0 0 #434343 inset;
  32. }
  33. .ant-calendar-selected-day .ant-calendar-date {
  34. color: rgba(0, 0, 0, 0.8);
  35. }
  36. .ant-select-tree li .ant-select-tree-node-content-wrapper.ant-select-tree-node-selected {
  37. color: rgba(0, 0, 0, 0.9);
  38. }
  39. }