@mdsfe/mds-ui 0.4.0-rc.7 → 0.4.0-rc.8
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/bordershadow.js +2 -2
- package/dist/carousel.js +2 -2
- package/dist/cascader.js +4 -4
- package/dist/cascaderpanel.js +16 -16
- package/dist/collapse.js +2 -2
- package/dist/divider.js +2 -2
- package/dist/drawer.js +4 -4
- package/dist/empty.js +2 -2
- package/dist/font/full-star.b5fdf00.png +0 -0
- package/dist/font/half-star.2625512.png +0 -0
- package/dist/font/zero-star.177c19c.png +0 -0
- package/dist/form.js +2 -2
- package/dist/icon.js +13 -4
- package/dist/index.js +5 -5
- package/dist/input.js +2 -2
- package/dist/inputnumber.js +2 -2
- package/dist/layout.js +2 -2
- package/dist/list.js +2 -2
- package/dist/loading.js +2 -2
- package/dist/mds-ui.min.css +1 -1
- package/dist/mds-ui.min.js +139 -127
- package/dist/menu.js +4 -4
- package/dist/message.js +2 -2
- package/dist/modal.js +2 -2
- package/dist/notification.js +8 -8
- package/dist/pagination.js +4 -4
- package/dist/popconfirm.js +2 -2
- package/dist/popover.js +2 -2
- package/dist/progress.js +2 -2
- package/dist/radio.js +2 -2
- package/dist/rate.js +2 -2
- package/dist/select.js +7 -7
- package/dist/slider.js +2 -2
- package/dist/slottable.js +7 -7
- package/dist/steps.js +2 -2
- package/dist/style/affix.css +10 -1
- package/dist/style/alert.css +138 -1
- package/dist/style/anchor.css +58 -1
- package/dist/style/avatar.css +73 -1
- package/dist/style/backtop.css +34 -1
- package/dist/style/badge.css +141 -1
- package/dist/style/bordershadow.css +42 -1
- package/dist/style/breadcrumb.css +37 -1
- package/dist/style/button.css +2172 -1
- package/dist/style/card.css +156 -1
- package/dist/style/carousel.css +217 -1
- package/dist/style/cascader.css +214 -1
- package/dist/style/cascaderpanel.css +122 -1
- package/dist/style/checkbox.css +186 -1
- package/dist/style/col.css +2607 -1
- package/dist/style/collapse.css +79 -1
- package/dist/style/color.css +622 -1
- package/dist/style/datepicker.css +542 -1
- package/dist/style/divider.css +47 -1
- package/dist/style/drawer.css +254 -1
- package/dist/style/dropdown.css +274 -1
- package/dist/style/empty.css +49 -1
- package/dist/style/font.css +45 -1
- package/dist/style/form.css +148 -1
- package/dist/style/icon.css +5625 -1
- package/dist/style/index.css +1 -1
- package/dist/style/input.css +760 -1
- package/dist/style/inputnumber.css +314 -1
- package/dist/style/layout.css +58 -1
- package/dist/style/list.css +141 -1
- package/dist/style/loading.css +2329 -1
- package/dist/style/menu.css +658 -1
- package/dist/style/message.css +191 -1
- package/dist/style/modal.css +123 -1
- package/dist/style/notification.css +192 -1
- package/dist/style/pagination.css +1190 -1
- package/dist/style/popconfirm.css +65 -1
- package/dist/style/popover.css +138 -1
- package/dist/style/progress.css +179 -1
- package/dist/style/radio.css +255 -1
- package/dist/style/rate.css +81 -1
- package/dist/style/row.css +2607 -1
- package/dist/style/select.css +221 -1
- package/dist/style/slider.css +80 -1
- package/dist/style/slottable.css +296 -1
- package/dist/style/steps.css +586 -1
- package/dist/style/switch.css +110 -1
- package/dist/style/table.css +2778 -1
- package/dist/style/tabs.css +518 -1
- package/dist/style/tag.css +421 -1
- package/dist/style/text.css +122 -1
- package/dist/style/timeline.css +88 -1
- package/dist/style/timepicker.css +393 -1
- package/dist/style/tooltip.css +161 -1
- package/dist/style/transfer.css +206 -1
- package/dist/style/transition.css +1413 -1
- package/dist/style/tree.css +84 -1
- package/dist/style/typography.css +126 -1
- package/dist/style/upload.css +320 -1
- package/dist/switch.js +2 -2
- package/dist/table.js +9 -9
- package/dist/tabs.js +2 -2
- package/dist/tag.js +2 -2
- package/dist/text.js +2 -2
- package/dist/timeline.js +2 -2
- package/dist/timepicker.js +2 -2
- package/dist/tooltip.js +2 -2
- package/dist/transfer.js +6 -6
- package/dist/transition.js +2 -2
- package/dist/tree.js +2 -2
- package/dist/typography.js +2 -2
- package/package.json +1 -1
|
@@ -1 +1,314 @@
|
|
|
1
|
-
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
3
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
4
|
+
.mds-inputnumber {
|
|
5
|
+
display: inline-block;
|
|
6
|
+
position: relative;
|
|
7
|
+
border: 1px solid #D9D9D9;
|
|
8
|
+
overflow: hidden;
|
|
9
|
+
}
|
|
10
|
+
.mds-inputnumber:hover {
|
|
11
|
+
border-color: #0364FF;
|
|
12
|
+
cursor: pointer;
|
|
13
|
+
}
|
|
14
|
+
.mds-inputnumber.disabled:hover {
|
|
15
|
+
border: 1px solid #D9D9D9;
|
|
16
|
+
cursor: not-allowed;
|
|
17
|
+
}
|
|
18
|
+
.mds-inputnumber-medium {
|
|
19
|
+
width: 120px;
|
|
20
|
+
height: 36px;
|
|
21
|
+
border-radius: 3px;
|
|
22
|
+
}
|
|
23
|
+
.mds-inputnumber-medium.is-control-right {
|
|
24
|
+
width: 72px;
|
|
25
|
+
height: 36px;
|
|
26
|
+
position: relative;
|
|
27
|
+
}
|
|
28
|
+
.mds-inputnumber-medium.is-control-right > .mds-inputnumber_decrease {
|
|
29
|
+
width: 32px;
|
|
30
|
+
height: 18px;
|
|
31
|
+
line-height: 18px;
|
|
32
|
+
position: absolute;
|
|
33
|
+
z-index: 500;
|
|
34
|
+
bottom: 0;
|
|
35
|
+
right: 0;
|
|
36
|
+
top: auto;
|
|
37
|
+
left: auto;
|
|
38
|
+
border: none;
|
|
39
|
+
border-left: 1px solid #CAD2DD;
|
|
40
|
+
}
|
|
41
|
+
.mds-inputnumber-medium.is-control-right > .mds-inputnumber_decrease:hover {
|
|
42
|
+
color: #0364FF;
|
|
43
|
+
}
|
|
44
|
+
.mds-inputnumber-medium.is-control-right > .mds-inputnumber_increase {
|
|
45
|
+
width: 32px;
|
|
46
|
+
height: 18px;
|
|
47
|
+
line-height: 18px;
|
|
48
|
+
position: absolute;
|
|
49
|
+
z-index: 500;
|
|
50
|
+
top: 0;
|
|
51
|
+
left: auto;
|
|
52
|
+
right: 0;
|
|
53
|
+
bottom: auto;
|
|
54
|
+
border: none;
|
|
55
|
+
border-left: 1px solid #CAD2DD;
|
|
56
|
+
border-bottom: 1px solid #CAD2DD;
|
|
57
|
+
}
|
|
58
|
+
.mds-inputnumber-medium.is-control-right > .mds-inputnumber_increase:hover {
|
|
59
|
+
color: #0364FF;
|
|
60
|
+
}
|
|
61
|
+
.mds-inputnumber-medium.is-control-right .mds-inputnumber-input {
|
|
62
|
+
padding: 0 32px 0 0;
|
|
63
|
+
}
|
|
64
|
+
.mds-inputnumber-medium > .mds-inputnumber_decrease,
|
|
65
|
+
.mds-inputnumber-medium > .mds-inputnumber_increase {
|
|
66
|
+
width: 36px;
|
|
67
|
+
height: 36px;
|
|
68
|
+
line-height: 36px;
|
|
69
|
+
}
|
|
70
|
+
.mds-inputnumber-large {
|
|
71
|
+
width: 136px;
|
|
72
|
+
height: 40px;
|
|
73
|
+
border-radius: 4px;
|
|
74
|
+
}
|
|
75
|
+
.mds-inputnumber-large.is-control-right {
|
|
76
|
+
width: 80px;
|
|
77
|
+
height: 40px;
|
|
78
|
+
position: relative;
|
|
79
|
+
}
|
|
80
|
+
.mds-inputnumber-large.is-control-right > .mds-inputnumber_decrease {
|
|
81
|
+
width: 40px;
|
|
82
|
+
height: 20px;
|
|
83
|
+
line-height: 20px;
|
|
84
|
+
position: absolute;
|
|
85
|
+
z-index: 500;
|
|
86
|
+
bottom: 0;
|
|
87
|
+
right: 0;
|
|
88
|
+
top: auto;
|
|
89
|
+
left: auto;
|
|
90
|
+
border: none;
|
|
91
|
+
border-left: 1px solid #CAD2DD;
|
|
92
|
+
}
|
|
93
|
+
.mds-inputnumber-large.is-control-right > .mds-inputnumber_decrease:hover {
|
|
94
|
+
color: #0364FF;
|
|
95
|
+
}
|
|
96
|
+
.mds-inputnumber-large.is-control-right > .mds-inputnumber_increase {
|
|
97
|
+
width: 40px;
|
|
98
|
+
height: 20px;
|
|
99
|
+
line-height: 20px;
|
|
100
|
+
position: absolute;
|
|
101
|
+
z-index: 500;
|
|
102
|
+
top: 0;
|
|
103
|
+
left: auto;
|
|
104
|
+
right: 0;
|
|
105
|
+
bottom: auto;
|
|
106
|
+
border: none;
|
|
107
|
+
border-left: 1px solid #CAD2DD;
|
|
108
|
+
border-bottom: 1px solid #CAD2DD;
|
|
109
|
+
}
|
|
110
|
+
.mds-inputnumber-large.is-control-right > .mds-inputnumber_increase:hover {
|
|
111
|
+
color: #0364FF;
|
|
112
|
+
}
|
|
113
|
+
.mds-inputnumber-large.is-control-right .mds-inputnumber-input {
|
|
114
|
+
padding: 0 40px 0 0;
|
|
115
|
+
}
|
|
116
|
+
.mds-inputnumber-large > .mds-inputnumber_decrease,
|
|
117
|
+
.mds-inputnumber-large > .mds-inputnumber_increase {
|
|
118
|
+
width: 40px;
|
|
119
|
+
height: 40px;
|
|
120
|
+
line-height: 40px;
|
|
121
|
+
}
|
|
122
|
+
.mds-inputnumber-large > .mds-inputnumber-input > input {
|
|
123
|
+
height: 40px;
|
|
124
|
+
}
|
|
125
|
+
.mds-inputnumber-small {
|
|
126
|
+
width: 104px;
|
|
127
|
+
height: 32px;
|
|
128
|
+
border-radius: 2px;
|
|
129
|
+
}
|
|
130
|
+
.mds-inputnumber-small.is-control-right {
|
|
131
|
+
width: 64px;
|
|
132
|
+
height: 32px;
|
|
133
|
+
position: relative;
|
|
134
|
+
}
|
|
135
|
+
.mds-inputnumber-small.is-control-right > .mds-inputnumber_decrease {
|
|
136
|
+
width: 24px;
|
|
137
|
+
height: 16px;
|
|
138
|
+
line-height: 16px;
|
|
139
|
+
position: absolute;
|
|
140
|
+
z-index: 500;
|
|
141
|
+
bottom: 0;
|
|
142
|
+
right: 0;
|
|
143
|
+
top: auto;
|
|
144
|
+
left: auto;
|
|
145
|
+
border: none;
|
|
146
|
+
border-left: 1px solid #CAD2DD;
|
|
147
|
+
}
|
|
148
|
+
.mds-inputnumber-small.is-control-right > .mds-inputnumber_decrease:hover {
|
|
149
|
+
color: #0364FF;
|
|
150
|
+
}
|
|
151
|
+
.mds-inputnumber-small.is-control-right > .mds-inputnumber_increase {
|
|
152
|
+
width: 24px;
|
|
153
|
+
height: 16px;
|
|
154
|
+
line-height: 16px;
|
|
155
|
+
position: absolute;
|
|
156
|
+
z-index: 500;
|
|
157
|
+
top: 0;
|
|
158
|
+
left: auto;
|
|
159
|
+
right: 0;
|
|
160
|
+
bottom: auto;
|
|
161
|
+
border: none;
|
|
162
|
+
border-left: 1px solid #CAD2DD;
|
|
163
|
+
border-bottom: 1px solid #CAD2DD;
|
|
164
|
+
}
|
|
165
|
+
.mds-inputnumber-small.is-control-right > .mds-inputnumber_increase:hover {
|
|
166
|
+
color: #0364FF;
|
|
167
|
+
}
|
|
168
|
+
.mds-inputnumber-small.is-control-right .mds-inputnumber-input {
|
|
169
|
+
padding: 0 24px 0 0;
|
|
170
|
+
}
|
|
171
|
+
.mds-inputnumber-small > .mds-inputnumber_decrease,
|
|
172
|
+
.mds-inputnumber-small > .mds-inputnumber_increase {
|
|
173
|
+
width: 32px;
|
|
174
|
+
height: 32px;
|
|
175
|
+
line-height: 32px;
|
|
176
|
+
}
|
|
177
|
+
.mds-inputnumber-small > .mds-inputnumber-input {
|
|
178
|
+
padding: 0 31px;
|
|
179
|
+
}
|
|
180
|
+
.mds-inputnumber-small > .mds-inputnumber-input > input {
|
|
181
|
+
height: 32px;
|
|
182
|
+
padding: 0 0px;
|
|
183
|
+
}
|
|
184
|
+
.mds-inputnumber-mini {
|
|
185
|
+
width: 88px;
|
|
186
|
+
height: 28px;
|
|
187
|
+
border-radius: 1px;
|
|
188
|
+
}
|
|
189
|
+
.mds-inputnumber-mini.is-control-right {
|
|
190
|
+
width: 55px;
|
|
191
|
+
height: 28px;
|
|
192
|
+
position: relative;
|
|
193
|
+
}
|
|
194
|
+
.mds-inputnumber-mini.is-control-right > .mds-inputnumber_decrease {
|
|
195
|
+
width: 16px;
|
|
196
|
+
height: 14px;
|
|
197
|
+
line-height: 14px;
|
|
198
|
+
position: absolute;
|
|
199
|
+
z-index: 500;
|
|
200
|
+
bottom: 0;
|
|
201
|
+
right: 0;
|
|
202
|
+
top: auto;
|
|
203
|
+
left: auto;
|
|
204
|
+
border: none;
|
|
205
|
+
border-left: 1px solid #CAD2DD;
|
|
206
|
+
}
|
|
207
|
+
.mds-inputnumber-mini.is-control-right > .mds-inputnumber_decrease:hover {
|
|
208
|
+
color: #0364FF;
|
|
209
|
+
}
|
|
210
|
+
.mds-inputnumber-mini.is-control-right > .mds-inputnumber_increase {
|
|
211
|
+
width: 16px;
|
|
212
|
+
height: 14px;
|
|
213
|
+
line-height: 14px;
|
|
214
|
+
position: absolute;
|
|
215
|
+
z-index: 500;
|
|
216
|
+
top: 0;
|
|
217
|
+
left: auto;
|
|
218
|
+
right: 0;
|
|
219
|
+
bottom: auto;
|
|
220
|
+
border: none;
|
|
221
|
+
border-left: 1px solid #CAD2DD;
|
|
222
|
+
border-bottom: 1px solid #CAD2DD;
|
|
223
|
+
}
|
|
224
|
+
.mds-inputnumber-mini.is-control-right > .mds-inputnumber_increase:hover {
|
|
225
|
+
color: #0364FF;
|
|
226
|
+
}
|
|
227
|
+
.mds-inputnumber-mini.is-control-right .mds-inputnumber-input {
|
|
228
|
+
padding: 0 16px 0 0;
|
|
229
|
+
}
|
|
230
|
+
.mds-inputnumber-mini > .mds-inputnumber_decrease,
|
|
231
|
+
.mds-inputnumber-mini > .mds-inputnumber_increase {
|
|
232
|
+
width: 28px;
|
|
233
|
+
height: 28px;
|
|
234
|
+
line-height: 28px;
|
|
235
|
+
}
|
|
236
|
+
.mds-inputnumber-mini > .mds-inputnumber-input {
|
|
237
|
+
padding: 0 26px;
|
|
238
|
+
}
|
|
239
|
+
.mds-inputnumber-mini > .mds-inputnumber-input > input {
|
|
240
|
+
height: 28px;
|
|
241
|
+
padding: 0 0px;
|
|
242
|
+
}
|
|
243
|
+
.mds-inputnumber_decrease {
|
|
244
|
+
position: absolute;
|
|
245
|
+
left: 0;
|
|
246
|
+
top: 0;
|
|
247
|
+
z-index: 10;
|
|
248
|
+
text-align: center;
|
|
249
|
+
border-right: 1px solid #CAD2DD;
|
|
250
|
+
cursor: pointer;
|
|
251
|
+
color: #5E6C84;
|
|
252
|
+
}
|
|
253
|
+
.mds-inputnumber_decrease:hover {
|
|
254
|
+
color: #0364FF;
|
|
255
|
+
}
|
|
256
|
+
.mds-inputnumber_decrease.disabled {
|
|
257
|
+
background: #f0f2f5;
|
|
258
|
+
cursor: not-allowed;
|
|
259
|
+
}
|
|
260
|
+
.mds-inputnumber_decrease.disabled:hover {
|
|
261
|
+
color: #5E6C84;
|
|
262
|
+
}
|
|
263
|
+
.mds-inputnumber_increase {
|
|
264
|
+
position: absolute;
|
|
265
|
+
right: 0;
|
|
266
|
+
top: 0;
|
|
267
|
+
z-index: 10;
|
|
268
|
+
text-align: center;
|
|
269
|
+
color: #5E6C84;
|
|
270
|
+
border-left: 1px solid #CAD2DD;
|
|
271
|
+
cursor: pointer;
|
|
272
|
+
}
|
|
273
|
+
.mds-inputnumber_increase:hover {
|
|
274
|
+
color: #0364FF;
|
|
275
|
+
}
|
|
276
|
+
.mds-inputnumber_increase.disabled {
|
|
277
|
+
background: #f0f2f5;
|
|
278
|
+
cursor: not-allowed;
|
|
279
|
+
}
|
|
280
|
+
.mds-inputnumber_increase.disabled:hover {
|
|
281
|
+
color: #5E6C84;
|
|
282
|
+
}
|
|
283
|
+
.mds-inputnumber-input {
|
|
284
|
+
box-sizing: border-box;
|
|
285
|
+
border: none;
|
|
286
|
+
padding: 0 36px;
|
|
287
|
+
}
|
|
288
|
+
.mds-inputnumber-input.disabled {
|
|
289
|
+
background: #f0f2f5;
|
|
290
|
+
}
|
|
291
|
+
.mds-inputnumber-input > input {
|
|
292
|
+
padding: 0 12px;
|
|
293
|
+
font-size: 14px;
|
|
294
|
+
border: none;
|
|
295
|
+
font-family: PingFangSC-Regular, PingFang SC;
|
|
296
|
+
font-weight: 400;
|
|
297
|
+
color: #354052;
|
|
298
|
+
text-align: center;
|
|
299
|
+
}
|
|
300
|
+
.mds-inputnumber-input > input.mds-input-disabled {
|
|
301
|
+
background: #f0f2f5;
|
|
302
|
+
}
|
|
303
|
+
.mds-inputnumber.is-control-right .mds-inputnumber_decrease,
|
|
304
|
+
.mds-inputnumber.is-control-right .mds-inputnumber_increase {
|
|
305
|
+
color: #5E6C84;
|
|
306
|
+
font-size: 12px;
|
|
307
|
+
}
|
|
308
|
+
.mds-inputnumber.is-control-right .mds-inputnumber-input > input {
|
|
309
|
+
padding: 0 0 0 8px;
|
|
310
|
+
text-align: left;
|
|
311
|
+
}
|
|
312
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
313
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
314
|
+
/* stylelint-disable declaration-bang-space-before */
|
package/dist/style/layout.css
CHANGED
|
@@ -1 +1,58 @@
|
|
|
1
|
-
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
3
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
4
|
+
.code-box-demo > .mds-layout {
|
|
5
|
+
margin-bottom: 48px;
|
|
6
|
+
}
|
|
7
|
+
.mds-layout {
|
|
8
|
+
display: flex;
|
|
9
|
+
flex-direction: column;
|
|
10
|
+
flex: auto;
|
|
11
|
+
}
|
|
12
|
+
.mds-layout.mds-layout-has-sider {
|
|
13
|
+
flex-direction: row;
|
|
14
|
+
}
|
|
15
|
+
.mds-layout.mds-layout-has-sider > .mds-layout,
|
|
16
|
+
.mds-layout.mds-layout-has-sider > .mds-layout-content {
|
|
17
|
+
overflow-x: hidden;
|
|
18
|
+
}
|
|
19
|
+
.mds-layout-header,
|
|
20
|
+
.mds-layout-footer {
|
|
21
|
+
flex: 0 0 auto;
|
|
22
|
+
}
|
|
23
|
+
.mds-layout-content {
|
|
24
|
+
flex: auto;
|
|
25
|
+
}
|
|
26
|
+
.mds-layout-sider {
|
|
27
|
+
position: relative;
|
|
28
|
+
}
|
|
29
|
+
.mds-layout-sider-right {
|
|
30
|
+
order: 1;
|
|
31
|
+
}
|
|
32
|
+
.mds-layout-sider-trigger {
|
|
33
|
+
position: fixed;
|
|
34
|
+
}
|
|
35
|
+
.mds-layout-sider-zero-width > * {
|
|
36
|
+
overflow: hidden;
|
|
37
|
+
}
|
|
38
|
+
.mds-layout-sider-zero-width-trigger {
|
|
39
|
+
position: absolute;
|
|
40
|
+
top: 64px;
|
|
41
|
+
right: -36px;
|
|
42
|
+
text-align: center;
|
|
43
|
+
width: 36px;
|
|
44
|
+
height: 42px;
|
|
45
|
+
line-height: 42px;
|
|
46
|
+
background: #404040;
|
|
47
|
+
color: #fff;
|
|
48
|
+
font-size: 18px;
|
|
49
|
+
border-radius: 0 4px 4px 0;
|
|
50
|
+
cursor: pointer;
|
|
51
|
+
transition: background .3s ease;
|
|
52
|
+
}
|
|
53
|
+
.mds-layout-sider-zero-width-trigger:hover {
|
|
54
|
+
background: #535353;
|
|
55
|
+
}
|
|
56
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
57
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
58
|
+
/* stylelint-disable declaration-bang-space-before */
|
package/dist/style/list.css
CHANGED
|
@@ -1 +1,141 @@
|
|
|
1
|
-
|
|
1
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
2
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
3
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
4
|
+
.mds-list {
|
|
5
|
+
color: #354052;
|
|
6
|
+
}
|
|
7
|
+
.mds-list-bordered {
|
|
8
|
+
border: 1px solid #F0F2F5;
|
|
9
|
+
border-radius: 4px;
|
|
10
|
+
}
|
|
11
|
+
.mds-list-head {
|
|
12
|
+
font-size: 16px;
|
|
13
|
+
padding: 0 24px;
|
|
14
|
+
height: 56px;
|
|
15
|
+
line-height: 56px;
|
|
16
|
+
white-space: nowrap;
|
|
17
|
+
font-weight: 500;
|
|
18
|
+
color: #354052;
|
|
19
|
+
border-bottom: 1px solid #F0F2F5;
|
|
20
|
+
}
|
|
21
|
+
.mds-list-foot {
|
|
22
|
+
padding: 0 24px;
|
|
23
|
+
height: 56px;
|
|
24
|
+
line-height: 56px;
|
|
25
|
+
white-space: nowrap;
|
|
26
|
+
}
|
|
27
|
+
.mds-list .mds-list-container {
|
|
28
|
+
overflow: auto;
|
|
29
|
+
}
|
|
30
|
+
.mds-list .mds-list-item {
|
|
31
|
+
padding: 0 24px;
|
|
32
|
+
border-bottom: 1px solid #F0F2F5;
|
|
33
|
+
}
|
|
34
|
+
.mds-list .mds-list-item:hover {
|
|
35
|
+
background-color: #EEF8FF;
|
|
36
|
+
}
|
|
37
|
+
.mds-list .mds-list-item:hover .mds-list-item-title {
|
|
38
|
+
color: #0364FF !important;
|
|
39
|
+
}
|
|
40
|
+
.mds-list .mds-list-item:last-child {
|
|
41
|
+
border-bottom-color: transparent;
|
|
42
|
+
}
|
|
43
|
+
.mds-list .mds-list-head,
|
|
44
|
+
.mds-list .mds-list-foot {
|
|
45
|
+
font-size: 16px;
|
|
46
|
+
height: 56px;
|
|
47
|
+
line-height: 56px;
|
|
48
|
+
}
|
|
49
|
+
.mds-list .mds-list-tips {
|
|
50
|
+
padding: 15px 0;
|
|
51
|
+
text-align: center;
|
|
52
|
+
color: #7F8FA4;
|
|
53
|
+
border-top: 1px solid #F0F2F5;
|
|
54
|
+
}
|
|
55
|
+
.mds-list .mds-list-loadmore {
|
|
56
|
+
cursor: pointer;
|
|
57
|
+
}
|
|
58
|
+
.mds-list-sm .mds-list-item {
|
|
59
|
+
padding-top: 8px;
|
|
60
|
+
padding-bottom: 8px;
|
|
61
|
+
}
|
|
62
|
+
.mds-list-sm .mds-list-loadmore {
|
|
63
|
+
padding: 6px 0;
|
|
64
|
+
}
|
|
65
|
+
.mds-list-default .mds-list-item {
|
|
66
|
+
padding-top: 12px;
|
|
67
|
+
padding-bottom: 12px;
|
|
68
|
+
}
|
|
69
|
+
.mds-list-lg .mds-list-item {
|
|
70
|
+
padding-top: 16px;
|
|
71
|
+
padding-bottom: 16px;
|
|
72
|
+
}
|
|
73
|
+
.mds-list .mds-list-item-container .mds-list-item-title {
|
|
74
|
+
color: #354052;
|
|
75
|
+
}
|
|
76
|
+
.mds-list .mds-list-item-container .mds-list-item-desc {
|
|
77
|
+
line-height: 22px;
|
|
78
|
+
color: #7F8FA4;
|
|
79
|
+
}
|
|
80
|
+
.mds-list-default .mds-list-item-container .mds-list-item-title {
|
|
81
|
+
font-size: 14px;
|
|
82
|
+
line-height: 22px;
|
|
83
|
+
}
|
|
84
|
+
.mds-list-default .mds-list-item-container .mds-list-item-desc {
|
|
85
|
+
margin-top: 3px;
|
|
86
|
+
}
|
|
87
|
+
.mds-list-lg .mds-list-item-container .mds-list-item-title {
|
|
88
|
+
font-size: 16px;
|
|
89
|
+
line-height: 24px;
|
|
90
|
+
}
|
|
91
|
+
.mds-list-lg .mds-list-item-container .mds-list-item-desc {
|
|
92
|
+
margin-top: 12px;
|
|
93
|
+
}
|
|
94
|
+
.mds-list-complex .mds-list-item-container {
|
|
95
|
+
font-size: 0;
|
|
96
|
+
position: relative;
|
|
97
|
+
display: table;
|
|
98
|
+
border-collapse: separate;
|
|
99
|
+
border-spacing: 0;
|
|
100
|
+
width: 100%;
|
|
101
|
+
}
|
|
102
|
+
.mds-list-complex .mds-list-item-container .mds-list-item-cell {
|
|
103
|
+
display: table-cell;
|
|
104
|
+
font-size: 14px;
|
|
105
|
+
vertical-align: top;
|
|
106
|
+
}
|
|
107
|
+
.mds-list-complex .mds-list-item-container .mds-list-item-avatar {
|
|
108
|
+
padding-right: 16px;
|
|
109
|
+
}
|
|
110
|
+
.mds-list-complex .mds-list-item-container .mds-list-item-avatar .content {
|
|
111
|
+
background-color: #222;
|
|
112
|
+
}
|
|
113
|
+
.mds-list-complex .mds-list-item-container .mds-list-item-remarks {
|
|
114
|
+
width: 85px;
|
|
115
|
+
padding-left: 40px;
|
|
116
|
+
color: #7F8FA4;
|
|
117
|
+
}
|
|
118
|
+
.mds-list-default .mds-list-item-container .mds-list-item-avatar {
|
|
119
|
+
width: 53px;
|
|
120
|
+
}
|
|
121
|
+
.mds-list-default .mds-list-item-container .mds-list-item-avatar .content {
|
|
122
|
+
width: 36px;
|
|
123
|
+
height: 36px;
|
|
124
|
+
border-radius: 50%;
|
|
125
|
+
}
|
|
126
|
+
.mds-list-lg .mds-list-item-container .mds-list-item-avatar {
|
|
127
|
+
width: 156px;
|
|
128
|
+
}
|
|
129
|
+
.mds-list-lg .mds-list-item-container .mds-list-item-avatar .content {
|
|
130
|
+
width: 140px;
|
|
131
|
+
height: 80px;
|
|
132
|
+
}
|
|
133
|
+
.mds-list-sm .mds-list-head,
|
|
134
|
+
.mds-list-sm .mds-list-foot {
|
|
135
|
+
font-size: 14px;
|
|
136
|
+
height: 48px;
|
|
137
|
+
line-height: 48px;
|
|
138
|
+
}
|
|
139
|
+
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
|
|
140
|
+
/* stylelint-disable declaration-bang-space-before */
|
|
141
|
+
/* stylelint-disable declaration-bang-space-before */
|