Blame view

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

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

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

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

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