@mdsfe/mds-ui 0.4.0-rc.2 → 0.4.0-rc.3
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/dist/badge.js +2 -2
- package/dist/drawer.js +2 -2
- package/dist/mds-ui.min.js +2 -2
- package/dist/notification.js +2 -2
- package/dist/style/affix.css +1 -10
- package/dist/style/alert.css +1 -138
- package/dist/style/anchor.css +1 -58
- package/dist/style/avatar.css +1 -73
- package/dist/style/backtop.css +1 -34
- package/dist/style/badge.css +1 -141
- package/dist/style/bordershadow.css +1 -42
- package/dist/style/breadcrumb.css +1 -37
- package/dist/style/button.css +1 -2172
- package/dist/style/card.css +1 -156
- package/dist/style/carousel.css +1 -217
- package/dist/style/cascader.css +1 -214
- package/dist/style/cascaderpanel.css +1 -122
- package/dist/style/checkbox.css +1 -186
- package/dist/style/col.css +1 -2607
- package/dist/style/collapse.css +1 -79
- package/dist/style/color.css +1 -622
- package/dist/style/datepicker.css +1 -542
- package/dist/style/divider.css +1 -47
- package/dist/style/drawer.css +1 -2465
- package/dist/style/dropdown.css +1 -274
- package/dist/style/empty.css +1 -49
- package/dist/style/font.css +1 -45
- package/dist/style/form.css +1 -148
- package/dist/style/icon.css +1 -25
- package/dist/style/input.css +1 -760
- package/dist/style/inputnumber.css +1 -314
- package/dist/style/layout.css +1 -58
- package/dist/style/list.css +1 -141
- package/dist/style/loading.css +1 -2329
- package/dist/style/menu.css +1 -658
- package/dist/style/message.css +1 -191
- package/dist/style/modal.css +1 -123
- package/dist/style/notification.css +1 -192
- package/dist/style/pagination.css +1 -1190
- package/dist/style/popconfirm.css +1 -65
- package/dist/style/popover.css +1 -138
- package/dist/style/progress.css +1 -179
- package/dist/style/radio.css +1 -255
- package/dist/style/rate.css +1 -81
- package/dist/style/row.css +1 -2607
- package/dist/style/select.css +1 -221
- package/dist/style/slider.css +1 -80
- package/dist/style/slottable.css +1 -296
- package/dist/style/steps.css +1 -586
- package/dist/style/switch.css +1 -110
- package/dist/style/table.css +1 -2778
- package/dist/style/tabs.css +1 -518
- package/dist/style/tag.css +1 -421
- package/dist/style/text.css +1 -122
- package/dist/style/timeline.css +1 -88
- package/dist/style/timepicker.css +1 -393
- package/dist/style/tooltip.css +1 -161
- package/dist/style/transfer.css +1 -206
- package/dist/style/transition.css +1 -1413
- package/dist/style/tree.css +1 -84
- package/dist/style/typography.css +1 -126
- package/dist/style/upload.css +1 -320
- package/package.json +1 -1
package/dist/style/tag.css
CHANGED
|
@@ -1,421 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
3
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
4
|
-
.mds-tag {
|
|
5
|
-
display: inline-block;
|
|
6
|
-
padding: 0 10px;
|
|
7
|
-
height: 28px;
|
|
8
|
-
border: 1px solid #d8dce6;
|
|
9
|
-
font-size: 12px;
|
|
10
|
-
opacity: 1;
|
|
11
|
-
border-radius: 2px;
|
|
12
|
-
cursor: pointer;
|
|
13
|
-
user-select: none;
|
|
14
|
-
white-space: nowrap;
|
|
15
|
-
text-align: center;
|
|
16
|
-
}
|
|
17
|
-
.mds-tag-icon {
|
|
18
|
-
margin-left: 10px;
|
|
19
|
-
color: #9d9d9d;
|
|
20
|
-
}
|
|
21
|
-
.mds-tag-lg {
|
|
22
|
-
padding: 0 15px;
|
|
23
|
-
height: 32px;
|
|
24
|
-
}
|
|
25
|
-
.mds-tag-lg span {
|
|
26
|
-
line-height: 32px !important;
|
|
27
|
-
}
|
|
28
|
-
.mds-tag-md {
|
|
29
|
-
padding: 0 10px;
|
|
30
|
-
height: 28px;
|
|
31
|
-
}
|
|
32
|
-
.mds-tag-md span {
|
|
33
|
-
line-height: 28px !important;
|
|
34
|
-
}
|
|
35
|
-
.mds-tag-sm {
|
|
36
|
-
height: 24px;
|
|
37
|
-
padding: 0 8px;
|
|
38
|
-
}
|
|
39
|
-
.mds-tag-sm span {
|
|
40
|
-
line-height: 24px !important;
|
|
41
|
-
}
|
|
42
|
-
.mds-tag-mn {
|
|
43
|
-
padding: 0 8px;
|
|
44
|
-
height: 20px;
|
|
45
|
-
}
|
|
46
|
-
.mds-tag-mn span {
|
|
47
|
-
line-height: 20px !important;
|
|
48
|
-
}
|
|
49
|
-
.mds-tag:hover {
|
|
50
|
-
opacity: 0.85;
|
|
51
|
-
}
|
|
52
|
-
.mds-tag,
|
|
53
|
-
.mds-tag a,
|
|
54
|
-
.mds-tag a:hover {
|
|
55
|
-
color: #666666;
|
|
56
|
-
}
|
|
57
|
-
.mds-tag-text a:first-child:last-child {
|
|
58
|
-
display: inline-block;
|
|
59
|
-
margin: 0 -8px;
|
|
60
|
-
}
|
|
61
|
-
.mds-tag .mdsicon-cross {
|
|
62
|
-
display: inline-block;
|
|
63
|
-
font-size: 12px;
|
|
64
|
-
font-size: 10px ;
|
|
65
|
-
transform: scale(0.83333333) rotate(0deg);
|
|
66
|
-
/* IE6-IE8 */
|
|
67
|
-
-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";
|
|
68
|
-
zoom: 1;
|
|
69
|
-
cursor: pointer;
|
|
70
|
-
font-weight: bold;
|
|
71
|
-
margin-left: 3px;
|
|
72
|
-
transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
|
|
73
|
-
opacity: 0.66;
|
|
74
|
-
}
|
|
75
|
-
:root .mds-tag .mdsicon-cross {
|
|
76
|
-
filter: none;
|
|
77
|
-
}
|
|
78
|
-
:root .mds-tag .mdsicon-cross {
|
|
79
|
-
font-size: 12px;
|
|
80
|
-
}
|
|
81
|
-
.mds-tag .mdsicon-cross:hover {
|
|
82
|
-
opacity: 1;
|
|
83
|
-
}
|
|
84
|
-
.mds-tag-has-color {
|
|
85
|
-
border-color: transparent;
|
|
86
|
-
}
|
|
87
|
-
.mds-tag-checkable {
|
|
88
|
-
background-color: transparent;
|
|
89
|
-
border-color: transparent;
|
|
90
|
-
}
|
|
91
|
-
.mds-tag-checkable:active,
|
|
92
|
-
.mds-tag-checkable-checked {
|
|
93
|
-
color: #fff;
|
|
94
|
-
}
|
|
95
|
-
.mds-tag-checkable-checked {
|
|
96
|
-
background-color: #ecf5ff;
|
|
97
|
-
color: #0364ff;
|
|
98
|
-
}
|
|
99
|
-
.mds-tag-checkable:active {
|
|
100
|
-
background-color: #0252dd;
|
|
101
|
-
}
|
|
102
|
-
.mds-tag-close {
|
|
103
|
-
width: 0 !important;
|
|
104
|
-
padding: 0;
|
|
105
|
-
margin: 0;
|
|
106
|
-
}
|
|
107
|
-
.mds-tag-zoom-enter,
|
|
108
|
-
.mds-tag-zoom-appear {
|
|
109
|
-
animation: antFadeIn 0.2s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
110
|
-
animation-fill-mode: both;
|
|
111
|
-
}
|
|
112
|
-
.mds-tag-zoom-leave {
|
|
113
|
-
animation: antZoomOut 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
|
|
114
|
-
animation-fill-mode: both;
|
|
115
|
-
}
|
|
116
|
-
.mds-tag-pink {
|
|
117
|
-
color: #f5317f;
|
|
118
|
-
background: #fdd8e7;
|
|
119
|
-
border-color: #fdd8e7;
|
|
120
|
-
}
|
|
121
|
-
.mds-tag-blue {
|
|
122
|
-
color: #0364ff;
|
|
123
|
-
background: #ecf5ff;
|
|
124
|
-
border-color: #ecf5ff;
|
|
125
|
-
}
|
|
126
|
-
.mds-tag-green {
|
|
127
|
-
color: #00aa00;
|
|
128
|
-
background: rgba(0, 170, 0, 0.05);
|
|
129
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
130
|
-
}
|
|
131
|
-
.mds-tag-purple {
|
|
132
|
-
color: #666;
|
|
133
|
-
background: #F8F8F8;
|
|
134
|
-
border-color: #F8F8F8;
|
|
135
|
-
}
|
|
136
|
-
.mds-tag-red {
|
|
137
|
-
color: #EE3333;
|
|
138
|
-
background: rgba(238, 51, 51, 0.05);
|
|
139
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
140
|
-
}
|
|
141
|
-
.mds-tag-orange {
|
|
142
|
-
color: #FF6600;
|
|
143
|
-
background: rgba(255, 102, 0, 0.05);
|
|
144
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
145
|
-
}
|
|
146
|
-
.mds-tag-pink-inverse {
|
|
147
|
-
border-color: #f5317f;
|
|
148
|
-
color: #f5317f;
|
|
149
|
-
}
|
|
150
|
-
.mds-tag-red {
|
|
151
|
-
color: #EE3333;
|
|
152
|
-
background: #fcd8d8;
|
|
153
|
-
border-color: #fcd8d8;
|
|
154
|
-
}
|
|
155
|
-
.mds-tag-blue {
|
|
156
|
-
color: #0364ff;
|
|
157
|
-
background: #ecf5ff;
|
|
158
|
-
border-color: #ecf5ff;
|
|
159
|
-
}
|
|
160
|
-
.mds-tag-green {
|
|
161
|
-
color: #00aa00;
|
|
162
|
-
background: rgba(0, 170, 0, 0.05);
|
|
163
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
164
|
-
}
|
|
165
|
-
.mds-tag-purple {
|
|
166
|
-
color: #666;
|
|
167
|
-
background: #F8F8F8;
|
|
168
|
-
border-color: #F8F8F8;
|
|
169
|
-
}
|
|
170
|
-
.mds-tag-red {
|
|
171
|
-
color: #EE3333;
|
|
172
|
-
background: rgba(238, 51, 51, 0.05);
|
|
173
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
174
|
-
}
|
|
175
|
-
.mds-tag-orange {
|
|
176
|
-
color: #FF6600;
|
|
177
|
-
background: rgba(255, 102, 0, 0.05);
|
|
178
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
179
|
-
}
|
|
180
|
-
.mds-tag-red-inverse {
|
|
181
|
-
border-color: #EE3333;
|
|
182
|
-
color: #EE3333;
|
|
183
|
-
}
|
|
184
|
-
.mds-tag-orange {
|
|
185
|
-
color: #f56a00;
|
|
186
|
-
background: #fde3cf;
|
|
187
|
-
border-color: #fde3cf;
|
|
188
|
-
}
|
|
189
|
-
.mds-tag-blue {
|
|
190
|
-
color: #0364ff;
|
|
191
|
-
background: #ecf5ff;
|
|
192
|
-
border-color: #ecf5ff;
|
|
193
|
-
}
|
|
194
|
-
.mds-tag-green {
|
|
195
|
-
color: #00aa00;
|
|
196
|
-
background: rgba(0, 170, 0, 0.05);
|
|
197
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
198
|
-
}
|
|
199
|
-
.mds-tag-purple {
|
|
200
|
-
color: #666;
|
|
201
|
-
background: #F8F8F8;
|
|
202
|
-
border-color: #F8F8F8;
|
|
203
|
-
}
|
|
204
|
-
.mds-tag-red {
|
|
205
|
-
color: #EE3333;
|
|
206
|
-
background: rgba(238, 51, 51, 0.05);
|
|
207
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
208
|
-
}
|
|
209
|
-
.mds-tag-orange {
|
|
210
|
-
color: #FF6600;
|
|
211
|
-
background: rgba(255, 102, 0, 0.05);
|
|
212
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
213
|
-
}
|
|
214
|
-
.mds-tag-orange-inverse {
|
|
215
|
-
border-color: #f56a00;
|
|
216
|
-
color: #f56a00;
|
|
217
|
-
}
|
|
218
|
-
.mds-tag-yellow {
|
|
219
|
-
color: #ffbf00;
|
|
220
|
-
background: #fff3cf;
|
|
221
|
-
border-color: #fff3cf;
|
|
222
|
-
}
|
|
223
|
-
.mds-tag-blue {
|
|
224
|
-
color: #0364ff;
|
|
225
|
-
background: #ecf5ff;
|
|
226
|
-
border-color: #ecf5ff;
|
|
227
|
-
}
|
|
228
|
-
.mds-tag-green {
|
|
229
|
-
color: #00aa00;
|
|
230
|
-
background: rgba(0, 170, 0, 0.05);
|
|
231
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
232
|
-
}
|
|
233
|
-
.mds-tag-purple {
|
|
234
|
-
color: #666;
|
|
235
|
-
background: #F8F8F8;
|
|
236
|
-
border-color: #F8F8F8;
|
|
237
|
-
}
|
|
238
|
-
.mds-tag-red {
|
|
239
|
-
color: #EE3333;
|
|
240
|
-
background: rgba(238, 51, 51, 0.05);
|
|
241
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
242
|
-
}
|
|
243
|
-
.mds-tag-orange {
|
|
244
|
-
color: #FF6600;
|
|
245
|
-
background: rgba(255, 102, 0, 0.05);
|
|
246
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
247
|
-
}
|
|
248
|
-
.mds-tag-yellow-inverse {
|
|
249
|
-
border-color: #ffbf00;
|
|
250
|
-
color: #ffbf00;
|
|
251
|
-
}
|
|
252
|
-
.mds-tag-cyan {
|
|
253
|
-
color: #00a2ae;
|
|
254
|
-
background: #cfedf0;
|
|
255
|
-
border-color: #cfedf0;
|
|
256
|
-
}
|
|
257
|
-
.mds-tag-blue {
|
|
258
|
-
color: #0364ff;
|
|
259
|
-
background: #ecf5ff;
|
|
260
|
-
border-color: #ecf5ff;
|
|
261
|
-
}
|
|
262
|
-
.mds-tag-green {
|
|
263
|
-
color: #00aa00;
|
|
264
|
-
background: rgba(0, 170, 0, 0.05);
|
|
265
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
266
|
-
}
|
|
267
|
-
.mds-tag-purple {
|
|
268
|
-
color: #666;
|
|
269
|
-
background: #F8F8F8;
|
|
270
|
-
border-color: #F8F8F8;
|
|
271
|
-
}
|
|
272
|
-
.mds-tag-red {
|
|
273
|
-
color: #EE3333;
|
|
274
|
-
background: rgba(238, 51, 51, 0.05);
|
|
275
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
276
|
-
}
|
|
277
|
-
.mds-tag-orange {
|
|
278
|
-
color: #FF6600;
|
|
279
|
-
background: rgba(255, 102, 0, 0.05);
|
|
280
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
281
|
-
}
|
|
282
|
-
.mds-tag-cyan-inverse {
|
|
283
|
-
border-color: #00a2ae;
|
|
284
|
-
color: #00a2ae;
|
|
285
|
-
}
|
|
286
|
-
.mds-tag-green {
|
|
287
|
-
color: #00a854;
|
|
288
|
-
background: #cfefdf;
|
|
289
|
-
border-color: #cfefdf;
|
|
290
|
-
}
|
|
291
|
-
.mds-tag-blue {
|
|
292
|
-
color: #0364ff;
|
|
293
|
-
background: #ecf5ff;
|
|
294
|
-
border-color: #ecf5ff;
|
|
295
|
-
}
|
|
296
|
-
.mds-tag-green {
|
|
297
|
-
color: #00aa00;
|
|
298
|
-
background: rgba(0, 170, 0, 0.05);
|
|
299
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
300
|
-
}
|
|
301
|
-
.mds-tag-purple {
|
|
302
|
-
color: #666;
|
|
303
|
-
background: #F8F8F8;
|
|
304
|
-
border-color: #F8F8F8;
|
|
305
|
-
}
|
|
306
|
-
.mds-tag-red {
|
|
307
|
-
color: #EE3333;
|
|
308
|
-
background: rgba(238, 51, 51, 0.05);
|
|
309
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
310
|
-
}
|
|
311
|
-
.mds-tag-orange {
|
|
312
|
-
color: #FF6600;
|
|
313
|
-
background: rgba(255, 102, 0, 0.05);
|
|
314
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
315
|
-
}
|
|
316
|
-
.mds-tag-green-inverse {
|
|
317
|
-
border-color: #00a854;
|
|
318
|
-
color: #00a854;
|
|
319
|
-
}
|
|
320
|
-
.mds-tag-blue {
|
|
321
|
-
color: #0364ff;
|
|
322
|
-
background: #cfe2ff;
|
|
323
|
-
border-color: #cfe2ff;
|
|
324
|
-
}
|
|
325
|
-
.mds-tag-blue {
|
|
326
|
-
color: #0364ff;
|
|
327
|
-
background: #ecf5ff;
|
|
328
|
-
border-color: #ecf5ff;
|
|
329
|
-
}
|
|
330
|
-
.mds-tag-green {
|
|
331
|
-
color: #00aa00;
|
|
332
|
-
background: rgba(0, 170, 0, 0.05);
|
|
333
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
334
|
-
}
|
|
335
|
-
.mds-tag-purple {
|
|
336
|
-
color: #666;
|
|
337
|
-
background: #F8F8F8;
|
|
338
|
-
border-color: #F8F8F8;
|
|
339
|
-
}
|
|
340
|
-
.mds-tag-red {
|
|
341
|
-
color: #EE3333;
|
|
342
|
-
background: rgba(238, 51, 51, 0.05);
|
|
343
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
344
|
-
}
|
|
345
|
-
.mds-tag-orange {
|
|
346
|
-
color: #FF6600;
|
|
347
|
-
background: rgba(255, 102, 0, 0.05);
|
|
348
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
349
|
-
}
|
|
350
|
-
.mds-tag-blue-inverse {
|
|
351
|
-
border-color: #0364ff;
|
|
352
|
-
color: #0364ff;
|
|
353
|
-
}
|
|
354
|
-
.mds-tag-purple {
|
|
355
|
-
color: #7265e6;
|
|
356
|
-
background: #e4e2fa;
|
|
357
|
-
border-color: #e4e2fa;
|
|
358
|
-
}
|
|
359
|
-
.mds-tag-blue {
|
|
360
|
-
color: #0364ff;
|
|
361
|
-
background: #ecf5ff;
|
|
362
|
-
border-color: #ecf5ff;
|
|
363
|
-
}
|
|
364
|
-
.mds-tag-green {
|
|
365
|
-
color: #00aa00;
|
|
366
|
-
background: rgba(0, 170, 0, 0.05);
|
|
367
|
-
border-color: rgba(0, 170, 0, 0.05);
|
|
368
|
-
}
|
|
369
|
-
.mds-tag-purple {
|
|
370
|
-
color: #666;
|
|
371
|
-
background: #F8F8F8;
|
|
372
|
-
border-color: #F8F8F8;
|
|
373
|
-
}
|
|
374
|
-
.mds-tag-red {
|
|
375
|
-
color: #EE3333;
|
|
376
|
-
background: rgba(238, 51, 51, 0.05);
|
|
377
|
-
border-color: rgba(238, 51, 51, 0.05);
|
|
378
|
-
}
|
|
379
|
-
.mds-tag-orange {
|
|
380
|
-
color: #FF6600;
|
|
381
|
-
background: rgba(255, 102, 0, 0.05);
|
|
382
|
-
border-color: rgba(255, 102, 0, 0.05);
|
|
383
|
-
}
|
|
384
|
-
.mds-tag-purple-inverse {
|
|
385
|
-
border-color: #7265e6;
|
|
386
|
-
color: #7265e6;
|
|
387
|
-
}
|
|
388
|
-
.mds-tag-text {
|
|
389
|
-
font-size: 12px;
|
|
390
|
-
font-family: PingFangSC-Regular;
|
|
391
|
-
font-weight: 400;
|
|
392
|
-
line-height: 28px;
|
|
393
|
-
opacity: 1;
|
|
394
|
-
}
|
|
395
|
-
.btn {
|
|
396
|
-
outline: none;
|
|
397
|
-
width: 98px;
|
|
398
|
-
height: 30px;
|
|
399
|
-
background: #ffffff;
|
|
400
|
-
border-radius: 2px;
|
|
401
|
-
font-size: 12px;
|
|
402
|
-
border: 1px dashed #d8dce6;
|
|
403
|
-
vertical-align: bottom;
|
|
404
|
-
}
|
|
405
|
-
.btn span:first-child {
|
|
406
|
-
color: #9d9d9d;
|
|
407
|
-
font-size: 18px;
|
|
408
|
-
margin-right: 10px;
|
|
409
|
-
font-weight: 200;
|
|
410
|
-
display: inline-block;
|
|
411
|
-
line-height: 19px;
|
|
412
|
-
}
|
|
413
|
-
.btn span:last-child {
|
|
414
|
-
font-size: 12px;
|
|
415
|
-
}
|
|
416
|
-
.gap-top {
|
|
417
|
-
margin-bottom: 10px;
|
|
418
|
-
}
|
|
419
|
-
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
420
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
421
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
1
|
+
.mds-tag{display:inline-block;padding:0 10px;height:28px;border:1px solid #d8dce6;font-size:12px;opacity:1;border-radius:2px;cursor:pointer;user-select:none;white-space:nowrap;text-align:center}.mds-tag-icon{margin-left:10px;color:#9d9d9d}.mds-tag-lg{padding:0 15px;height:32px}.mds-tag-lg span{line-height:32px!important}.mds-tag-md{padding:0 10px;height:28px}.mds-tag-md span{line-height:28px!important}.mds-tag-sm{height:24px;padding:0 8px}.mds-tag-sm span{line-height:24px!important}.mds-tag-mn{padding:0 8px;height:20px}.mds-tag-mn span{line-height:20px!important}.mds-tag:hover{opacity:.85}.mds-tag,.mds-tag a,.mds-tag a:hover{color:#666}.mds-tag-text a:first-child:last-child{display:inline-block;margin:0 -8px}.mds-tag .mdsicon-cross{display:inline-block;font-size:12px;font-size:10px;transform:scale(.83333333) rotate(0deg);-ms-filter:"progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand', M11=1, M12=0, M21=0, M22=1)";zoom:1;cursor:pointer;font-weight:700;margin-left:3px;transition:all .3s cubic-bezier(.215,.61,.355,1);opacity:.66}:root .mds-tag .mdsicon-cross{filter:none;font-size:12px}.mds-tag .mdsicon-cross:hover{opacity:1}.mds-tag-checkable,.mds-tag-has-color{border-color:transparent}.mds-tag-checkable{background-color:transparent}.mds-tag-checkable-checked,.mds-tag-checkable:active{color:#fff}.mds-tag-checkable-checked{background-color:#ecf5ff;color:#0364ff}.mds-tag-checkable:active{background-color:#0252dd}.mds-tag-close{width:0!important;padding:0;margin:0}.mds-tag-zoom-appear,.mds-tag-zoom-enter{animation:antFadeIn .2s cubic-bezier(.78,.14,.15,.86);animation-fill-mode:both}.mds-tag-zoom-leave{animation:antZoomOut .3s cubic-bezier(.78,.14,.15,.86);animation-fill-mode:both}.mds-tag-pink{color:#f5317f;background:#fdd8e7;border-color:#fdd8e7}.mds-tag-pink-inverse{border-color:#f5317f;color:#f5317f}.mds-tag-red{background:#fcd8d8;border-color:#fcd8d8}.mds-tag-red-inverse{border-color:#e33;color:#e33}.mds-tag-orange{color:#f56a00;background:#fde3cf;border-color:#fde3cf}.mds-tag-orange-inverse{border-color:#f56a00;color:#f56a00}.mds-tag-yellow{color:#ffbf00;background:#fff3cf;border-color:#fff3cf}.mds-tag-yellow-inverse{border-color:#ffbf00;color:#ffbf00}.mds-tag-cyan{color:#00a2ae;background:#cfedf0;border-color:#cfedf0}.mds-tag-cyan-inverse{border-color:#00a2ae;color:#00a2ae}.mds-tag-green{color:#00a854;background:#cfefdf;border-color:#cfefdf}.mds-tag-green-inverse{border-color:#00a854;color:#00a854}.mds-tag-blue{background:#cfe2ff;border-color:#cfe2ff}.mds-tag-blue-inverse{border-color:#0364ff;color:#0364ff}.mds-tag-purple{color:#7265e6;background:#e4e2fa;border-color:#e4e2fa}.mds-tag-blue{color:#0364ff;background:#ecf5ff;border-color:#ecf5ff}.mds-tag-green{color:#0a0;background:rgba(0,170,0,.05);border-color:rgba(0,170,0,.05)}.mds-tag-purple{color:#666;background:#f8f8f8;border-color:#f8f8f8}.mds-tag-red{color:#e33;background:rgba(238,51,51,.05);border-color:rgba(238,51,51,.05)}.mds-tag-orange{color:#f60;background:rgba(255,102,0,.05);border-color:rgba(255,102,0,.05)}.mds-tag-purple-inverse{border-color:#7265e6;color:#7265e6}.mds-tag-text{font-size:12px;font-family:PingFangSC-Regular;font-weight:400;line-height:28px;opacity:1}.btn{outline:none;width:98px;height:30px;background:#fff;border-radius:2px;font-size:12px;border:1px dashed #d8dce6;vertical-align:bottom}.btn span:first-child{color:#9d9d9d;font-size:18px;margin-right:10px;font-weight:200;display:inline-block;line-height:19px}.btn span:last-child{font-size:12px}.gap-top{margin-bottom:10px}
|
package/dist/style/text.css
CHANGED
|
@@ -1,122 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
3
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
4
|
-
.text-style {
|
|
5
|
-
display: flex;
|
|
6
|
-
justify-content: space-around;
|
|
7
|
-
}
|
|
8
|
-
.text-style > div {
|
|
9
|
-
width: 30%;
|
|
10
|
-
}
|
|
11
|
-
.text-style > div > p {
|
|
12
|
-
height: 30px;
|
|
13
|
-
font-size: 18px;
|
|
14
|
-
font-family: PingFangSC-Regular, PingFang SC;
|
|
15
|
-
font-weight: 400;
|
|
16
|
-
color: #666666;
|
|
17
|
-
line-height: 30px;
|
|
18
|
-
margin-bottom: 16px;
|
|
19
|
-
}
|
|
20
|
-
.text-style > div > ul {
|
|
21
|
-
list-style: none;
|
|
22
|
-
}
|
|
23
|
-
.text-style > div > ul li {
|
|
24
|
-
height: 32px;
|
|
25
|
-
}
|
|
26
|
-
.text-style > div > ul li span:nth-child(1) {
|
|
27
|
-
display: inline-block;
|
|
28
|
-
width: 40%;
|
|
29
|
-
height: 20px;
|
|
30
|
-
font-size: 14px;
|
|
31
|
-
font-family: PingFangSC-Regular, PingFang SC;
|
|
32
|
-
font-weight: 400;
|
|
33
|
-
color: #68768C;
|
|
34
|
-
line-height: 20px;
|
|
35
|
-
}
|
|
36
|
-
.mds-text {
|
|
37
|
-
text-decoration: none;
|
|
38
|
-
text-align: center;
|
|
39
|
-
font-size: 14px;
|
|
40
|
-
font-family: PingFangSC-Regular, PingFang SC;
|
|
41
|
-
font-weight: 400;
|
|
42
|
-
line-height: 22px;
|
|
43
|
-
color: #354052;
|
|
44
|
-
}
|
|
45
|
-
.mds-text + .mds-text {
|
|
46
|
-
margin-left: 0;
|
|
47
|
-
}
|
|
48
|
-
.mds-text .mdsicon {
|
|
49
|
-
margin: 0 7px;
|
|
50
|
-
}
|
|
51
|
-
.mds-text .line-format-border-color,
|
|
52
|
-
.mds-text .line-swap-stroke {
|
|
53
|
-
color: #0364FF;
|
|
54
|
-
cursor: pointer;
|
|
55
|
-
}
|
|
56
|
-
.mds-text .line-check {
|
|
57
|
-
color: #00BA00;
|
|
58
|
-
}
|
|
59
|
-
.mds-text-primary {
|
|
60
|
-
color: #354052;
|
|
61
|
-
}
|
|
62
|
-
.mds-text-secondary {
|
|
63
|
-
color: #7F8FA4;
|
|
64
|
-
}
|
|
65
|
-
.mds-text-dark {
|
|
66
|
-
color: #A9ABBA;
|
|
67
|
-
}
|
|
68
|
-
.mds-text-disabled {
|
|
69
|
-
color: #D8DCE6;
|
|
70
|
-
}
|
|
71
|
-
.mds-text-danger {
|
|
72
|
-
color: #EE3333;
|
|
73
|
-
}
|
|
74
|
-
.mds-text-success {
|
|
75
|
-
color: #00AA00;
|
|
76
|
-
}
|
|
77
|
-
.mds-text-warning {
|
|
78
|
-
color: #FFCC01;
|
|
79
|
-
}
|
|
80
|
-
.mds-text-info {
|
|
81
|
-
color: #0095FF;
|
|
82
|
-
}
|
|
83
|
-
.mds-text-mark {
|
|
84
|
-
background: #FFF9A3;
|
|
85
|
-
}
|
|
86
|
-
.mds-text-code {
|
|
87
|
-
background: #F0F2F5;
|
|
88
|
-
padding: 1px 4px;
|
|
89
|
-
}
|
|
90
|
-
.mds-text-underline {
|
|
91
|
-
text-decoration: underline;
|
|
92
|
-
}
|
|
93
|
-
.mds-text-delete {
|
|
94
|
-
text-decoration: line-through;
|
|
95
|
-
}
|
|
96
|
-
.mds-text-strong {
|
|
97
|
-
font-weight: 600;
|
|
98
|
-
}
|
|
99
|
-
.mds-link {
|
|
100
|
-
padding: 2px 8px;
|
|
101
|
-
display: inline-block;
|
|
102
|
-
}
|
|
103
|
-
.mds-link:hover {
|
|
104
|
-
cursor: pointer;
|
|
105
|
-
color: #2C85FF;
|
|
106
|
-
background: #EEF8FF;
|
|
107
|
-
}
|
|
108
|
-
.mds-link:active {
|
|
109
|
-
cursor: none;
|
|
110
|
-
color: #004CD9;
|
|
111
|
-
background: #EEF8FF;
|
|
112
|
-
text-decoration: none;
|
|
113
|
-
}
|
|
114
|
-
.mds-link:focus {
|
|
115
|
-
text-decoration: none;
|
|
116
|
-
}
|
|
117
|
-
.mds-link.has-underline:hover {
|
|
118
|
-
text-decoration: underline;
|
|
119
|
-
}
|
|
120
|
-
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
121
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
122
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
1
|
+
.text-style{display:flex;justify-content:space-around}.text-style>div{width:30%}.text-style>div>p{height:30px;font-size:18px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400;color:#666;line-height:30px;margin-bottom:16px}.text-style>div>ul{list-style:none}.text-style>div>ul li{height:32px}.text-style>div>ul li span:first-child{display:inline-block;width:40%;height:20px;color:#68768c;line-height:20px}.mds-text,.text-style>div>ul li span:first-child{font-size:14px;font-family:PingFangSC-Regular,PingFang SC;font-weight:400}.mds-text{text-decoration:none;text-align:center;line-height:22px;color:#354052}.mds-text+.mds-text{margin-left:0}.mds-text .mdsicon{margin:0 7px}.mds-text .line-format-border-color,.mds-text .line-swap-stroke{color:#0364ff;cursor:pointer}.mds-text .line-check{color:#00ba00}.mds-text-primary{color:#354052}.mds-text-secondary{color:#7f8fa4}.mds-text-dark{color:#a9abba}.mds-text-disabled{color:#d8dce6}.mds-text-danger{color:#e33}.mds-text-success{color:#0a0}.mds-text-warning{color:#ffcc01}.mds-text-info{color:#0095ff}.mds-text-mark{background:#fff9a3}.mds-text-code{background:#f0f2f5;padding:1px 4px}.mds-text-underline{text-decoration:underline}.mds-text-delete{text-decoration:line-through}.mds-text-strong{font-weight:600}.mds-link{padding:2px 8px;display:inline-block}.mds-link:hover{cursor:pointer;color:#2c85ff;background:#eef8ff}.mds-link:active{cursor:none;color:#004cd9;background:#eef8ff}.mds-link:active,.mds-link:focus{text-decoration:none}.mds-link.has-underline:hover{text-decoration:underline}
|
package/dist/style/timeline.css
CHANGED
|
@@ -1,88 +1 @@
|
|
|
1
|
-
|
|
2
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
3
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
4
|
-
.mds-timeline {
|
|
5
|
-
list-style: none;
|
|
6
|
-
margin: 0;
|
|
7
|
-
padding: 0;
|
|
8
|
-
}
|
|
9
|
-
.mds-timeline-item {
|
|
10
|
-
position: relative;
|
|
11
|
-
padding: 0 0 12px;
|
|
12
|
-
list-style: none;
|
|
13
|
-
margin: 0;
|
|
14
|
-
}
|
|
15
|
-
.mds-timeline-item-tail {
|
|
16
|
-
position: absolute;
|
|
17
|
-
left: 5px;
|
|
18
|
-
top: 0;
|
|
19
|
-
height: 100%;
|
|
20
|
-
border-left: 2px solid #d8dcd6;
|
|
21
|
-
}
|
|
22
|
-
.mds-timeline-item-pending .mds-timeline-item-tail {
|
|
23
|
-
display: none;
|
|
24
|
-
}
|
|
25
|
-
.mds-timeline-item-head {
|
|
26
|
-
position: absolute;
|
|
27
|
-
width: 12px;
|
|
28
|
-
height: 12px;
|
|
29
|
-
background-color: #fff;
|
|
30
|
-
border-radius: 100px;
|
|
31
|
-
border: 2px solid transparent;
|
|
32
|
-
}
|
|
33
|
-
.mds-timeline-item-head-blue {
|
|
34
|
-
border-color: #0364ff;
|
|
35
|
-
color: #0364ff;
|
|
36
|
-
}
|
|
37
|
-
.mds-timeline-item-head-red {
|
|
38
|
-
border-color: #EE3333;
|
|
39
|
-
color: #EE3333;
|
|
40
|
-
}
|
|
41
|
-
.mds-timeline-item-head-green {
|
|
42
|
-
border-color: #00a854;
|
|
43
|
-
color: #00a854;
|
|
44
|
-
}
|
|
45
|
-
.mds-timeline-item-head-f60 {
|
|
46
|
-
border-color: #ff6600;
|
|
47
|
-
color: #ff6600;
|
|
48
|
-
}
|
|
49
|
-
.mds-timeline-item-head-e33 {
|
|
50
|
-
border-color: #ee3333;
|
|
51
|
-
color: #ee3333;
|
|
52
|
-
}
|
|
53
|
-
.mds-timeline-item-head-custom {
|
|
54
|
-
position: absolute;
|
|
55
|
-
text-align: center;
|
|
56
|
-
width: 40px;
|
|
57
|
-
left: -14px;
|
|
58
|
-
line-height: 1;
|
|
59
|
-
margin-top: 6px;
|
|
60
|
-
border: 0;
|
|
61
|
-
height: auto;
|
|
62
|
-
border-radius: 0;
|
|
63
|
-
font-size: 12px;
|
|
64
|
-
transform: translateY(-50%);
|
|
65
|
-
}
|
|
66
|
-
.mds-timeline-item-content {
|
|
67
|
-
color: #354052;
|
|
68
|
-
padding: 0 0 10px 24px;
|
|
69
|
-
font-size: 14px;
|
|
70
|
-
position: relative;
|
|
71
|
-
top: -3px;
|
|
72
|
-
}
|
|
73
|
-
.mds-timeline-item-last .mds-timeline-item-tail {
|
|
74
|
-
border-left: 2px dotted #d8dcd6;
|
|
75
|
-
display: none;
|
|
76
|
-
}
|
|
77
|
-
.mds-timeline-item-last .mds-timeline-item-content {
|
|
78
|
-
min-height: 48px;
|
|
79
|
-
}
|
|
80
|
-
.mds-timeline.mds-timeline-pending .mds-timeline-item-last .mds-timeline-item-tail {
|
|
81
|
-
display: block;
|
|
82
|
-
}
|
|
83
|
-
.mds-timeline-item:last-child .mds-timeline-item-tail {
|
|
84
|
-
display: none;
|
|
85
|
-
}
|
|
86
|
-
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
87
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
88
|
-
/* stylelint-disable declaration-bang-space-before */
|
|
1
|
+
.mds-timeline{list-style:none;margin:0;padding:0}.mds-timeline-item{position:relative;padding:0 0 12px;list-style:none;margin:0}.mds-timeline-item-tail{position:absolute;left:5px;top:0;height:100%;border-left:2px solid #d8dcd6}.mds-timeline-item-pending .mds-timeline-item-tail{display:none}.mds-timeline-item-head{position:absolute;width:12px;height:12px;background-color:#fff;border-radius:100px;border:2px solid transparent}.mds-timeline-item-head-blue{border-color:#0364ff;color:#0364ff}.mds-timeline-item-head-red{border-color:#e33;color:#e33}.mds-timeline-item-head-green{border-color:#00a854;color:#00a854}.mds-timeline-item-head-f60{border-color:#f60;color:#f60}.mds-timeline-item-head-e33{border-color:#e33;color:#e33}.mds-timeline-item-head-custom{position:absolute;text-align:center;width:40px;left:-14px;line-height:1;margin-top:6px;border:0;height:auto;border-radius:0;font-size:12px;transform:translateY(-50%)}.mds-timeline-item-content{color:#354052;padding:0 0 10px 24px;font-size:14px;position:relative;top:-3px}.mds-timeline-item-last .mds-timeline-item-tail{border-left:2px dotted #d8dcd6;display:none}.mds-timeline-item-last .mds-timeline-item-content{min-height:48px}.mds-timeline.mds-timeline-pending .mds-timeline-item-last .mds-timeline-item-tail{display:block}.mds-timeline-item:last-child .mds-timeline-item-tail{display:none}
|