Blame view

src/design/index.less 849 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';
vben authored
6
@import './entry.css';
7
@import './dark.less';
陈文彬 authored
8
9
input:-webkit-autofill {
vben authored
10
  box-shadow: 0 0 0 1000px white inset !important;
11
12
13
14
15
16
}

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

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

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

// 保持 和 windi 一样的全局样式,减少升级带来的影响
ul {
  margin: 0;
  padding: 0;
52
  list-style: none;
53
}