blob: aca14585e2d53f48dc69078f1989ff985f7f3ae8 (
plain)
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
|
.title {
font: 700 18px/18px "思源黑体";
color: #4c5e70;
margin-bottom: 18px;
}
hr {
border: none;
height: 2px;
background-color: #dce1e7;
margin-bottom: 20px;
}
.switch_btn {
position: absolute;
right: 6%;
top: 18px;
border: 1px solid #3fa8eb;
width: 8%;
border-radius: 10px;
margin-bottom: 18px;
span {
display: block;
float: left;
text-align: center;
width: 50%;
color: #3fa8eb;
font-weight: 700;
cursor: pointer;
}
span:first-child {
border-radius: 10px 0 0 10px;
}
span:last-child {
border-radius: 0 10px 10px 0;
}
span.left_b {
border-left: 1px solid #3fa8eb;
}
span.active {
color: #fff;
background: #3fa8eb;
}
}
.list {
background-color: #fff;
border-radius: 5px;
padding: 10px;
nz-table {
tbody {
td {
span.onboarding {
font-size: 12px;
color: #147dc2;
}
span.onboarded {
font-size: 14px;
color: #147dc2;
}
span.updating {
font-size: 12px;
color: blue;
}
span.deleting {
font-size: 12px;
color: red;
}
span.invalid {
font-size: 14px;
color: purple;
}
i.anticon {
cursor: pointer;
font-size: 18px;
padding: 2px;
&:hover{
color: #147dc2;
}
}
.cannotclick {
pointer-events: none;
color: #aaa;
opacity: 0.6;
}
.fileIcon{
display: none;
}
}
}
}
}
.mask {
top: 0;
left: 0;
position: fixed;
width: 100%;
height: 100%;
opacity: 0.1;
background: black;
z-index: 1049;
}
|