liuya6
2022-06-24 0902de7504be503e29fc0b9bad431b02cb76b59e
提交 | 用户 | 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 {
acea18 8   box-shadow: 0 0 0 1000px white inset !important;
0b6110 9 }
V 10
11 :-webkit-autofill {
12   transition: background-color 5000s ease-in-out 0s !important;
13 }
14
a65ad9 15 html {
V 16   overflow: hidden;
acea18 17   text-size-adjust: 100%;
a65ad9 18 }
V 19
2f6253 20 html,
21 body {
22   width: 100%;
23   height: 100%;
8f332e 24   overflow: visible !important;
0902de 25   //overflow-x: hidden !important; // 这个会导致tinymce富文本,下拉菜单错位!!!
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 }