index.module.less
836 Bytes
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
@prefix-cls: ~'qx-flow-version';
.@{prefix-cls} {
width: auto;
height: 24px;
display: inline-flex;
align-items: center;
justify-content: center;
padding: 0 8px;
font-size: 14px;
font-weight: 400;
color: @N9;
background-color: @N3;
border-radius: 4px;
border: 1px solid @N3;
&.operational {
cursor: pointer;
&:hover {
color: @B8;
border-color: @B8;
}
}
&.published {
color: #00b42a;
background-color: #e8ffea;
border-color: #e8ffea;
&.operational:hover {
color: #00b42a;
background-color: #aff0b5;
border-color: #e8ffea;
}
}
&.edit {
color: #ff7d00;
background-color: #fff7e8;
border-color: #e8ffea;
&.operational:hover {
color: #ff7d00;
background-color: #ffe4ba;
border-color: #ffe4ba;
}
}
}