theme.less 817 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. }
  9. html[data-theme='dark'] {
  10. .text-secondary {
  11. color: #8b949e;
  12. }
  13. .ant-card-grid-hoverable:hover {
  14. box-shadow: 0 3px 6px -4px rgb(0 0 0 / 48%), 0 6px 16px 0 rgb(0 0 0 / 32%),
  15. 0 9px 28px 8px rgb(0 0 0 / 20%);
  16. }
  17. .ant-card-grid {
  18. box-shadow: 1px 0 0 0 #434343, 0 1px 0 0 #434343, 1px 1px 0 0 #434343, 1px 0 0 0 #434343 inset,
  19. 0 1px 0 0 #434343 inset;
  20. }
  21. html[data-theme='light'] {
  22. .ant-alert-message,
  23. .ant-alert-with-description .ant-alert-message,
  24. .ant-alert-description {
  25. color: rgba(0, 0, 0, 0.85);
  26. }
  27. }
  28. .ant-checkbox-checked .ant-checkbox-inner::after {
  29. border-top: 0;
  30. border-left: 0;
  31. }
  32. }