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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
.party-table{
height: calc(100% - 130px);
&.noAdd{
height: calc(100% - 100px);
}
.el-table__header-wrapper{
border-radius: 8px 8px 0 0 ;
.el-table__header{
tr,th{
background-color: @party-red;
color: @party-table-header-color;
font-size: 16px;
}
}
}
.el-table__body{
color: @font-color;
tr{
&:nth-child(even){
background-color: #FDFBF8;
}
}
}
}
.table-btn-group{
.el-button{
border: none;
padding: 0;
&.is-circle{
padding: 0;
background-color: transparent;
}
}
}
.icon-table{
display: inline-block;
width: 24px;
height: 24px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.icon-table-up{
display: inline-block;
width: 12px;
height: 24px;
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
.passed,
.rejected{
width: 80px;
height: 28px;
border-radius: 28px;
font-size: 16px;
&.is-disabled{
background: rgba(0,0,0,0.10);
color: #999999;
&:hover{
background: rgba(0,0,0,0.10);
color: #999999;
}
}
}
.passed{
background-color: #F4EDE3;
color: @party-btn-color;
&:hover{
background-color: #F4EDE3;
color: @party-btn-color;
}
}
.rejected{
background: rgba(155,30,35,0.10);
color: @party-red;
&:hover{
background: rgba(155,30,35,0.10);
color: @party-red;
}
}