Blame view

src/design/index.less 676 Bytes
1
@import 'transition/index.less';
陈文彬 authored
2
3
4
@import 'var/index.less';
@import 'public.less';
@import 'ant/index.less';
Vben authored
5
@import './theme.less';
陈文彬 authored
6
7
input:-webkit-autofill {
vben authored
8
  box-shadow: 0 0 0 1000px white inset !important;
9
10
11
12
13
14
}

:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}
vben authored
15
16
html {
  overflow: hidden;
vben authored
17
  text-size-adjust: 100%;
vben authored
18
19
}
陈文彬 authored
20
21
22
23
html,
body {
  width: 100%;
  height: 100%;
24
25
  overflow: visible;
  overflow-x: hidden;
陈文彬 authored
26
27
28
29
30
31
32
33
34
35
36

  &.color-weak {
    filter: invert(80%);
  }

  &.gray-mode {
    filter: grayscale(100%);
    filter: progid:dximagetransform.microsoft.basicimage(grayscale=1);
  }
}
vben authored
37
a:focus,
38
39
40
a:active,
button,
div,
41
svg,
42
span {
43
  outline: none;
vben authored
44
}