aaa
doum
2026-06-08 3ac279c9df7181c9f21d35a689a321b990b87b22
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
@import "variables.scss";
// 样式重置
html {
  height: 100%;
  padding: 0;
  margin: 0;
  color: $font-color;
  font-family: 'Avenir', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  body {
    height: 100%;
    padding: 0;
    margin: 0;
  }
  h1,h2,h3,h4,h5,h6,ul {
    margin: 0;
    padding: 0;
  }
  ul {
    list-style: none;
  }
  #app {
    height: 100%;
    min-width: $page-min-width;
  }
}
 
// 穿梭框的按钮
.el-transfer__buttons {
  padding: 0 16px !important;
}
 
// 删除按钮统一样式
.el-button.btn-delete.el-button--text,
.el-button.el-button--text:has(.el-icon-delete) {
  color: $danger-color;
 
  &:hover,
  &:focus {
    color: $danger-color-hover;
  }
 
  &:active {
    color: $danger-color-active;
  }
}
 
.el-button:not(.el-button--text):not(.el-button--danger):has(.el-icon-delete) {
  color: #fff;
  background-color: $danger-color;
  border-color: $danger-color;
 
  &:hover,
  &:focus {
    color: #fff;
    background-color: $danger-color-hover;
    border-color: $danger-color-hover;
  }
 
  &:active {
    color: #fff;
    background-color: $danger-color-active;
    border-color: $danger-color-active;
  }
}