index.less 920 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. @import 'transition/index.less';
  2. @import 'var/index.less';
  3. @import 'public.less';
  4. @import 'ant/index.less';
  5. @import './theme.less';
  6. @import 'vent/index.less';
  7. input:-webkit-autofill,
  8. input:-webkit-autofill:hover,
  9. input:-webkit-autofill:focus,
  10. input:-webkit-autofill:active {
  11. -webkit-transition-delay: 99999s;
  12. -webkit-transition: color 99999s ease-out, background-color 99999s ease-out;
  13. }
  14. html {
  15. overflow: hidden;
  16. -webkit-text-size-adjust: 100%;
  17. }
  18. html,
  19. body {
  20. width: 100%;
  21. height: 100%;
  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. /* 【LOWCOD-2300】【vue3】online--online表单开发,下拉框位置靠下时,点开下拉框,整屏跳 */
  31. body {
  32. overflow: visible;
  33. overflow-x: hidden;
  34. }
  35. a:focus,
  36. a:active,
  37. button,
  38. div,
  39. svg,
  40. span {
  41. outline: none !important;
  42. }