@douyinfe/semi-foundation 2.35.0 → 2.36.0-alpha.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/datePicker/datePicker.scss +0 -1
- package/lib/cjs/datePicker/datePicker.css +0 -1
- package/lib/cjs/datePicker/datePicker.scss +0 -1
- package/lib/cjs/navigation/itemFoundation.d.ts +2 -0
- package/lib/cjs/navigation/navigation.css +77 -7
- package/lib/cjs/navigation/navigation.scss +119 -7
- package/lib/cjs/navigation/subNavFoundation.d.ts +2 -0
- package/lib/cjs/steps/bacisSteps.scss +287 -238
- package/lib/cjs/steps/fillSteps.scss +153 -142
- package/lib/cjs/steps/navSteps.scss +61 -40
- package/lib/cjs/steps/steps.css +381 -17
- package/lib/cjs/timeline/timeline.css +36 -0
- package/lib/cjs/timeline/timeline.scss +96 -46
- package/lib/es/datePicker/datePicker.css +0 -1
- package/lib/es/datePicker/datePicker.scss +0 -1
- package/lib/es/navigation/itemFoundation.d.ts +2 -0
- package/lib/es/navigation/navigation.css +77 -7
- package/lib/es/navigation/navigation.scss +119 -7
- package/lib/es/navigation/subNavFoundation.d.ts +2 -0
- package/lib/es/steps/bacisSteps.scss +287 -238
- package/lib/es/steps/fillSteps.scss +153 -142
- package/lib/es/steps/navSteps.scss +61 -40
- package/lib/es/steps/steps.css +381 -17
- package/lib/es/timeline/timeline.css +36 -0
- package/lib/es/timeline/timeline.scss +96 -46
- package/navigation/itemFoundation.ts +3 -1
- package/navigation/navigation.scss +119 -7
- package/navigation/subNavFoundation.ts +3 -1
- package/package.json +2 -2
- package/steps/bacisSteps.scss +287 -238
- package/steps/fillSteps.scss +153 -142
- package/steps/navSteps.scss +61 -40
- package/timeline/timeline.scss +96 -46
|
@@ -2,351 +2,400 @@ $module: #{$prefix}-steps;
|
|
|
2
2
|
$item: #{$module}-item;
|
|
3
3
|
$basicType: #{$module}-basic;
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
@mixin basic-horizontal {
|
|
6
|
+
display: flex;
|
|
7
|
+
flex-flow: row nowrap;
|
|
8
|
+
column-gap: $spacing-steps_basic_item-paddingLeft;
|
|
9
|
+
}
|
|
6
10
|
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
@mixin basic-horizontal-hasline {
|
|
12
|
+
&.#{$module}-hasline {
|
|
13
|
+
.#{$item}-title {
|
|
10
14
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
}
|
|
15
|
+
&::after {
|
|
16
|
+
content: "";
|
|
17
|
+
position: absolute;
|
|
18
|
+
top: 50%;
|
|
19
|
+
left: 100%;
|
|
20
|
+
display: block;
|
|
21
|
+
width: $width-steps_title_after;
|
|
22
|
+
height: $height-steps_title_after;
|
|
23
|
+
background: $color-steps_title_after-bg;
|
|
21
24
|
}
|
|
22
25
|
}
|
|
26
|
+
}
|
|
27
|
+
}
|
|
23
28
|
|
|
24
|
-
|
|
25
|
-
flex-flow: row nowrap;
|
|
29
|
+
@mixin basic-horizontal-item {
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
|
|
31
|
+
&:last-child {
|
|
32
|
+
flex: none;
|
|
29
33
|
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
34
|
+
.#{$item}-title {
|
|
35
|
+
max-width: 100%;
|
|
36
|
+
padding-right: 0;
|
|
33
37
|
|
|
34
|
-
|
|
35
|
-
|
|
38
|
+
&::after {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
36
43
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
44
|
+
// done 只和后面的竖线的颜色有关系
|
|
45
|
+
&-done {
|
|
46
|
+
.#{$item}-container {
|
|
47
|
+
.#{$item}-title {
|
|
40
48
|
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
}
|
|
49
|
+
&::after {
|
|
50
|
+
background: $color-steps_item_done_after-bg;
|
|
44
51
|
}
|
|
45
52
|
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
46
55
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
56
|
+
.#{$item}-content {
|
|
57
|
+
flex: 1;
|
|
58
|
+
}
|
|
50
59
|
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
60
|
+
.#{$item}-description {
|
|
61
|
+
@include font-size-small;
|
|
62
|
+
color: $color-steps_minor-text-default;
|
|
63
|
+
width: $width-steps_basic_item_description;
|
|
64
|
+
max-width: $width-steps_basic_item_description-maxWidth;
|
|
65
|
+
@include text-overflow-hidden;
|
|
66
|
+
}
|
|
57
67
|
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
68
|
+
.#{$item}-title {
|
|
69
|
+
max-width: $width-steps_basic_item_title-maxWidth;
|
|
70
|
+
|
|
71
|
+
.#{$item}-title-text {
|
|
72
|
+
@include text-overflow-hidden;
|
|
73
|
+
transition: color $transition_duration-steps_item_title-text $transition_function-steps_item_title-text $transition_delay-steps_item_title-text
|
|
74
|
+
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
}
|
|
61
78
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
@include text-overflow-hidden;
|
|
68
|
-
}
|
|
79
|
+
@mixin basic-vertical {
|
|
80
|
+
display: flex;
|
|
81
|
+
flex-flow: column nowrap;
|
|
82
|
+
row-gap: $spacing-steps_basic_vertical_item-paddingTop;
|
|
83
|
+
}
|
|
69
84
|
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
85
|
+
@mixin basic-vertical-hasline {
|
|
86
|
+
&.#{$module}-hasline {
|
|
87
|
+
.#{$item}-icon {
|
|
88
|
+
|
|
89
|
+
&::after {
|
|
90
|
+
content: "";
|
|
91
|
+
position: absolute;
|
|
92
|
+
top: 100%;
|
|
93
|
+
left: 50%;
|
|
94
|
+
display: block;
|
|
95
|
+
width: $width-steps_vertical_icon_after;
|
|
96
|
+
height: $height-steps_vertical_icon_after;
|
|
97
|
+
background: $color-steps_icon_after-bg;
|
|
78
98
|
}
|
|
79
|
-
|
|
80
99
|
}
|
|
81
100
|
}
|
|
101
|
+
}
|
|
82
102
|
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
103
|
+
@mixin basic-vertical-small {
|
|
104
|
+
.#{$item}-content {
|
|
105
|
+
min-height: $height-steps_basic_vertical_small_item_content-minHeight;
|
|
106
|
+
}
|
|
107
|
+
}
|
|
86
108
|
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
109
|
+
@mixin basic-vertical-item {
|
|
110
|
+
&:last-child {
|
|
111
|
+
.#{$item}-icon {
|
|
112
|
+
|
|
113
|
+
&::after {
|
|
114
|
+
display: none;
|
|
92
115
|
}
|
|
93
116
|
}
|
|
117
|
+
}
|
|
94
118
|
|
|
95
|
-
|
|
96
|
-
|
|
119
|
+
&-done {
|
|
120
|
+
.#{$item}-icon {
|
|
97
121
|
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
position: absolute;
|
|
101
|
-
top: 100%;
|
|
102
|
-
left: 50%;
|
|
103
|
-
display: block;
|
|
104
|
-
width: $width-steps_vertical_icon_after;
|
|
105
|
-
height: $height-steps_vertical_icon_after;
|
|
106
|
-
background: $color-steps_icon_after-bg;
|
|
107
|
-
}
|
|
122
|
+
&::after {
|
|
123
|
+
background: $color-steps_item_done_icon_after-bg;
|
|
108
124
|
}
|
|
109
125
|
}
|
|
126
|
+
}
|
|
110
127
|
|
|
111
|
-
|
|
112
|
-
|
|
128
|
+
.#{$item}-content {
|
|
129
|
+
min-height: $height-steps_basic_vertical_icon_content-minHeight;
|
|
130
|
+
padding-bottom: $spacing-steps_basic_vertical_item_content-paddingBottom;
|
|
131
|
+
}
|
|
113
132
|
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
133
|
+
.#{$item}-icon {
|
|
134
|
+
display: inline-flex;
|
|
135
|
+
position: relative;
|
|
136
|
+
padding-bottom: $spacing-steps_basic_vertical_item_icon-paddingBottom;
|
|
137
|
+
}
|
|
117
138
|
|
|
118
|
-
|
|
119
|
-
|
|
139
|
+
.#{$item}-description {
|
|
140
|
+
@include font-size-small;
|
|
141
|
+
color: $color-steps_minor-text-default;
|
|
142
|
+
width: $width-steps_basic_vertical_item_description;
|
|
143
|
+
}
|
|
120
144
|
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
}
|
|
124
|
-
}
|
|
125
|
-
}
|
|
145
|
+
.#{$item}-title {
|
|
146
|
+
max-width: $width-steps_basic_vertical_item_title-maxWidth;
|
|
126
147
|
|
|
127
|
-
|
|
128
|
-
|
|
148
|
+
.#{$item}-title-text {
|
|
149
|
+
@include text-overflow-hidden;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
129
153
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
154
|
+
@mixin basic-item {
|
|
155
|
+
@include box-sizing;
|
|
156
|
+
position: relative;
|
|
157
|
+
display: inline-block;
|
|
158
|
+
vertical-align: top;
|
|
159
|
+
overflow: hidden;
|
|
160
|
+
flex: 1;
|
|
161
|
+
cursor: pointer;
|
|
162
|
+
transition: color $transition_duration-steps_item_title-text $transition_function-steps_item_title-text $transition_delay-steps_item_title-text, //step文字color的transition变化
|
|
163
|
+
background-color $transition_duration-steps_item-backgroundColor $transition_function-steps_item_backgroundColor $transition_delay-steps_item_backgroundColor; //step backgroundColor 的transition变化
|
|
164
|
+
|
|
165
|
+
transform:scale($transform_scale-step-item);
|
|
166
|
+
|
|
167
|
+
&-hover:hover {
|
|
135
168
|
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
}
|
|
169
|
+
.#{$item}-title {
|
|
170
|
+
color: $color-steps_item_title-text-hover;
|
|
171
|
+
}
|
|
140
172
|
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
}
|
|
173
|
+
.#{$item}-description {
|
|
174
|
+
color: $color-steps_item_description-text-hover;
|
|
175
|
+
}
|
|
176
|
+
}
|
|
146
177
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
178
|
+
.#{$item}-container {
|
|
179
|
+
display: flex;
|
|
180
|
+
align-items: flex-start;
|
|
181
|
+
}
|
|
182
|
+
.#{$item}-left {
|
|
183
|
+
display: flex;
|
|
184
|
+
justify-content: center;
|
|
185
|
+
align-items: center;
|
|
186
|
+
margin-right: $spacing-steps_basic_item_left-marginRight;
|
|
187
|
+
|
|
152
188
|
|
|
153
|
-
|
|
154
|
-
|
|
189
|
+
.#{$item}-icon {
|
|
190
|
+
display: flex;
|
|
191
|
+
height: $height-steps_basic_item_left-icon;
|
|
192
|
+
align-items: center;
|
|
193
|
+
}
|
|
155
194
|
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
195
|
+
.#{$item}-number-icon {
|
|
196
|
+
display: inline-flex;
|
|
197
|
+
align-items: center;
|
|
198
|
+
justify-content: center;
|
|
199
|
+
width: $width-steps_basic_item_left_number-icon;
|
|
200
|
+
height: $height-steps_basic_item_left_number-icon;
|
|
201
|
+
@include font-size-header-6;
|
|
202
|
+
font-weight: $font-steps_basic_item_left_number_icon-fontWeight;
|
|
203
|
+
background: $color-steps_item_left_number_icon-bg;
|
|
204
|
+
border-radius: $radius-steps_basic_item_left_number_icon;
|
|
205
|
+
color: $color-steps_item_left_number_icon-icon;
|
|
206
|
+
transition: color $transition_duration-steps_item_title-icon $transition_function-steps_item_title-icon $transition_delay-steps_item_title-icon; //step icon color的transition变化
|
|
160
207
|
}
|
|
161
208
|
}
|
|
162
209
|
|
|
163
|
-
|
|
164
|
-
|
|
210
|
+
|
|
211
|
+
.#{$item}-title {
|
|
165
212
|
position: relative;
|
|
166
213
|
display: inline-block;
|
|
214
|
+
@include font-size-header-6;
|
|
215
|
+
line-height: $font-steps_basic_item_title-lineHeight;
|
|
216
|
+
font-weight: $font-steps_basic_item_title-fontWeight;
|
|
217
|
+
color: $color-steps_main-text-default;
|
|
167
218
|
vertical-align: top;
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
background-color $transition_duration-steps_item-backgroundColor $transition_function-steps_item_backgroundColor $transition_delay-steps_item_backgroundColor; //step backgroundColor 的transition变化
|
|
173
|
-
|
|
174
|
-
transform:scale($transform_scale-step-item);
|
|
175
|
-
|
|
176
|
-
&-hover:hover {
|
|
177
|
-
|
|
178
|
-
.#{$item}-title {
|
|
179
|
-
color: $color-steps_item_title-text-hover;
|
|
180
|
-
}
|
|
219
|
+
padding-right: $spacing-steps_basic_item_title-paddingRight;
|
|
220
|
+
padding-bottom: $spacing-steps_basic_item_title-paddingBottom;
|
|
221
|
+
transition: color $transition_duration-steps_item_title-text $transition_function-steps_item_title-text $transition_delay-steps_item_title-text; //step文字color的transition变化
|
|
222
|
+
}
|
|
181
223
|
|
|
182
|
-
|
|
183
|
-
color: $color-steps_item_description-text-hover;
|
|
184
|
-
}
|
|
185
|
-
}
|
|
224
|
+
// 完成状态的样式
|
|
186
225
|
|
|
187
|
-
|
|
188
|
-
display: flex;
|
|
189
|
-
align-items: flex-start;
|
|
190
|
-
}
|
|
226
|
+
&-finish {
|
|
191
227
|
.#{$item}-left {
|
|
192
|
-
display: flex;
|
|
193
|
-
justify-content: center;
|
|
194
|
-
align-items: center;
|
|
195
|
-
margin-right: $spacing-steps_basic_item_left-marginRight;
|
|
196
|
-
|
|
197
228
|
|
|
198
229
|
.#{$item}-icon {
|
|
199
|
-
|
|
200
|
-
height: $height-steps_basic_item_left-icon;
|
|
201
|
-
align-items: center;
|
|
202
|
-
}
|
|
230
|
+
color: $color-steps_item_finish-icon;
|
|
203
231
|
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
justify-content: center;
|
|
208
|
-
width: $width-steps_basic_item_left_number-icon;
|
|
209
|
-
height: $height-steps_basic_item_left_number-icon;
|
|
210
|
-
@include font-size-header-6;
|
|
211
|
-
font-weight: $font-steps_basic_item_left_number_icon-fontWeight;
|
|
212
|
-
background: $color-steps_item_left_number_icon-bg;
|
|
213
|
-
border-radius: $radius-steps_basic_item_left_number_icon;
|
|
214
|
-
color: $color-steps_item_left_number_icon-icon;
|
|
215
|
-
transition: color $transition_duration-steps_item_title-icon $transition_function-steps_item_title-icon $transition_delay-steps_item_title-icon; //step icon color的transition变化
|
|
232
|
+
.#{$item}-number-icon {
|
|
233
|
+
color: $color-steps_item_finish_number-icon;
|
|
234
|
+
}
|
|
216
235
|
}
|
|
217
236
|
}
|
|
237
|
+
}
|
|
218
238
|
|
|
239
|
+
// 等待状态的样式
|
|
219
240
|
|
|
241
|
+
&-wait {
|
|
220
242
|
.#{$item}-title {
|
|
221
|
-
|
|
222
|
-
display: inline-block;
|
|
223
|
-
@include font-size-header-6;
|
|
224
|
-
line-height: $font-steps_basic_item_title-lineHeight;
|
|
225
|
-
font-weight: $font-steps_basic_item_title-fontWeight;
|
|
226
|
-
color: $color-steps_main-text-default;
|
|
227
|
-
vertical-align: top;
|
|
228
|
-
padding-right: $spacing-steps_basic_item_title-paddingRight;
|
|
229
|
-
padding-bottom: $spacing-steps_basic_item_title-paddingBottom;
|
|
230
|
-
transition: color $transition_duration-steps_item_title-text $transition_function-steps_item_title-text $transition_delay-steps_item_title-text; //step文字color的transition变化
|
|
231
|
-
|
|
243
|
+
color: $color-steps_item_wait_title-text;
|
|
232
244
|
}
|
|
233
245
|
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
&-finish {
|
|
237
|
-
.#{$item}-left {
|
|
246
|
+
.#{$item}-left {
|
|
238
247
|
|
|
239
|
-
|
|
240
|
-
|
|
248
|
+
.#{$item}-icon {
|
|
249
|
+
color: $color-steps_item_wait_left_icon-icon;
|
|
241
250
|
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
251
|
+
.#{$item}-number-icon {
|
|
252
|
+
background: $color-steps_item_wait_left_number_icon-bg;
|
|
253
|
+
color: $color-steps_item_wait_left_number_icon-icon;
|
|
245
254
|
}
|
|
246
255
|
}
|
|
247
|
-
|
|
248
|
-
|
|
249
256
|
}
|
|
250
257
|
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
&-wait {
|
|
254
|
-
.#{$item}-title {
|
|
255
|
-
color: $color-steps_item_wait_title-text;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
+
&:hover {
|
|
258
259
|
.#{$item}-left {
|
|
259
260
|
|
|
260
261
|
.#{$item}-icon {
|
|
261
|
-
color: $color-steps_item_wait_left_icon-icon;
|
|
262
262
|
|
|
263
263
|
.#{$item}-number-icon {
|
|
264
|
-
background: $color-steps_item_wait_left_number_icon-bg;
|
|
265
|
-
color: $color-steps_item_wait_left_number_icon-icon;
|
|
264
|
+
background: $color-steps_item_wait_left_number_icon-bg-hover;
|
|
265
|
+
color: $color-steps_item_wait_left_number_icon-icon-hover;
|
|
266
266
|
}
|
|
267
267
|
}
|
|
268
268
|
}
|
|
269
|
+
}
|
|
270
|
+
}
|
|
269
271
|
|
|
270
|
-
|
|
271
|
-
.#{$item}-left {
|
|
272
|
+
// 进行状态的样式
|
|
272
273
|
|
|
273
|
-
|
|
274
|
+
&-process {
|
|
275
|
+
.#{$item}-left {
|
|
274
276
|
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
277
|
+
.#{$item}-icon {
|
|
278
|
+
color: $color-steps_item_process_left-icon;
|
|
279
|
+
|
|
280
|
+
.#{$item}-number-icon {
|
|
281
|
+
color: $color-steps_item_process_left_number-icon;
|
|
280
282
|
}
|
|
281
283
|
}
|
|
282
284
|
}
|
|
285
|
+
}
|
|
283
286
|
|
|
284
|
-
|
|
287
|
+
// 错误状态的样式
|
|
285
288
|
|
|
286
|
-
|
|
287
|
-
|
|
289
|
+
&-error {
|
|
290
|
+
.#{$item}-left {
|
|
288
291
|
|
|
289
|
-
|
|
290
|
-
|
|
292
|
+
.#{$item}-icon {
|
|
293
|
+
color: $color-steps_item_error_left-icon;
|
|
291
294
|
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
}
|
|
295
|
+
.#{$item}-number-icon {
|
|
296
|
+
color: $color-steps_item_error_left_number-icon;
|
|
295
297
|
}
|
|
296
298
|
}
|
|
297
299
|
}
|
|
300
|
+
}
|
|
298
301
|
|
|
299
|
-
|
|
302
|
+
// 警告状态的样式
|
|
300
303
|
|
|
301
|
-
|
|
302
|
-
|
|
304
|
+
&-warning {
|
|
305
|
+
.#{$item}-left {
|
|
303
306
|
|
|
304
|
-
|
|
305
|
-
|
|
307
|
+
.#{$item}-icon {
|
|
308
|
+
color: $color-steps_item_warning_left-icon;
|
|
306
309
|
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
}
|
|
310
|
+
.#{$item}-number-icon {
|
|
311
|
+
color: $color-steps_item_warning_left_number-icon;
|
|
310
312
|
}
|
|
311
313
|
}
|
|
312
314
|
}
|
|
315
|
+
}
|
|
316
|
+
}
|
|
313
317
|
|
|
314
|
-
|
|
318
|
+
@mixin basic-item-small {
|
|
319
|
+
.#{$item}-title {
|
|
320
|
+
@include font-size-regular;
|
|
321
|
+
}
|
|
315
322
|
|
|
316
|
-
|
|
317
|
-
.#{$item}-left {
|
|
323
|
+
.#{$item}-left {
|
|
318
324
|
|
|
319
|
-
|
|
320
|
-
|
|
325
|
+
.#{$item}-icon {
|
|
326
|
+
height: $height-steps_basic_small_item_left-icon;
|
|
321
327
|
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
328
|
+
.#{$item}-number-icon {
|
|
329
|
+
@include font-size-small;
|
|
330
|
+
width: $width-steps_basic_small_item_left_number-icon;
|
|
331
|
+
height: $width-steps_basic_small_item_left_number-icon;
|
|
326
332
|
}
|
|
327
333
|
}
|
|
328
334
|
}
|
|
335
|
+
}
|
|
329
336
|
|
|
330
|
-
|
|
337
|
+
.#{$basicType} {
|
|
338
|
+
&.#{$module}-horizontal {
|
|
339
|
+
@include basic-horizontal;
|
|
340
|
+
@include basic-horizontal-hasline;
|
|
331
341
|
|
|
332
342
|
.#{$item} {
|
|
343
|
+
@include basic-horizontal-item;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
333
346
|
|
|
334
|
-
|
|
335
|
-
|
|
347
|
+
&.#{$module}-vertical {
|
|
348
|
+
@include basic-vertical;
|
|
349
|
+
@include basic-vertical-hasline;
|
|
350
|
+
|
|
351
|
+
&.#{$module}-small {
|
|
352
|
+
.#{$item} {
|
|
353
|
+
@include basic-vertical-small;
|
|
336
354
|
}
|
|
355
|
+
}
|
|
337
356
|
|
|
338
|
-
|
|
357
|
+
.#{$item} {
|
|
358
|
+
@include basic-vertical-item;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
339
361
|
|
|
340
|
-
|
|
341
|
-
|
|
362
|
+
.#{$item} {
|
|
363
|
+
@include basic-item;
|
|
364
|
+
}
|
|
342
365
|
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
366
|
+
&.#{$module}-small {
|
|
367
|
+
.#{$item} {
|
|
368
|
+
@include basic-item-small;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
// 以下样式用于 C2D 变体生成。
|
|
374
|
+
// The following styles are used for C2D variant generation.
|
|
375
|
+
.#{$item}-basic {
|
|
376
|
+
&.#{$item}-horizontal {
|
|
377
|
+
@include basic-horizontal;
|
|
378
|
+
|
|
379
|
+
&.#{$item} {
|
|
380
|
+
@include basic-horizontal-item;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
&.#{$item}-vertical {
|
|
385
|
+
@include basic-vertical;
|
|
386
|
+
|
|
387
|
+
&.#{$item} {
|
|
388
|
+
@include basic-vertical-item;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
&.#{$item} {
|
|
393
|
+
@include basic-item;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
&.#{$item}-small {
|
|
397
|
+
&.#{$item} {
|
|
398
|
+
@include basic-item-small;
|
|
350
399
|
}
|
|
351
400
|
}
|
|
352
401
|
}
|