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
| @import (reference) 'dingtalk-theme/dingtalk-x/mob.less';
|
| .myStep {
| &-item {
| display: flex;
| position: relative;
|
| &::before {
| content: '';
| position: absolute;
| width: 1px;
| height: 100%;
| top: 0;
| left: 8px;
| background-color: @common_line_light_color;
| }
|
| &-icon {
| height: 18px;
| width: 18px;
| display: flex;
| align-items: center;
| justify-content: center;
| background-color: @theme_primary1_color;
| border-radius: 50%;
| margin-top: 2px;
| margin-right: 8px;
| }
|
| &-content {
| flex: 1;
| padding-bottom: 12px;
|
| &-title {
| font-weight: 600;
| }
|
| &-subtitle {
| font-size: 12px;
| line-height: 20px;
| color: @common_level2_base_color;
| display: flex;
| }
| }
|
| &-green {
| color: @common_green1_color;
| }
|
| &-orange {
| color: @common_orange1_color;
| }
|
| &-red {
| color: @common_red1_active_color;
| }
| }
|
| &-item:last-child {
| &::before {
| display: none;
| }
| }
| }
|
|