派生自 wuyushui/SewerAndRainNetwork

wangrui
2020-12-14 0d7669f8bf28300362fc0dacd5c794ff823d0297
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
.el-button--primary{
    color: @dark--text-base;
    background-color: @dark--button-primary-background-color;
    border-color: @dark--primary-color;
}
 
.el-button--primary:hover, .el-button--primary:focus{
    background: rgb(51, 163, 182);
    border-color: rgb(81, 229, 253);
    color: @dark--title-color;
}
 
.el-button--primary:active{
    background: rgb(0, 126, 148);
    border-color: rgb(34, 200, 228);
    color: @dark--title-color;
    outline: none;
}
 
.el-button--primary.is-active{
    background: rgb(0, 126, 148);
    border-color: rgb(34, 200, 228);
    color: @dark--title-color;
}
 
.el-button--primary.is-plain{
    background: transparent;
    border: 1px solid #198CA7;
    color: rgb(31, 45, 61);
}
 
.el-button--primary.is-plain:hover, .el-button--primary.is-plain:focus{
    background: transparent;
    border-color: @dark--primary-color;
    color: @dark--button-primary-background-color;
}
 
.el-button--primary.is-plain:active{
    background: transparent;
    border-color: rgb(34, 200, 228);
    color: rgb(0, 126, 148);
    outline: none;
}
.el-button--default{
  background: transparent;
  color: @dark--text-base;
  border: 1px solid @dark--primary-color;
}
.el-button--default:hover{
  background: transparent;
  border-color: #0f93a9;
  color: @dark--title-color;
}
.el-button--default:active{
    border-color: #0f93a9;
    color: @dark--title-color;
    outline: none;
}
.el-button--default.is-active{
    border-color: #0f93a9;
    color: @dark--title-color;
}