@nutui/nutui-react 1.3.9 → 1.3.10-beta.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/CHANGELOG.md +36 -0
- package/dist/esm/Button.js +3 -1
- package/dist/esm/Checkbox.js +7 -121
- package/dist/esm/CheckboxGroup.js +36 -4
- package/dist/esm/Input.js +11 -4
- package/dist/esm/Menu.js +3 -2
- package/dist/esm/MenuItem.js +1 -2
- package/dist/esm/NoticeBar.js +12 -16
- package/dist/esm/Price.js +20 -23
- package/dist/esm/Radio.js +6 -115
- package/dist/esm/RadioGroup.js +36 -6
- package/dist/esm/TabbarItem.js +6 -5
- package/dist/esm/Tag.js +6 -4
- package/dist/esm/checkbox-255983fc.js +121 -0
- package/dist/esm/radio-cf953c7a.js +118 -0
- package/dist/esm/types/src/packages/checkbox/checkbox.d.ts +6 -1
- package/dist/esm/types/src/packages/checkboxgroup/checkboxgroup.d.ts +2 -0
- package/dist/esm/types/src/packages/checkboxgroup/type.d.ts +6 -0
- package/dist/esm/types/src/packages/input/input.d.ts +1 -0
- package/dist/esm/types/src/packages/nutui.react.taro.scss.d.ts +91 -0
- package/dist/esm/types/src/packages/price/price.d.ts +2 -0
- package/dist/esm/types/src/packages/radiogroup/radiogroup.d.ts +2 -0
- package/dist/esm/types/src/packages/radiogroup/type.d.ts +7 -0
- package/dist/esm/types/src/packages/tabbaritem/tabbaritem.d.ts +1 -1
- package/dist/locales/base.js +1 -1
- package/dist/locales/en-US.js +1 -1
- package/dist/locales/id-ID.js +1 -1
- package/dist/locales/zh-CN.js +1 -1
- package/dist/locales/zh-TW.js +1 -1
- package/dist/nutui.react.es.js +162 -83
- package/dist/nutui.react.umd.js +162 -83
- package/dist/packages/badge/badge.scss +10 -10
- package/dist/packages/button/button.scss +3 -3
- package/dist/packages/cell/cell.scss +1 -4
- package/dist/packages/cellgroup/cellgroup.scss +8 -0
- package/dist/packages/countdown/countdown.scss +1 -1
- package/dist/packages/infiniteloading/infiniteloading.scss +1 -1
- package/dist/packages/inputnumber/inputnumber.scss +3 -3
- package/dist/packages/noticebar/noticebar.scss +3 -0
- package/dist/packages/price/price.scss +27 -11
- package/dist/packages/radio/radio.scss +8 -7
- package/dist/packages/shortpassword/shortpassword.scss +4 -4
- package/dist/packages/skeleton/skeleton.scss +1 -1
- package/dist/packages/swiper/swiper.scss +4 -4
- package/dist/packages/switch/switch.scss +8 -8
- package/dist/packages/timepannel/timepannel.scss +3 -3
- package/dist/packages/timeselect/timeselect.scss +4 -4
- package/dist/style.css +1 -1
- package/dist/style.es.js +1 -1
- package/dist/styles/variables.scss +573 -248
- package/dist/types/index.d.ts +19 -3
- package/package.json +1 -1
- package/dist/esm/context-aa058329.js +0 -6
|
@@ -13,8 +13,8 @@ $title-color2: #666666 !default;
|
|
|
13
13
|
$text-color: #808080 !default;
|
|
14
14
|
// 特殊禁用色
|
|
15
15
|
$disable-color: #cccccc !default;
|
|
16
|
-
$white: #fff;
|
|
17
|
-
$black: #000;
|
|
16
|
+
$white: #fff !default;
|
|
17
|
+
$black: #000 !default;
|
|
18
18
|
$required-color: #fa2c19 !default;
|
|
19
19
|
|
|
20
20
|
$dark-background: #131313 !default;
|
|
@@ -52,13 +52,17 @@ $font-size-small: $font-size-1 !default;
|
|
|
52
52
|
$font-size-base: $font-size-2 !default;
|
|
53
53
|
$font-size-large: $font-size-3 !default;
|
|
54
54
|
$line-height-base: 1.5 !default;
|
|
55
|
-
// button
|
|
55
|
+
// button(✅)
|
|
56
56
|
$button-border-radius: 25px !default;
|
|
57
57
|
$button-border-width: 1px !default;
|
|
58
58
|
$button-default-bg-color: $white !default;
|
|
59
59
|
$button-default-border-color: rgba(204, 204, 204, 1) !default;
|
|
60
60
|
$button-default-color: rgba(102, 102, 102, 1) !default;
|
|
61
|
+
$button-default-padding: 0 18px !default;
|
|
62
|
+
$button-mini-padding: 0 12px !default;
|
|
63
|
+
$button-small-padding: 0 12px !default;
|
|
61
64
|
$button-small-height: 28px !default;
|
|
65
|
+
$button-mini-height: 24px !default;
|
|
62
66
|
$button-default-height: 38px !default;
|
|
63
67
|
$button-large-height: 48px !default;
|
|
64
68
|
$button-large-line-height: 46px !default;
|
|
@@ -67,6 +71,10 @@ $button-block-height: 48px !default;
|
|
|
67
71
|
$button-default-line-height: 36px !default;
|
|
68
72
|
$button-block-line-height: 46px !default;
|
|
69
73
|
$button-default-font-size: $font-size-2 !default;
|
|
74
|
+
$button-large-font-size: $button-default-font-size !default;
|
|
75
|
+
$button-small-font-size: $font-size-1 !default;
|
|
76
|
+
$button-mini-font-size: $font-size-1 !default;
|
|
77
|
+
$button-mini-line-height: 1.2 !default;
|
|
70
78
|
$button-disabled-opacity: 0.68 !default;
|
|
71
79
|
$button-primary-color: $white !default;
|
|
72
80
|
$button-primary-border-color: $primary-color !default;
|
|
@@ -104,10 +112,11 @@ $button-warning-background-color: linear-gradient(
|
|
|
104
112
|
rgba(255, 182, 13, 1) 83%,
|
|
105
113
|
rgba(255, 190, 13, 1) 100%
|
|
106
114
|
) !default;
|
|
107
|
-
|
|
115
|
+
|
|
108
116
|
$button-plain-background-color: $white !default;
|
|
117
|
+
$button-small-round-border-radius: $button-border-radius !default;
|
|
109
118
|
|
|
110
|
-
// cell
|
|
119
|
+
// cell(✅)
|
|
111
120
|
|
|
112
121
|
$cell-color: $title-color2 !default;
|
|
113
122
|
$cell-title-font: $font-size-2 !default;
|
|
@@ -125,7 +134,7 @@ $cell-large-title-desc-font: $font-size-base !default;
|
|
|
125
134
|
$cell-large-padding: 15px 16px !default;
|
|
126
135
|
$cell-background: $white !default;
|
|
127
136
|
|
|
128
|
-
// cell-group
|
|
137
|
+
// cell-group(✅)
|
|
129
138
|
|
|
130
139
|
$cell-group-title-padding: 0 10px !default;
|
|
131
140
|
$cell-group-title-color: #909ca4 !default;
|
|
@@ -136,26 +145,56 @@ $cell-group-desc-color: #909ca4 !default;
|
|
|
136
145
|
$cell-group-desc-font-size: $font-size-1 !default;
|
|
137
146
|
$cell-group-desc-line-height: 16px !default;
|
|
138
147
|
$cell-group-background-color: $white !default;
|
|
139
|
-
|
|
148
|
+
|
|
149
|
+
// divider(✅)
|
|
150
|
+
|
|
151
|
+
$divider-margin: 16px 0 !default;
|
|
152
|
+
$divider-text-font-size: $font-size-2 !default;
|
|
153
|
+
$divider-text-color: #909ca4 !default;
|
|
154
|
+
$divider-line-height: 2px !default;
|
|
155
|
+
$divider-before-margin-right: 16px !default;
|
|
156
|
+
$divider-after-margin-left: 16px !default;
|
|
157
|
+
$divider-vertical-height: 12px !default;
|
|
158
|
+
$divider-vertical-top: 2px !default;
|
|
159
|
+
$divider-vertical-border-left: rgba(0, 0, 0, 0.06) !default;
|
|
160
|
+
$divider-vertical-margin: 0 8px !default;
|
|
161
|
+
|
|
162
|
+
// icon(✅)
|
|
140
163
|
|
|
141
164
|
$icon-height: 20px !default;
|
|
142
165
|
$icon-width: 20px !default;
|
|
143
166
|
$icon-line-height: 20px !default;
|
|
144
167
|
|
|
145
|
-
// uploader
|
|
168
|
+
// uploader(✅)
|
|
146
169
|
|
|
147
170
|
$uploader-picture-width: 100px !default;
|
|
148
171
|
$uploader-picture-height: 100px !default;
|
|
149
172
|
$uploader-background: #f7f8fa !default;
|
|
150
173
|
|
|
151
|
-
//
|
|
174
|
+
// picker(✅)(todo:react版本picker组件dom元素类名变化较大,picker.scss暂不改动)
|
|
175
|
+
$picker-cancel-color: #808080 !default;
|
|
176
|
+
$picker-ok-color: $primary-color !default;
|
|
177
|
+
$picker-bar-cancel-font-size: 14px !default;
|
|
178
|
+
$picker-bar-ok-font-size: 14px !default;
|
|
179
|
+
$picker-bar-button-padding: 0 15px !default;
|
|
180
|
+
$picker-bar-title-font-size: 16px !default;
|
|
181
|
+
$picker-bar-title-color: $title-color !default;
|
|
182
|
+
$picker-bar-title-font-weight: normal !default;
|
|
183
|
+
$picker-item-height: 36px !default;
|
|
184
|
+
$picker-item-text-color: $title-color !default;
|
|
185
|
+
$picker-item-active-text-color: inherit !default;
|
|
186
|
+
$picker-item-text-font-size: 14px !default;
|
|
187
|
+
$picker-item-active-line-border: 1px solid #d8d8d8 !default;
|
|
188
|
+
$picker-columns-item-color: $title-color !default;
|
|
189
|
+
|
|
190
|
+
//input(✅)
|
|
152
191
|
$input-border-bottom: #eaf0fb !default;
|
|
153
192
|
$input-disabled-color: #c8c9cc !default;
|
|
154
193
|
$input-required-color: $required-color !default;
|
|
155
194
|
$input-font-size: $font-size-2 !default;
|
|
156
195
|
$input-padding: 10px 25px !default;
|
|
157
196
|
|
|
158
|
-
// textarea
|
|
197
|
+
// textarea(✅)
|
|
159
198
|
|
|
160
199
|
$textarea-font: $font-size-2 !default;
|
|
161
200
|
$textarea-height: 100px !default;
|
|
@@ -163,32 +202,90 @@ $textarea-limit-color: $text-color !default;
|
|
|
163
202
|
$textarea-text-color: $title-color !default;
|
|
164
203
|
$textarea-disabled-color: $disable-color !default;
|
|
165
204
|
|
|
166
|
-
// inputnumber
|
|
205
|
+
// inputnumber(✅)
|
|
167
206
|
|
|
168
207
|
$inputnumber-icon-color: $title-color !default;
|
|
169
208
|
$inputnumber-icon-void-color: $disable-color !default;
|
|
209
|
+
$inputnumber-icon-size: 20px !default;
|
|
210
|
+
$inputnumber-input-font-size: 12px !default;
|
|
211
|
+
$inputnumber-input-font-color: $title-color !default;
|
|
170
212
|
$inputnumber-input-background-color: $help-color !default;
|
|
171
213
|
$inputnumber-input-border-radius: 4px !default;
|
|
172
214
|
$inputnumber-input-width: 40px !default;
|
|
173
|
-
$inputnumber-
|
|
174
|
-
|
|
175
|
-
|
|
215
|
+
$inputnumber-input-margin: 0 6px !default;
|
|
216
|
+
$inputnumber-input-border: 0 !default;
|
|
217
|
+
$inputnumber-border: 0 !default;
|
|
218
|
+
$inputnumber-border-radius: 0 !default;
|
|
219
|
+
$inputnumber-height: auto !default;
|
|
220
|
+
$inputnumber-line-height: normal !default;
|
|
221
|
+
$inputnumber-border-box: content-box !default;
|
|
222
|
+
$inputnumber-display: flex !default;
|
|
223
|
+
|
|
224
|
+
// actionsheet(✅)
|
|
176
225
|
$zindex-actionsheet: 10001 !default;
|
|
177
226
|
$body-background: #f6f6f6 !default;
|
|
178
227
|
$light-color: #f6f6f6 !default;
|
|
179
|
-
$font-size-base: $font-size-2
|
|
180
|
-
$font-size-small: $font-size-1
|
|
228
|
+
$font-size-base: $font-size-2;
|
|
229
|
+
$font-size-small: $font-size-1;
|
|
230
|
+
$actionsheet-light-color: #f6f6f6 !default;
|
|
231
|
+
$actionsheet-item-border-bottom: none !default;
|
|
232
|
+
$actionsheet-item-font-size: $font-size-2 !default;
|
|
233
|
+
$actionsheet-item-subdesc-font-size: $font-size-1 !default;
|
|
234
|
+
$actionsheet-item-cancel-border-top: 1px solid $actionsheet-light-color !default;
|
|
235
|
+
$actionsheet-item-line-height: 24px !default;
|
|
236
|
+
$actionsheet-item-font-color: $title-color !default;
|
|
237
|
+
|
|
238
|
+
//shortpassword(✅)
|
|
239
|
+
$shortpassword-background-color: rgba(245, 245, 245, 1) !default;
|
|
240
|
+
$shortpassword-border-color: #ddd !default;
|
|
241
|
+
$shortpassword-error: $primary-color !default;
|
|
242
|
+
$shortpassword-forget: rgba(128, 128, 128, 1) !default;
|
|
243
|
+
|
|
244
|
+
//numberkeyboard(✅)
|
|
245
|
+
$numberkeyboard-width: 100% !default;
|
|
246
|
+
$numberkeyboard-padding: 0 0 22px 0 !default;
|
|
247
|
+
$numberkeyboard-background-color: #f2f3f5 !default;
|
|
248
|
+
$numberkeyboard-header-height: 34px !default;
|
|
249
|
+
$numberkeyboard-header-padding: 6px 0 0 0 !default;
|
|
250
|
+
$numberkeyboard-header-color: #646566 !default;
|
|
251
|
+
$numberkeyboard-header-font-size: 16px !default;
|
|
252
|
+
$numberkeyboard-header-close-padding: 0 16px !default;
|
|
253
|
+
$numberkeyboard-header-close-color: #576b95 !default;
|
|
254
|
+
$numberkeyboard-header-close-font-size: 14px !default;
|
|
255
|
+
$numberkeyboard-header-close-background-color: transparent !default;
|
|
256
|
+
$numberkeyboard-key-background-color: #fff !default;
|
|
257
|
+
$numberkeyboard-key-active-background-color: #ebedf0 !default;
|
|
258
|
+
$numberkeyboard-key-height: 48px !default;
|
|
259
|
+
$numberkeyboard-key-line-height: 1.5 !default;
|
|
260
|
+
$numberkeyboard-key-border-radius: 8px !default;
|
|
261
|
+
$numberkeyboard-key-font-size: 28px !default;
|
|
262
|
+
$numberkeyboard-key-font-size-color: #333 !default;
|
|
263
|
+
$numberkeyboard-key-finish-font-size: 16px !default;
|
|
264
|
+
$numberkeyboard-key-finish-font-size-color: #fff !default;
|
|
265
|
+
$numberkeyboard-key-finish-background-color: #1989fa !default;
|
|
266
|
+
$numberkeyboard-key-activeFinsh-background-color: #0570db !default;
|
|
267
|
+
|
|
268
|
+
// countdown(✅)
|
|
269
|
+
$countdown-display: flex !default;
|
|
270
|
+
$countdown-color: inherit !default;
|
|
271
|
+
$countdown-font-size: initial !default;
|
|
272
|
+
|
|
273
|
+
//large price(✅)
|
|
274
|
+
$price-symbol-big-size: 18px !default;
|
|
275
|
+
$price-integer-big-size: 24px !default;
|
|
276
|
+
$price-decimal-big-size: 18px !default;
|
|
181
277
|
|
|
182
|
-
//
|
|
183
|
-
$
|
|
184
|
-
$
|
|
185
|
-
$
|
|
186
|
-
$shortpsd-forget: rgba(128, 128, 128, 1) !default;
|
|
278
|
+
//normal price(✅)
|
|
279
|
+
$price-symbol-medium-size: 14px !default;
|
|
280
|
+
$price-integer-medium-size: 16px !default;
|
|
281
|
+
$price-decimal-medium-size: 14px !default;
|
|
187
282
|
|
|
188
|
-
//price
|
|
189
|
-
$price-
|
|
283
|
+
// small price(✅)
|
|
284
|
+
$price-symbol-small-size: 10px !default;
|
|
285
|
+
$price-integer-small-size: 12px !default;
|
|
286
|
+
$price-decimal-small-size: 10px !default;
|
|
190
287
|
|
|
191
|
-
//avatar
|
|
288
|
+
//avatar(✅)
|
|
192
289
|
$avatar-square: 5px !default;
|
|
193
290
|
$avatar-large-width: 60px !default;
|
|
194
291
|
$avatar-large-height: 60px !default;
|
|
@@ -197,11 +294,19 @@ $avatar-small-height: 32px !default;
|
|
|
197
294
|
$avatar-normal-width: 40px !default;
|
|
198
295
|
$avatar-normal-height: 40px !default;
|
|
199
296
|
|
|
200
|
-
//switch
|
|
297
|
+
//switch(✅)
|
|
201
298
|
$switch-close-bg-color: #ebebeb !default;
|
|
202
299
|
$switch-close--cline-bg-color: #f0f0f0 !default;
|
|
203
|
-
|
|
204
|
-
|
|
300
|
+
$switch-width: 36px !default;
|
|
301
|
+
$switch-height: 21px !default;
|
|
302
|
+
$switch-line-height: 21px !default;
|
|
303
|
+
$switch-border-radius: 21px !default;
|
|
304
|
+
$switch-inside-width: 13px !default;
|
|
305
|
+
$switch-inside-height: 13px !default;
|
|
306
|
+
$switch-inside-open-transform: translateX(146%) !default;
|
|
307
|
+
$switch-inside-close-transform: translateX(30%) !default;
|
|
308
|
+
|
|
309
|
+
// toast(✅)
|
|
205
310
|
$toast-title-font-size: 16px !default;
|
|
206
311
|
$toast-text-font-size: 14px !default;
|
|
207
312
|
$toast-font-color: $white !default;
|
|
@@ -210,10 +315,10 @@ $toast-inner-bg-color: rgba(0, 0, 0, 0.8) !default;
|
|
|
210
315
|
$toast-inner-border-radius: 12px !default;
|
|
211
316
|
$toast-cover-bg-color: rgba(0, 0, 0, 0) !default;
|
|
212
317
|
|
|
213
|
-
//backtop
|
|
318
|
+
//backtop(✅)
|
|
214
319
|
$backtop-border-color: #e0e0e0 !default;
|
|
215
320
|
|
|
216
|
-
// calendar
|
|
321
|
+
// calendar(✅)
|
|
217
322
|
$calendar-primary-color: $primary-color !default;
|
|
218
323
|
$calendar-choose-color: rgba($primary-color, 0.09) !default;
|
|
219
324
|
$calendar-choose-font-color: $primary-color !default;
|
|
@@ -231,34 +336,21 @@ $calendar-day-height: 64px !default;
|
|
|
231
336
|
$calendar-day-font-weight: 500 !default;
|
|
232
337
|
$calendar-day67-font-color: $primary-color !default;
|
|
233
338
|
$calendar-top-slot-height: 24px !default;
|
|
339
|
+
$calendar-month-title-font-size: inherit !default;
|
|
234
340
|
|
|
235
|
-
//overlay
|
|
341
|
+
//overlay(✅)
|
|
236
342
|
$overlay-bg-color: rgba(0, 0, 0, 0.7) !default;
|
|
237
343
|
|
|
238
|
-
//popup
|
|
344
|
+
//popup(✅)
|
|
239
345
|
$popup-close-icon-margin: 16px !default;
|
|
240
346
|
$popup-border-radius: 20px !default;
|
|
241
347
|
|
|
242
|
-
// Notify
|
|
348
|
+
// Notify(✅)
|
|
243
349
|
$notify-text-color: $white !default;
|
|
244
350
|
$notify-padding: 12px 0 !default;
|
|
245
351
|
$notify-font-size: 14px !default;
|
|
246
352
|
$notify-height: 44px !default;
|
|
247
|
-
|
|
248
|
-
// NoticeBar
|
|
249
|
-
$noticebar-background: rgba(251, 248, 220, 1) !default;
|
|
250
|
-
$noticebar-color: #d9500b !default;
|
|
251
|
-
$noticebar-font-size: 14px !default;
|
|
252
|
-
$noticebar-height: 40px !default;
|
|
253
|
-
$noticebar-line-height: 24px !default;
|
|
254
|
-
$noticebar-left-icon-width: 16px !default;
|
|
255
|
-
$noticebar-right-icon-width: 16px !default;
|
|
256
|
-
$noticebar-box-padding: 0 16px !default;
|
|
257
|
-
$noticebar-wrapable-padding: 16px !default;
|
|
258
|
-
$noticebar-lefticon-margin: 0px 10px !default;
|
|
259
|
-
$noticebar-righticon-margin: 0px 10px !default;
|
|
260
|
-
|
|
261
|
-
//notify
|
|
353
|
+
$notify-line-height: auto !default;
|
|
262
354
|
$notify-base-background-color: linear-gradient(
|
|
263
355
|
135deg,
|
|
264
356
|
rgba(250, 44, 25, 1) 0%,
|
|
@@ -285,13 +377,11 @@ $notify-warning-background-color: linear-gradient(
|
|
|
285
377
|
rgba(255, 154, 13, 1) 100%
|
|
286
378
|
) !default;
|
|
287
379
|
|
|
288
|
-
// rate
|
|
289
|
-
|
|
380
|
+
// rate(✅)
|
|
290
381
|
$rate-icon-color: $primary-color !default;
|
|
291
382
|
$rate-icon-void-color: $disable-color !default;
|
|
292
383
|
|
|
293
|
-
// tabbar
|
|
294
|
-
|
|
384
|
+
// tabbar(✅)
|
|
295
385
|
$tabbar-active-color: $primary-color !default;
|
|
296
386
|
$tabbar-unactive-color: $primary-color !default;
|
|
297
387
|
$tabbar-border-top: 1px solid #eee !default;
|
|
@@ -299,11 +389,13 @@ $tabbar-border-bottom: 1px solid #eee !default;
|
|
|
299
389
|
$tabbar-box-shadow: none !default;
|
|
300
390
|
$tabbar-item-text-font-size: $font-size-0 !default;
|
|
301
391
|
$tabbar-item-text-line-height: initial !default;
|
|
392
|
+
$tabbar-height: 50px !default;
|
|
393
|
+
$tabbar-word-margin-top: auto !default;
|
|
302
394
|
|
|
303
|
-
//infiniteloading
|
|
304
|
-
$
|
|
395
|
+
//infiniteloading(✅)
|
|
396
|
+
$infiniteloading-bottom-color: #c8c8c8 !default;
|
|
305
397
|
|
|
306
|
-
//range
|
|
398
|
+
//range(✅)
|
|
307
399
|
$range-tip-font-color: #333333 !default;
|
|
308
400
|
$range-bg-color: rgba($primary-color, 0.5) !default;
|
|
309
401
|
$range-bg-color-tick: #fa958c !default;
|
|
@@ -317,14 +409,32 @@ $range-bar-btn-width: 24px !default;
|
|
|
317
409
|
$range-bar-btn-height: 24px !default;
|
|
318
410
|
$range-bar-btn-border: 1px solid $primary-color !default;
|
|
319
411
|
|
|
412
|
+
//swiper(✅)
|
|
413
|
+
$swiper-pagination-item-background-color: #ddd !default;
|
|
414
|
+
$swiper-pagination-item-width: 8px !default;
|
|
415
|
+
$swiper-pagination-item-height: 3px !default;
|
|
416
|
+
$swiper-pagination-item-margin-right: 7px !default;
|
|
417
|
+
$swiper-pagination-item-border-radius: 2px !default;
|
|
418
|
+
|
|
320
419
|
//address
|
|
321
420
|
$address-region-tab-line: linear-gradient(
|
|
322
421
|
90deg,
|
|
323
422
|
$primary-color 0%,
|
|
324
423
|
$primary-color-end 100%
|
|
325
424
|
) !default;
|
|
326
|
-
|
|
327
|
-
|
|
425
|
+
$address-icon-color: $primary-color !default;
|
|
426
|
+
$address-header-title-font-size: 18px !default;
|
|
427
|
+
$address-header-title-color: #262626 !default;
|
|
428
|
+
$address-region-tab-font-size: 13px !default;
|
|
429
|
+
$address-region-tab-color: #1d1e1e !default;
|
|
430
|
+
$address-region-tab-active-item-font-weight: bold !default;
|
|
431
|
+
$address-region-tab-line-border-radius: 0 !default;
|
|
432
|
+
$address-region-tab-line-opacity: 1 !default;
|
|
433
|
+
$address-region-item-color: #333 !default;
|
|
434
|
+
$address-region-item-font-size: $font-size-1 !default;
|
|
435
|
+
$address-item-margin-right: 9px !default;
|
|
436
|
+
|
|
437
|
+
//steps(✅)
|
|
328
438
|
$steps-base-icon-width: 25px !default;
|
|
329
439
|
$steps-base-icon-height: 25px !default;
|
|
330
440
|
$steps-base-icon-line-height: 25px !default;
|
|
@@ -353,45 +463,121 @@ $steps-process-head-border-color: $primary-color !default;
|
|
|
353
463
|
$steps-process-title-color: $primary-color !default;
|
|
354
464
|
$steps-process-icon-text-color: $primary-color !default;
|
|
355
465
|
|
|
356
|
-
// dialog
|
|
466
|
+
// dialog(✅)
|
|
357
467
|
$dialog-width: 296px !default;
|
|
468
|
+
$dialog-header-font-weight: normal !default;
|
|
469
|
+
$dialog-header-color: rgba(38, 38, 38, 1) !default;
|
|
470
|
+
$dialog-footer-justify-content: space-around !default;
|
|
471
|
+
$dialog-min-height: 156px !default;
|
|
472
|
+
$dialog-padding: 28px 24px 16px 24px !default;
|
|
473
|
+
$dialog-header-height: 20px !default;
|
|
474
|
+
$dialog-header-color: rgba(38, 38, 38, 1) !default;
|
|
475
|
+
$dialog-content-margin: 20px 0 !default;
|
|
476
|
+
$dialog-content-max-height: 268px !default;
|
|
477
|
+
$dialog-content-line-height: 16px !default;
|
|
478
|
+
$dialog-mask-z-index: 1050 !default;
|
|
479
|
+
$dialog-mask-background-color: rgba($black, 0.7) !default;
|
|
480
|
+
$dialog-outer-z-index: 2000 !default;
|
|
481
|
+
$dialog-outer-bordder-radius: 20px !default;
|
|
482
|
+
$dialog-vertical-footer-ok-margin-top: 10px !default;
|
|
483
|
+
$dialog-footer-button-min-width: 100px !default;
|
|
484
|
+
$dialog-footer-cancel-margin-right: 20px !default;
|
|
485
|
+
$dialog-footer-ok-max-width: 128px !default;
|
|
486
|
+
// 在组件中import
|
|
487
|
+
//@import './mixins/index';
|
|
488
|
+
//@import './animation/index';
|
|
358
489
|
|
|
359
|
-
// checkbox
|
|
490
|
+
// checkbox(✅)
|
|
360
491
|
$checkbox-label-color: #1d1e1e !default;
|
|
361
492
|
$checkbox-label-disable-color: #999 !default;
|
|
362
493
|
$checkbox-icon-disable-color: #d6d6d6 !default;
|
|
363
494
|
$checkbox-label-margin-left: 15px !default;
|
|
364
495
|
$checkbox-label-font-size: 14px !default;
|
|
365
496
|
$checkbox-icon-font-size: 18px !default;
|
|
497
|
+
$checkbox-icon-disable-color2: $help-color !default;
|
|
366
498
|
|
|
367
|
-
//radio
|
|
499
|
+
//radio(✅)
|
|
368
500
|
$radio-label-font-color: #1d1e1e !default;
|
|
369
|
-
$radio-label-font-active-color:
|
|
501
|
+
$radio-label-font-active-color: $primary-color !default;
|
|
370
502
|
$radio-label-disable-color: #999 !default;
|
|
371
503
|
$radio-icon-disable-color: #d6d6d6 !default;
|
|
372
|
-
|
|
373
|
-
$radio-label-button-
|
|
374
|
-
$radio-label-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
$
|
|
378
|
-
$
|
|
379
|
-
$
|
|
380
|
-
$
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
504
|
+
$radio-label-button-border-color: $primary-color !default;
|
|
505
|
+
$radio-label-button-background: rgba($primary-color, 0.05) !default;
|
|
506
|
+
$radio-label-margin-left: 15px !default;
|
|
507
|
+
$radio-button-border-radius: 15px !default;
|
|
508
|
+
$radio-label-font-size: 14px !default;
|
|
509
|
+
$radio-button-font-size: 12px !default;
|
|
510
|
+
$radio-button-padding: 5px 18px !default;
|
|
511
|
+
$radio-icon-font-size: 18px !default;
|
|
512
|
+
$radio-icon-disable-color2: $help-color !default;
|
|
513
|
+
|
|
514
|
+
// signature(✅)
|
|
515
|
+
$signature-border-color: #dadada;
|
|
516
|
+
$signature-border-width: 1px;
|
|
517
|
+
$signature-height: 10rem;
|
|
518
|
+
$signature-margin-bottom: 1rem;
|
|
519
|
+
$signature-btn-margin-right: 15px;
|
|
520
|
+
|
|
521
|
+
//fixednav(✅)
|
|
384
522
|
$fixednav-bg-color: $white !default;
|
|
385
523
|
$fixednav-font-color: $black !default;
|
|
386
524
|
$fixednav-index: 201 !default;
|
|
387
525
|
$fixednav-btn-bg: linear-gradient(
|
|
388
526
|
135deg,
|
|
389
|
-
|
|
390
|
-
|
|
527
|
+
$primary-color 0%,
|
|
528
|
+
$primary-color-end 100%
|
|
391
529
|
) !default;
|
|
530
|
+
$fixednav-item-active-color: $primary-color !default;
|
|
531
|
+
|
|
532
|
+
// NoticeBar(✅)
|
|
533
|
+
$noticebar-background: rgba(251, 248, 220, 1) !default;
|
|
534
|
+
$noticebar-color: #d9500b !default;
|
|
535
|
+
$noticebar-font-size: 14px !default;
|
|
536
|
+
$noticebar-height: 40px !default;
|
|
537
|
+
$noticebar-line-height: 24px !default;
|
|
538
|
+
$noticebar-left-icon-width: 16px !default;
|
|
539
|
+
$noticebar-right-icon-width: 16px !default;
|
|
540
|
+
$noticebar-box-padding: 0 16px !default;
|
|
541
|
+
$noticebar-wrapable-padding: 16px !default;
|
|
542
|
+
$noticebar-lefticon-margin: 0px 10px !default;
|
|
543
|
+
$noticebar-righticon-margin: 0px 10px !default;
|
|
392
544
|
|
|
393
|
-
//
|
|
545
|
+
// TimeSelect(✅)
|
|
546
|
+
$timeselect-title-font-size: $font-size-2 !default;
|
|
547
|
+
$timeselect-title-color: $title-color !default;
|
|
548
|
+
$timeselect-title-width: 100% !default;
|
|
549
|
+
$timeselect-title-height: 50px !default;
|
|
550
|
+
$timeselect-title-line-height: 50px !default;
|
|
551
|
+
$timeselect-pannel-bg-color: #f6f7f9 !default;
|
|
552
|
+
|
|
553
|
+
// TimePannel(✅)
|
|
554
|
+
$timeselect-timepannel-text-color: $title-color2 !default;
|
|
555
|
+
$timeselect-timepannel-font-size: $font-size-2 !default;
|
|
556
|
+
$timeselect-timepannel-cur-bg-color: $white !default;
|
|
557
|
+
$timeselect-timepannel-cur-text-color: #333333 !default;
|
|
558
|
+
$timeselect-timepannel-width: 140px !default;
|
|
559
|
+
$timeselect-timepannel-height: 40px !default;
|
|
560
|
+
$timeselect-timepannel-padding: 15px !default;
|
|
561
|
+
|
|
562
|
+
// TimeDetail(✅)
|
|
563
|
+
$timeselect-timedetail-padding: 0 5px 50px 13px !default;
|
|
564
|
+
$timeselect-timedetail-item-width: 100px !default;
|
|
565
|
+
$timeselect-timedetail-item-height: 50px !default;
|
|
566
|
+
$timeselect-timedetail-item-line-height: 50px !default;
|
|
567
|
+
$timeselect-timedetail-item-bg-color: #f6f7f9 !default;
|
|
568
|
+
$timeselect-timedetail-item-border-radius: 5px !default;
|
|
569
|
+
$timeselect-timedetail-item-text-color: #333333 !default;
|
|
570
|
+
$timeselect-timedetail-item-text-font-size: $font-size-2 !default;
|
|
571
|
+
$timeselect-timedetail-item-cur-bg-color: rgba($primary-color, 0.15) !default;
|
|
572
|
+
$timeselect-timedetail-item-cur-border: $primary-color !default;
|
|
573
|
+
$timeselect-timedetail-item-cur-text-color: $primary-color !default;
|
|
574
|
+
$timeselect-timedetail-time-text-color: #999 !default;
|
|
575
|
+
$timeselect-timedetail-time-font-size: $font-size-1 !default;
|
|
576
|
+
|
|
577
|
+
//tag(✅)
|
|
394
578
|
$tag-font-size: 12px !default;
|
|
579
|
+
$tag-default-border-radius: 4px !default;
|
|
580
|
+
$tag-round-border-radius: 8px !default;
|
|
395
581
|
$tag-default-background-color: #000000 !default;
|
|
396
582
|
$tag-primary-background-color: #3460fa !default;
|
|
397
583
|
$tag-success-background-color: #4fc08d !default;
|
|
@@ -401,39 +587,89 @@ $tag-danger-background-color: linear-gradient(
|
|
|
401
587
|
rgba(232, 34, 14, 1) 69.83950099728881%,
|
|
402
588
|
rgba(242, 77, 12, 1) 100%
|
|
403
589
|
) !default;
|
|
590
|
+
$tag-danger-background-color-plain: #df3526 !default;
|
|
404
591
|
$tag-warning-background-color: #f3812e !default;
|
|
405
592
|
$tag-default-color: #ffffff !default;
|
|
406
593
|
$tag-border-width: 1px !default;
|
|
407
|
-
|
|
408
594
|
$tag-plain-background-color: #fff !default;
|
|
409
595
|
$tag-plain-color: rgb(250, 36, 0) !default;
|
|
596
|
+
$tag-height: auto !default;
|
|
410
597
|
|
|
411
|
-
//badge
|
|
598
|
+
//badge(✅)
|
|
412
599
|
$badge-background-color: linear-gradient(
|
|
413
600
|
135deg,
|
|
414
601
|
$primary-color 0%,
|
|
415
602
|
$primary-color-end 100%
|
|
416
603
|
) !default;
|
|
604
|
+
$badge-color: #fff !default;
|
|
417
605
|
$badge-font-size: $font-size-1 !default;
|
|
418
606
|
$badge-default-background-color: rgba(255, 255, 255, 1) !default;
|
|
419
|
-
|
|
420
|
-
|
|
607
|
+
$badge-border-radius: 14px !default;
|
|
608
|
+
$badge-padding: 0 5px !default;
|
|
609
|
+
$badge-content-transform: translateY(-50%) translateX(100%) !default;
|
|
610
|
+
$badge-z-index: 1 !default;
|
|
611
|
+
$badge-dot-width: 7px !default;
|
|
612
|
+
$badge-dot-height: 7px !default;
|
|
613
|
+
$badge-dot-border-radius: 7px !default;
|
|
614
|
+
$badge-dot-padding: 0px !default;
|
|
615
|
+
|
|
616
|
+
//popover(✅)
|
|
421
617
|
$popover-white-background-color: rgba(255, 255, 255, 1) !default;
|
|
422
618
|
$popover-dark-background-color: rgba(75, 76, 77, 1) !default;
|
|
423
619
|
$popover-border-bottom-color: rgba(229, 229, 229, 1) !default;
|
|
424
620
|
$popover-primary-text-color: rgba(51, 51, 51, 1) !default;
|
|
425
621
|
$popover-disable-color: rgba(154, 155, 157, 1) !default;
|
|
622
|
+
$popover-menu-item-padding: 8px 0 !default;
|
|
623
|
+
$popover-menu-item-margin: 0 8px !default;
|
|
624
|
+
$popover-menu-name-line-height: normal !default;
|
|
426
625
|
|
|
427
|
-
//
|
|
626
|
+
//progressr(✅)
|
|
627
|
+
$progress-border-radius: 12px !default;
|
|
628
|
+
$progress-text-padding: 0 5px !default;
|
|
629
|
+
$progress-text-font-size: 13px !default;
|
|
630
|
+
$progress-insidetext-border-radius: 5px !default;
|
|
631
|
+
$progress-inner-background-color: linear-gradient(
|
|
632
|
+
135deg,
|
|
633
|
+
$primary-color 0%,
|
|
634
|
+
$primary-color-end 100%
|
|
635
|
+
) !default;
|
|
636
|
+
$progress-insidetext-background: $progress-inner-background-color !default;
|
|
637
|
+
$progress-outer-background-color: #f3f3f3 !default;
|
|
638
|
+
$progress-outer-border-radius: 12px !default;
|
|
639
|
+
$progress-insidetext-border-radius: 5px !default;
|
|
640
|
+
$progress-insidetext-padding: 3px 5px 3px 6px !default;
|
|
641
|
+
$progress-insidetext-top: -42% !default;
|
|
642
|
+
$progress-small-text-top: -100% !default;
|
|
643
|
+
$progress-small-font-size: 7px !default;
|
|
644
|
+
$progress-small-padding: 0 4px !default;
|
|
645
|
+
$progress-small-height: 5px !default;
|
|
646
|
+
$progress-small-text-font-size: 7px !default;
|
|
647
|
+
$progress-small-text-line-height: 10px !default;
|
|
648
|
+
$progress-small-text-padding: 2px 4px !default;
|
|
649
|
+
$progress-small-text-top: -100% !default;
|
|
650
|
+
$progress-base-font-size: 9px !default;
|
|
651
|
+
$progress-base-padding: 0 5px !default;
|
|
652
|
+
$progress-base-height: 10px !default;
|
|
653
|
+
$progress-base-text-font-size: 9px !default;
|
|
654
|
+
$progress-base-text-line-height: 13px !default;
|
|
655
|
+
$progress-base-text-padding: $progress-insidetext-padding !default;
|
|
656
|
+
$progress-base-text-top: $progress-insidetext-top !default;
|
|
657
|
+
$progress-large-font-size: 13px !default;
|
|
658
|
+
$progress-large-padding: 0 5px !default;
|
|
659
|
+
$progress-large-height: 15px !default;
|
|
660
|
+
$progress-large-text-font-size: 13px !default;
|
|
661
|
+
$progress-large-text-line-height: 18px !default;
|
|
662
|
+
$progress-large-text-padding: $progress-insidetext-padding !default;
|
|
663
|
+
$progress-large-text-top: $progress-insidetext-top !default;
|
|
664
|
+
|
|
665
|
+
//pagination(✅)
|
|
428
666
|
$pagination-color: $primary-color !default;
|
|
429
667
|
$pagination-font-size: $font-size-2 !default;
|
|
430
668
|
$pagination-item-border-color: #e4e7eb !default;
|
|
431
669
|
$pagination-active-background-color: linear-gradient(
|
|
432
670
|
135deg,
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
rgba(250, 89, 25, 1) 83.40740741%,
|
|
436
|
-
rgba(250, 100, 25, 1) 100%
|
|
671
|
+
$primary-color 0%,
|
|
672
|
+
$primary-color-end 100%
|
|
437
673
|
) !default;
|
|
438
674
|
$pagination-disable-color: rgba(116, 116, 116, 0.31) !default;
|
|
439
675
|
$pagination-disable-background-color: #f7f8fa !default;
|
|
@@ -441,33 +677,14 @@ $pagination-item-border-width: 1px !default;
|
|
|
441
677
|
$pagination-item-border-radius: 2px !default;
|
|
442
678
|
$pagination-prev-next-padding: 0 11px !default;
|
|
443
679
|
|
|
444
|
-
//
|
|
445
|
-
$dialog-min-height: 156px !default;
|
|
446
|
-
$dialog-padding: 28px 24px 16px 24px !default;
|
|
447
|
-
$dialog-header-height: 20px !default;
|
|
448
|
-
$dialog-header-color: rgba(38, 38, 38, 1) !default;
|
|
449
|
-
$dialog-content-margin: 20px 0 !default;
|
|
450
|
-
$dialog-content-max-height: 268px !default;
|
|
451
|
-
$dialog-content-line-height: 16px !default;
|
|
452
|
-
$dialog-mask-z-index: 1050 !default;
|
|
453
|
-
$dialog-mask-background-color: rgba($black, 0.7) !default;
|
|
454
|
-
$dialog-outer-z-index: 2000 !default;
|
|
455
|
-
$dialog-outer-bordder-radius: 20px !default;
|
|
456
|
-
$dialog-vertical-footer-ok-margin-top: 10px !default;
|
|
457
|
-
$dialog-footer-button-min-width: 100px !default;
|
|
458
|
-
$dialog-footer-cancel-margin-right: 20px !default;
|
|
459
|
-
$dialog-footer-ok-max-width: 128px !default;
|
|
460
|
-
// 在组件中import
|
|
461
|
-
//@import './mixins/index';
|
|
462
|
-
//@import './animation/index';
|
|
463
|
-
|
|
464
|
-
// tabs
|
|
680
|
+
// tabs(✅)
|
|
465
681
|
$tabs-tab-smile-color: $primary-color !default;
|
|
466
682
|
$tabs-titles-border-radius: 0 !default;
|
|
467
683
|
$tabs-titles-item-large-font-size: $font-size-3 !default;
|
|
468
684
|
$tabs-titles-item-font-size: $font-size-2 !default;
|
|
469
685
|
$tabs-titles-item-small-font-size: $font-size-1 !default;
|
|
470
686
|
$tabs-titles-item-color: $title-color !default;
|
|
687
|
+
$tabs-titles-item-active-color: $title-color !default;
|
|
471
688
|
$tabs-titles-background-color: $help-color !default;
|
|
472
689
|
$tabs-horizontal-tab-line-color: linear-gradient(
|
|
473
690
|
90deg,
|
|
@@ -485,17 +702,10 @@ $tabs-vertical-tab-line-color: linear-gradient(
|
|
|
485
702
|
$tabs-vertical-titles-item-height: 40px !default;
|
|
486
703
|
$tabs-vertical-titles-item-active-line-height: 14px !default;
|
|
487
704
|
$tabs-vertical-titles-width: 100px !default;
|
|
705
|
+
$tabs-titles-item-line-border-radius: 0 !default;
|
|
706
|
+
$tabs-titles-item-line-opacity: 1 !default;
|
|
488
707
|
|
|
489
|
-
//
|
|
490
|
-
$empty-padding: 32px 0 !default;
|
|
491
|
-
$empty-image-size: 170px !default;
|
|
492
|
-
$empty-description-margin-top: 4px !default;
|
|
493
|
-
$empty-description-color: #666666 !default;
|
|
494
|
-
$empty-description-font-size: 14px !default;
|
|
495
|
-
$empty-description-line-height: 20px !default;
|
|
496
|
-
$empty-description-padding: 0 40px !default;
|
|
497
|
-
|
|
498
|
-
// indicator
|
|
708
|
+
// indicator(✅)
|
|
499
709
|
$indicator-color: $primary-color !default;
|
|
500
710
|
$indicator-dot-color: $disable-color !default;
|
|
501
711
|
$indicator-white: $white !default;
|
|
@@ -508,59 +718,198 @@ $indicator-dot-vertical-margin: 4px !default;
|
|
|
508
718
|
$indicator-dot-first-margin: 0px !default;
|
|
509
719
|
$indicator-dot-last-margin: 0px !default;
|
|
510
720
|
|
|
511
|
-
//
|
|
512
|
-
$
|
|
513
|
-
$
|
|
514
|
-
$
|
|
515
|
-
$
|
|
721
|
+
// menu(✅)
|
|
722
|
+
$menu-bar-line-height: 48px !default;
|
|
723
|
+
$menu-item-font-size: $font-size-2 !default;
|
|
724
|
+
$menu-item-text-color: $title-color !default;
|
|
725
|
+
$menu-item-active-text-color: $primary-color !default;
|
|
726
|
+
$menu-bar-border-bottom-color: #eaf0fb !default;
|
|
727
|
+
$menu-bar-opened-z-index: 2001 !default;
|
|
728
|
+
$menu-item-disabled-color: #969799 !default;
|
|
729
|
+
$menu-title-text-padding-left: 8px !default;
|
|
730
|
+
$menu-title-text-padding-right: 8px !default;
|
|
731
|
+
$menu-item-content-padding: 12px 24px !default;
|
|
732
|
+
$menu-item-content-max-height: 214px !default;
|
|
733
|
+
$menu-item-option-padding-top: 12px !default;
|
|
734
|
+
$menu-item-option-padding-bottom: 12px !default;
|
|
735
|
+
$menu-item-option-i-margin-right: 6px !default;
|
|
736
|
+
$menu-bar-box-shadow: 0 2px 12px rgba(89, 89, 89, 0.12) !default;
|
|
737
|
+
$menu-scroll-fixed-top: 0 !default;
|
|
738
|
+
$menu-scroll-fixed-z-index: 1000 !default;
|
|
739
|
+
$menu-active-item-font-weight: 500 !default;
|
|
740
|
+
|
|
741
|
+
// collapse(✅)
|
|
742
|
+
$collapse-item-padding: 13px 36px 13px 26px !default;
|
|
743
|
+
$collapse-item-color: #666666 !default;
|
|
744
|
+
$collapse-item-disabled-color: #c8c9cc !default;
|
|
745
|
+
$collapse-item-icon-color: #666666 !default;
|
|
746
|
+
$collapse-item-font-size: $font-size-2 !default;
|
|
747
|
+
$collapse-item-line-height: 24px !default;
|
|
748
|
+
$collapse-item-sub-title-color: #666666 !default;
|
|
749
|
+
$collapse-wrapper-content-padding: 12px 26px !default;
|
|
750
|
+
$collapse-wrapper-empty-content-padding: 0 26px !default;
|
|
751
|
+
$collapse-wrapper-content-color: #666666 !default;
|
|
752
|
+
$collapse-wrapper-content-font-size: $font-size-2 !default;
|
|
753
|
+
$collapse-wrapper-content-line-height: 1.5 !default;
|
|
754
|
+
$collapse-wrapper-content-background-color: $white !default;
|
|
755
|
+
|
|
756
|
+
// searchbar(✅)
|
|
516
757
|
|
|
517
|
-
|
|
758
|
+
$searchbar-background: $white !default;
|
|
759
|
+
$searchbar-right-out-color: $black !default;
|
|
760
|
+
$searchbar-padding: 9px 16px !default;
|
|
761
|
+
$searchbar-width: 100% !default;
|
|
762
|
+
$searchbar-action-text-color: #323233 !default;
|
|
763
|
+
$searchbar-input-height: 32px !default;
|
|
764
|
+
$searchbar-input-padding: 0 28px !default;
|
|
765
|
+
$searchbar-input-background: #f7f7f7 !default;
|
|
766
|
+
$searchbar-input-width: 100% !default;
|
|
767
|
+
$searchbar-input-border-radius: 16px !default;
|
|
768
|
+
$searchbar-input-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04) !default;
|
|
769
|
+
$searchbar-input-bar-color: inherit !default;
|
|
770
|
+
$searchbar-input-bar-placeholder-color: inherit !default;
|
|
518
771
|
|
|
519
|
-
|
|
520
|
-
$divider-text-font-size: $font-size-2 !default;
|
|
521
|
-
$divider-text-color: #909ca4 !default;
|
|
522
|
-
$divider-line-height: 2px !default;
|
|
523
|
-
$divider-before-margin-right: 16px !default;
|
|
524
|
-
$divider-after-margin-left: 16px !default;
|
|
525
|
-
$divider-vertical-height: 12px !default;
|
|
526
|
-
$divider-vertical-top: 2px !default;
|
|
527
|
-
$divider-vertical-border-left: rgba(0, 0, 0, 0.06) !default;
|
|
528
|
-
$divider-vertical-margin: 0 8px !default;
|
|
772
|
+
// empty(✅)
|
|
529
773
|
|
|
530
|
-
|
|
531
|
-
$
|
|
774
|
+
$empty-padding: 32px 0 !default;
|
|
775
|
+
$empty-image-size: 170px !default;
|
|
776
|
+
$empty-description-margin-top: 4px !default;
|
|
777
|
+
$empty-description-color: #666666 !default;
|
|
778
|
+
$empty-description-font-size: 14px !default;
|
|
779
|
+
$empty-description-line-height: 20px !default;
|
|
780
|
+
$empty-description-padding: 0 40px !default;
|
|
781
|
+
|
|
782
|
+
// cascader(✅)
|
|
783
|
+
$cascader-font-size: $font-size-2 !default;
|
|
784
|
+
$cascader-line-height: 22px !default;
|
|
785
|
+
$cascader-title-padding: 24px 20px 17px !default;
|
|
786
|
+
$cascader-title-font-size: 18px !default;
|
|
787
|
+
$cascader-title-line-height: 20px !default;
|
|
788
|
+
$cascader-pane-height: 342px !default;
|
|
789
|
+
$cascader-pane-paddingTop: 10px !default;
|
|
790
|
+
$cascader-icon-checklist-marginLeft: 10px !default;
|
|
791
|
+
$cascader-tabs-item-padding: 0 10px !default;
|
|
792
|
+
$cascader-bar-padding: 24px 20px 17px !default;
|
|
793
|
+
$cascader-bar-font-size: $font-size-4 !default;
|
|
794
|
+
$cascader-bar-line-height: 20px !default;
|
|
795
|
+
$cascader-bar-color: $title-color !default;
|
|
796
|
+
$cascader-item-padding: 10px 20px !default;
|
|
797
|
+
$cascader-item-color: $title-color !default;
|
|
798
|
+
$cascader-item-font-size: $font-size-2 !default;
|
|
799
|
+
$cascader-item-active-color: $primary-color !default;
|
|
800
|
+
|
|
801
|
+
// form(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
802
|
+
$form-item-error-line-color: $required-color !default;
|
|
803
|
+
$form-item-required-color: $required-color !default;
|
|
804
|
+
$form-item-error-message-color: $required-color !default;
|
|
805
|
+
$form-item-label-font-size: 14px !default;
|
|
806
|
+
$form-item-label-width: 90px !default;
|
|
807
|
+
$form-item-label-margin-right: 10px !default;
|
|
808
|
+
$form-item-label-text-align: left !default;
|
|
809
|
+
$form-item-required-margin-right: 4px !default;
|
|
810
|
+
$form-item-body-font-size: 14px !default;
|
|
811
|
+
$form-item-body-slots-text-align: left !default;
|
|
812
|
+
$form-item-body-input-text-align: left !default;
|
|
813
|
+
$form-item-tip-font-size: 10px !default;
|
|
814
|
+
$form-item-tip-text-align: left !default;
|
|
815
|
+
|
|
816
|
+
// skeleton(✅)
|
|
817
|
+
$skeleton-content-line-title-background-color: #efefef !default;
|
|
818
|
+
|
|
819
|
+
// sku(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
820
|
+
$sku-item-border: 1px solid $primary-color !default;
|
|
821
|
+
$sku-item-disable-line: line-through !default;
|
|
822
|
+
$sku-opetate-bg-default: linear-gradient(
|
|
823
|
+
90deg,
|
|
824
|
+
$primary-color,
|
|
825
|
+
$primary-color-end 100%
|
|
826
|
+
) !default;
|
|
827
|
+
$sku-item-active-bg: rgba($primary-color, 0.15) !default;
|
|
828
|
+
$sku-opetate-bg-buy: linear-gradient(
|
|
829
|
+
135deg,
|
|
830
|
+
rgba(255, 186, 13, 1) 0%,
|
|
831
|
+
rgba(255, 195, 13, 1) 69%,
|
|
832
|
+
rgba(255, 207, 13, 1) 100%
|
|
833
|
+
) !default;
|
|
834
|
+
$sku-spec-height: 30px !default;
|
|
835
|
+
$sku-spec-line-height: $sku-spec-height !default;
|
|
836
|
+
$sku-spec-font-size: 11px !default;
|
|
837
|
+
$sku-spec-background: rgba(242, 242, 242, 1) !default;
|
|
838
|
+
$sku-spec-color: $black !default;
|
|
839
|
+
$sku-spec-margin-right: 12px !default;
|
|
840
|
+
$sku-spec-padding: 0 18px !default;
|
|
841
|
+
$sku-spec-title-font-weight: bold !default;
|
|
842
|
+
$sku-spec-title-font-size: 13px !default;
|
|
843
|
+
$sku-spec-title-color: $black !default;
|
|
844
|
+
$sku-spec-title-margin-bottom: 18px !default;
|
|
845
|
+
$sku-operate-btn-height: 54px !default;
|
|
846
|
+
$sku-operate-btn-border-top: 0 !default;
|
|
847
|
+
$sku-operate-btn-item-height: 40px !default;
|
|
848
|
+
$sku-operate-btn-item-line-height: $sku-operate-btn-item-height;
|
|
849
|
+
$sku-operate-btn-item-font-size: 15px !default;
|
|
850
|
+
$sku-operate-btn-item-font-weight: normal !default;
|
|
851
|
+
$sku-product-img-width: 100px !default;
|
|
852
|
+
$sku-product-img-height: $sku-product-img-width !default;
|
|
853
|
+
$sku-product-img-border-radius: 0 !default;
|
|
854
|
+
|
|
855
|
+
// card(✅)
|
|
856
|
+
$card-font-size-0: $font-size-0 !default;
|
|
857
|
+
$card-font-size-1: $font-size-1 !default;
|
|
858
|
+
$card-font-size-2: $font-size-2 !default;
|
|
859
|
+
$card-font-size-3: $font-size-3 !default;
|
|
860
|
+
$card-left-border-radius: 0 !default;
|
|
861
|
+
$card-left-background-color: inherit !default;
|
|
862
|
+
|
|
863
|
+
// grid(✅)
|
|
864
|
+
$grid-border-color: #f5f6f7 !default;
|
|
865
|
+
$grid-item-content-padding: 16px 8px !default;
|
|
866
|
+
$grid-item-content-bg-color: $white !default;
|
|
867
|
+
$grid-item-text-margin: 8px !default;
|
|
868
|
+
$grid-item-text-color: $title-color2 !default;
|
|
869
|
+
$grid-item-text-font-size: $font-size-1 !default;
|
|
532
870
|
|
|
533
|
-
//
|
|
871
|
+
// table(✅)
|
|
534
872
|
$table-border-color: #ececec !default;
|
|
535
873
|
$table-cols-padding: 10px !default;
|
|
536
874
|
$table-tr-even-bg-color: #f3f3f3 !default;
|
|
537
875
|
$table-tr-odd-bg-color: $white !default;
|
|
538
876
|
|
|
539
|
-
//
|
|
540
|
-
$
|
|
541
|
-
$
|
|
542
|
-
$
|
|
543
|
-
$
|
|
544
|
-
$
|
|
545
|
-
$
|
|
546
|
-
$
|
|
547
|
-
$
|
|
548
|
-
$
|
|
549
|
-
$
|
|
550
|
-
$
|
|
551
|
-
$
|
|
552
|
-
$numberkeyboard-key-active-background-color: #ebedf0 !default;
|
|
553
|
-
$numberkeyboard-key-height: 48px !default;
|
|
554
|
-
$numberkeyboard-key-line-height: 1.5 !default;
|
|
555
|
-
$numberkeyboard-key-border-radius: 8px !default;
|
|
556
|
-
$numberkeyboard-key-font-size: 28px !default;
|
|
557
|
-
$numberkeyboard-key-font-size-color: #333 !default;
|
|
558
|
-
$numberkeyboard-key-finish-font-size: 16px !default;
|
|
559
|
-
$numberkeyboard-key-finish-font-size-color: #fff !default;
|
|
560
|
-
$numberkeyboard-key-finish-background-color: #1989fa !default;
|
|
561
|
-
$numberkeyboard-key-activeFinsh-background-color: #0570db !default;
|
|
877
|
+
// navbar(✅)
|
|
878
|
+
$navbar-height: 44px !default;
|
|
879
|
+
$navbar-margin-bottom: 20px !default;
|
|
880
|
+
$navbar-padding: 13px 16px !default;
|
|
881
|
+
$navbar-background: $white !default;
|
|
882
|
+
$navbar-box-shadow: 0px 1px 7px 0px rgba(237, 238, 241, 1) !default;
|
|
883
|
+
$navbar-color: $title-color2 !default;
|
|
884
|
+
$navbar-title-base-font: $font-size-2 !default;
|
|
885
|
+
$navbar-title-font: $font-size-2 !default;
|
|
886
|
+
$navbar-title-font-weight: 0 !default;
|
|
887
|
+
$navbar-title-font-color: $navbar-color !default;
|
|
888
|
+
$navbar-title-width: 100px !default;
|
|
889
|
+
$navbar-title-icon-margin: 0 0 0 13px !default;
|
|
562
890
|
|
|
563
|
-
//
|
|
891
|
+
// sidenavbar(✅)
|
|
892
|
+
$sidenavbar-content-bg-color: $white !default;
|
|
893
|
+
|
|
894
|
+
// subsidenavbar(✅)
|
|
895
|
+
$sidenavbar-sub-title-border-color: #f6f6f6 !default;
|
|
896
|
+
$sidenavbar-sub-title-bg-color: #f6f6f6 !default;
|
|
897
|
+
$sidenavbar-sub-title-font-size: $font-size-large !default;
|
|
898
|
+
$sidenavbar-sub-title-radius: 0 !default;
|
|
899
|
+
$sidenavbar-sub-title-border: 0 !default;
|
|
900
|
+
$sidenavbar-sub-title-width: 100% !default;
|
|
901
|
+
$sidenavbar-sub-title-height: 40px !default;
|
|
902
|
+
$sidenavbar-sub-title-text-line-height: 40px !default;
|
|
903
|
+
$sidenavbar-sub-title-text-color: $title-color !default;
|
|
904
|
+
|
|
905
|
+
// sidenavbaritem(✅)
|
|
906
|
+
$sidenavbar-item-title-color: #333 !default;
|
|
907
|
+
$sidenavbar-item-title-bg-color: $white !default;
|
|
908
|
+
$sidenavbar-item-height: 40px !default;
|
|
909
|
+
$sidenavbar-item-line-height: 40px !default;
|
|
910
|
+
$sidenavbar-item-font-size: 16px !default;
|
|
911
|
+
|
|
912
|
+
// elevator(✅)
|
|
564
913
|
$elevator-list-item-highcolor: $primary-color !default;
|
|
565
914
|
$elevator-list-item-font-size: 12px !default;
|
|
566
915
|
$elevator-list-item-font-color: #333333 !default;
|
|
@@ -604,58 +953,61 @@ $elevator-list-fixed-bg-color: $white !default;
|
|
|
604
953
|
$elevator-list-fixed-box-shadow: 0 0 10px #eee !default;
|
|
605
954
|
$elevator-list-item-bars-inner-item-active-color: $primary-color !default;
|
|
606
955
|
|
|
607
|
-
//
|
|
608
|
-
$
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
$
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
$
|
|
615
|
-
$
|
|
616
|
-
$
|
|
617
|
-
$
|
|
618
|
-
$
|
|
619
|
-
$
|
|
956
|
+
// list(✅)
|
|
957
|
+
$list-item-margin: 0 0 10px 0 !default;
|
|
958
|
+
|
|
959
|
+
//Ecard(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
960
|
+
$ecard-bg-color: #f0f2f5 !default;
|
|
961
|
+
|
|
962
|
+
//addresslist(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
963
|
+
$addresslist-bg: #fff !default;
|
|
964
|
+
$addresslist-border: #f0f0f0 !default;
|
|
965
|
+
$addresslist-font-color: #333333 !default;
|
|
966
|
+
$addresslist-font-size: 16px !default;
|
|
967
|
+
$addresslist-mask-bg: rgba(0, 0, 0, 0.4) !default;
|
|
968
|
+
$addresslist-addr-font-color: #666666 !default;
|
|
969
|
+
$addresslist-addr-font-size: 12px !default;
|
|
970
|
+
$addresslist-set-bg: #f5a623 !default;
|
|
971
|
+
$addresslist-del-bg: #e1251b !default;
|
|
972
|
+
$addresslist-contnts-contact-default: $primary-color !default;
|
|
973
|
+
$addresslist-contnts-contact-color: $white !default;
|
|
974
|
+
|
|
975
|
+
//category(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
976
|
+
$category-bg-color: rgba(255, 255, 255, 1) !default;
|
|
977
|
+
$category-list-left-bg-color: rgba(246, 247, 249, 1) !default;
|
|
978
|
+
$category-list-item-color: $title-color !default;
|
|
979
|
+
$category-list-item-checked-color: rgba(255, 255, 255, 1) !default;
|
|
980
|
+
$category-list-item-checked-img-bg-color: $primary-color !default;
|
|
981
|
+
$category-pane-gray-color: #666 !default;
|
|
982
|
+
$category-pane-border-color: rgb(153, 153, 153) !default;
|
|
983
|
+
$category-pane-title-color: rgba(51, 51, 51, 1) !default;
|
|
984
|
+
|
|
985
|
+
// circleProgress(✅)
|
|
986
|
+
$circleprogress-primary-color: $primary-color !default;
|
|
987
|
+
$circleprogress-path-color: #e5e9f2 !default;
|
|
988
|
+
$circleprogress-text-color: #000000 !default;
|
|
989
|
+
$circleprogress-text-size: $font-size-3 !default;
|
|
620
990
|
|
|
621
|
-
//
|
|
622
|
-
$
|
|
623
|
-
$
|
|
624
|
-
$
|
|
625
|
-
$
|
|
626
|
-
$row-content-height: 50px !default;
|
|
627
|
-
$row-content-line-height: 40px !default;
|
|
628
|
-
$col-default-margin-bottom: 15px !default;
|
|
991
|
+
// Comment(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
992
|
+
$comment-header-user-name-color: rgba(51, 51, 51, 1) !default;
|
|
993
|
+
$comment-header-time-color: rgba(153, 153, 153, 1) !default;
|
|
994
|
+
$comment-bottom-label-color: rgba(153, 153, 153, 1) !default;
|
|
995
|
+
$comment-shop-color: $primary-color !default;
|
|
629
996
|
|
|
630
|
-
//
|
|
631
|
-
$
|
|
632
|
-
$searchbar-right-out-color: $black !default;
|
|
633
|
-
$searchbar-padding: 9px 16px !default;
|
|
634
|
-
$searchbar-width: 100% !default;
|
|
635
|
-
$searchbar-action-text-color: #323233 !default;
|
|
636
|
-
$searchbar-input-background: #f7f7f7 !default;
|
|
637
|
-
$searchbar-input-padding: 0 28px !default;
|
|
638
|
-
$searchbar-input-height: 32px !default;
|
|
639
|
-
$searchbar-input-width: 100% !default;
|
|
640
|
-
$searchbar-input-border-radius: 16px !default;
|
|
641
|
-
$searchbar-input-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04) !default;
|
|
997
|
+
// Ellipsis(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
998
|
+
$ellipsis-expand-collapse-color: #3460fa !default;
|
|
642
999
|
|
|
643
|
-
//
|
|
644
|
-
$
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
$
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
$
|
|
651
|
-
$
|
|
652
|
-
$progress-base-padding: 0 5px !default;
|
|
653
|
-
$progress-large-padding: 0 5px !default;
|
|
654
|
-
$progress-small-font-size: 7px !default;
|
|
655
|
-
$progress-base-font-size: 9px !default;
|
|
656
|
-
$progress-large-font-size: 13px !default;
|
|
1000
|
+
// WaterMark(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
1001
|
+
$watermark-z-index: 2000 !default;
|
|
1002
|
+
|
|
1003
|
+
// invoice(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
1004
|
+
$invoice-padding: 10px 10px 20px !default;
|
|
1005
|
+
|
|
1006
|
+
// TrendArrow(✅ todo:react版本该组件暂无,将变量先迁过来)
|
|
1007
|
+
$trendarrow-font-size: 14px !default;
|
|
1008
|
+
$trendarrow-before-icon-margin: 4px !default;
|
|
657
1009
|
|
|
658
|
-
// animatingnumbers
|
|
1010
|
+
// animatingnumbers(✅)
|
|
659
1011
|
$countup-height: 32px !default;
|
|
660
1012
|
$countup-base-size: 18px !default;
|
|
661
1013
|
$countup-border-raduis: 4px !default;
|
|
@@ -664,46 +1016,19 @@ $countup-bgcolor: #031f63 !default;
|
|
|
664
1016
|
$countup-color: #ffffff !default;
|
|
665
1017
|
$countup-width: 24px !default;
|
|
666
1018
|
|
|
667
|
-
//
|
|
668
|
-
$
|
|
669
|
-
$
|
|
670
|
-
$
|
|
671
|
-
$
|
|
672
|
-
$
|
|
673
|
-
$
|
|
674
|
-
$
|
|
675
|
-
$menu-title-text-padding-left: 8px !default;
|
|
676
|
-
$menu-title-text-padding-right: 8px !default;
|
|
677
|
-
$menu-item-content-padding: 12px 24px !default;
|
|
678
|
-
$menu-item-content-max-height: 214px !default;
|
|
679
|
-
$menu-item-option-padding-top: 12px !default;
|
|
680
|
-
$menu-item-option-padding-bottom: 12px !default;
|
|
681
|
-
$menu-item-option-i-margin-right: 6px !default;
|
|
682
|
-
$menu-bar-box-shadow: 0 2px 12px rgba(89, 89, 89, 0.12) !default;
|
|
683
|
-
$menu-scroll-fixed-top: 0 !default;
|
|
684
|
-
$menu-scroll-fixed-z-index: 1000 !default;
|
|
685
|
-
|
|
686
|
-
// cascader
|
|
687
|
-
$cascader-font-size: 14px !default;
|
|
688
|
-
$cascader-line-height: 22px !default;
|
|
689
|
-
$cascader-tabs-item-padding: 0 10px !default;
|
|
690
|
-
$cascader-title-padding: 24px 20px 17px !default;
|
|
691
|
-
$cascader-title-font-size: 18px !default;
|
|
692
|
-
$cascader-title-line-height: 20px !default;
|
|
693
|
-
$cascader-item-padding: 10px 20px !default;
|
|
694
|
-
$cascader-item-font-size: 14px !default;
|
|
695
|
-
$cascader-item-color: #1a1a1a !default;
|
|
696
|
-
$cascader-item-active-color: #fa2c19 !default;
|
|
697
|
-
$cascader-pane-height: 342px !default;
|
|
698
|
-
$cascader-pane-paddingTop: 10px !default;
|
|
699
|
-
$cascader-icon-checklist-marginLeft: 10px !default;
|
|
700
|
-
|
|
701
|
-
// Grid
|
|
702
|
-
$grid-border-color: #f5f6f7 !default;
|
|
703
|
-
$grid-item-content-padding: 16px 8px !default;
|
|
704
|
-
$grid-item-content-bg-color: $white !default;
|
|
705
|
-
$grid-item-text-margin: 8px !default;
|
|
706
|
-
$grid-item-text-color: $title-color2 !default;
|
|
707
|
-
$grid-item-text-font-size: $font-size-1 !default;
|
|
1019
|
+
// layout(✅)
|
|
1020
|
+
$row-content-color: #fff !default;
|
|
1021
|
+
$row-content-background-color: #ff8881 !default;
|
|
1022
|
+
$row-content-light-background-color: #ffc7c4 !default;
|
|
1023
|
+
$row-content-border-radius: 6px !default;
|
|
1024
|
+
$row-content-height: 50px !default;
|
|
1025
|
+
$row-content-line-height: 40px !default;
|
|
1026
|
+
$col-default-margin-bottom: 15px !default;
|
|
708
1027
|
|
|
709
|
-
$
|
|
1028
|
+
$row-content-color: #fff !default;
|
|
1029
|
+
$row-content-background-color: #ff8881 !default;
|
|
1030
|
+
$row-content-light-background-color: #ffc7c4 !default;
|
|
1031
|
+
$row-content-border-radius: 6px !default;
|
|
1032
|
+
$row-content-height: 50px !default;
|
|
1033
|
+
$row-content-line-height: 40px !default;
|
|
1034
|
+
$col-default-margin-bottom: 15px !default;
|