index.less 725 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @import 'transition/index.less';
  2. @import 'var/index.less';
  3. @import 'public.less';
  4. @import 'ant/index.less';
  5. @import './theme.less';
  6. input:-webkit-autofill {
  7. -webkit-box-shadow: 0 0 0 1000px white inset !important;
  8. }
  9. :-webkit-autofill {
  10. transition: background-color 5000s ease-in-out 0s !important;
  11. }
  12. html {
  13. overflow: hidden;
  14. -webkit-text-size-adjust: 100%;
  15. }
  16. html,
  17. body {
  18. width: 100%;
  19. height: 100%;
  20. overflow: visible !important;
  21. overflow-x: hidden !important;
  22. &.color-weak {
  23. filter: invert(80%);
  24. }
  25. &.gray-mode {
  26. filter: grayscale(100%);
  27. filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  28. }
  29. }
  30. a:focus,
  31. a:active,
  32. button,
  33. div,
  34. svg,
  35. span {
  36. outline: none !important;
  37. }