1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
| @import 'transition/index.less';
| @import 'var/index.less';
| @import 'public.less';
| @import 'ant/index.less';
| @import './theme.less';
|
| input:-webkit-autofill {
| -webkit-box-shadow: 0 0 0 1000px white inset !important;
| }
|
| :-webkit-autofill {
| transition: background-color 5000s ease-in-out 0s !important;
| }
|
| html {
| overflow: hidden;
| -webkit-text-size-adjust: 100%;
| }
|
| html,
| body {
| width: 100%;
| height: 100%;
|
| &.color-weak {
| filter: invert(80%);
| }
|
| &.gray-mode {
| filter: grayscale(100%);
| filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
| }
| }
|
| /* 【LOWCOD-2300】【vue3】online--online表单开发,下拉框位置靠下时,点开下拉框,整屏跳 */
| body {
| overflow: visible;
| overflow-x: hidden;
| }
|
| a:focus,
| a:active,
| button,
| div,
| svg,
| span {
| outline: none !important;
| }
|
|