index.less 861 B

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