songshankun
2023-10-17 af2b318da9d4c51b5b8afb2f4cefe86ff049bc7c
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
// element 样式补丁
.el-dialog__header {
  padding: 12.5px 10px;
  border-bottom: 1px solid #e5e5e5;
  .el-dialog__title {
    font-size: 15px;
    color: #323232;
    font-weight: bold;
  }
}
.el-dialog__body {
  padding: 0px;
}
.el-dialog__footer {
  height: 55px;
  line-height: 55px;
  background-color: #f5f5f5;
  padding: 0px;
  text-align: center;
  box-sizing: border-box;
  border-top: 1px solid #dadee5;
}
.product-view {
  .el-form-item__label {
    padding: 0;
  }
}
 
::-webkit-scrollbar {
  width: 8px !important;
  height: 8px !important;
  -webkit-appearance: none;
  background-color: #00000040;
}
::-webkit-scrollbar-thumb {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  background: #e1e1e1;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  // border-radius: 10px;
  background: #ffffff;
  // background:#2c60c5;
}
 
.el-button--primary {
  color: #fff;
  background-color: $color-primary !important;
  border-color: $color-primary !important;
}
 
.el-pagination.is-background .el-pager li:not(.disabled).active {
  background: $color-primary !important;
}
 
.el-button--text {
  //color: #2a78fb !important;
}
.el-button--text.is-disabled {
  color: #7c7f85 !important;
}
.el-button--primary {
  color: #fff;
  background-color: #2a78fb !important;
  border-color: #2a78fb !important;
}