vben
2021-08-24 9dd9fcd3348e1ddf0f943913fc435a630f780809
提交 | 用户 | age
116a1f 1 @import 'transition/index.less';
2f6253 2 @import 'var/index.less';
3 @import 'public.less';
4 @import 'ant/index.less';
5b8eb4 5 @import './theme.less';
2f6253 6
0b6110 7 input:-webkit-autofill {
V 8   -webkit-box-shadow: 0 0 0 1000px white inset !important;
9 }
10
11 :-webkit-autofill {
12   transition: background-color 5000s ease-in-out 0s !important;
13 }
14
a65ad9 15 html {
V 16   overflow: hidden;
aaae66 17   -webkit-text-size-adjust: 100%;
a65ad9 18 }
V 19
2f6253 20 html,
21 body {
22   width: 100%;
23   height: 100%;
8f332e 24   overflow: visible !important;
V 25   overflow-x: hidden !important;
2f6253 26
27   &.color-weak {
28     filter: invert(80%);
29   }
30
31   &.gray-mode {
32     filter: grayscale(100%);
33     filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
34   }
35 }
36
37 a:focus,
e3851d 38 a:active,
V 39 button,
40 div,
1418dc 41 svg,
e3851d 42 span {
V 43   outline: none !important;
2f6253 44 }