index.less 830 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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. &.color-weak {
  21. filter: invert(80%);
  22. }
  23. &.gray-mode {
  24. filter: grayscale(100%);
  25. filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  26. }
  27. }
  28. /* 【LOWCOD-2300】【vue3】online--online表单开发,下拉框位置靠下时,点开下拉框,整屏跳 */
  29. body {
  30. overflow: visible;
  31. overflow-x: hidden;
  32. }
  33. a:focus,
  34. a:active,
  35. button,
  36. div,
  37. svg,
  38. span {
  39. outline: none !important;
  40. }