派生自 wuyushui/SewerAndRainNetwork

wangrui
2020-12-19 44280203af25006efc4b8939b4fc01477041e9b8
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
@import "./variable";
 
.blue {
  color: @color-text-regular;
  background-color: @color-white;
 
  // 定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸
  ::-webkit-scrollbar {
    width: 9px;
    height: 9px;
    background-color: #fff;
    border-left: 1px solid #e8e8e8;
  }
 
  // 定义滚动条轨道 内阴影+圆角
  ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 1px rgba(0, 0, 0, 0);
    border-radius: 5px;
    background-color: #ececec;
  }
 
  // 定义滑块 内阴影+圆角
  ::-webkit-scrollbar-thumb {
    border: 1px solid #fff;
    border-radius: 6px;
    background-color: #c9c9c9;
  }
 
  .vef-icon-danger {
    color: @color-red
  }
 
  .vef-icon-primary {
    color: @color-primary;
  }
 
  // 自定义dialog底部footer样式
  .vef-dialog-slot-footer {
    border-top: 1px solid #dbdbdb;
    background-color: #f5f5f5;
    text-align: right;
    padding: 10px 20px;
  }
 
  @import "./el-ui/table";
  @import "./el-ui/dialog";
  @import "./el-ui/input";
}