variables.scss 38.3 KB
Newer Older
W
wangbei16 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// color

// 主色调
$primary-color: #fa2c19 !default;
$primary-color-end: #fa6419 !default;
// 辅助色
$help-color: #f5f5f5 !default;
// 标题常规文字
$title-color: #1a1a1a !default;
// 副标题
$title-color2: #666666 !default;
// 次内容
$text-color: #808080 !default;
// 特殊禁用色
$disable-color: #cccccc !default;
L
libin107 已提交
16 17
$white: #fff !default;
$black: #000 !default;
V
vickyYe 已提交
18 19
$required-color: #fa2c19 !default;

20 21
$dark-background: #131313 !default;
$dark-background2: #1b1b1b !default;
V
vickyYe 已提交
22
$dark-background3: #141414 !default;
23 24 25 26
$dark-background4: #323233 !default;
$dark-background5: #646566 !default;
$dark-background6: #380e08 !default;
$dark-background7: #707070 !default;
V
vickyYe 已提交
27
$dark-color: $white !default;
28 29
$dark-color2: #f2270c !default;
$dark-color3: rgba(232, 230, 227, 0.8) !default;
V
vickyYe 已提交
30
$dark-color-gray: $text-color !default;
31
$dark-calendar-choose-color: rgba(227, 227, 227, 0.2) !default;
W
wangbei16 已提交
32 33 34 35

// padding
$padding-xs: 12px;

36 37
$font-family: PingFang SC, Microsoft YaHei, Helvetica, Hiragino Sans GB, SimSun,
  sans-serif !default;
W
wangbei16 已提交
38 39 40 41 42 43

// ---- Animation ----
$animation-duration: 0.25s !default;
$animation-timing-fun: cubic-bezier(0.55, 0.085, 0.68, 0.53) !default;

// Font
44 45 46 47 48 49 50 51 52 53
$font-size-0: 10px !default;
$font-size-1: 12px !default;
$font-size-2: 14px !default;
$font-size-3: 16px !default;
$font-size-4: 18px !default;
$font-weight-bold: 400 !default;

$font-size-small: $font-size-1 !default;
$font-size-base: $font-size-2 !default;
$font-size-large: $font-size-3 !default;
W
wangbei16 已提交
54
$line-height-base: 1.5 !default;
L
libin107 已提交
55
// button(✅)
56 57 58 59 60
$button-border-radius: 25px !default;
$button-border-width: 1px !default;
$button-default-bg-color: $white !default;
$button-default-border-color: rgba(204, 204, 204, 1) !default;
$button-default-color: rgba(102, 102, 102, 1) !default;
61 62 63
$button-default-padding: 0 18px !default;
$button-mini-padding: 0 12px !default;
$button-small-padding: 0 12px !default;
64
$button-small-height: 28px !default;
65
$button-mini-height: 24px !default;
66 67 68 69 70 71 72 73
$button-default-height: 38px !default;
$button-large-height: 48px !default;
$button-large-line-height: 46px !default;
$button-small-line-height: 26px !default;
$button-block-height: 48px !default;
$button-default-line-height: 36px !default;
$button-block-line-height: 46px !default;
$button-default-font-size: $font-size-2 !default;
74 75 76 77
$button-large-font-size: $button-default-font-size !default;
$button-small-font-size: $font-size-1 !default;
$button-mini-font-size: $font-size-1 !default;
$button-mini-line-height: 1.2 !default;
78 79 80
$button-disabled-opacity: 0.68 !default;
$button-primary-color: $white !default;
$button-primary-border-color: $primary-color !default;
W
wangbei16 已提交
81 82 83 84
$button-primary-background-color: linear-gradient(
  135deg,
  $primary-color 0%,
  $primary-color-end 100%
85 86 87
) !default;
$button-info-color: $white !default;
$button-info-border-color: #496af2 !default;
W
wangbei16 已提交
88 89 90 91
$button-info-background-color: linear-gradient(
  315deg,
  rgba(73, 143, 242, 1) 0%,
  rgba(73, 101, 242, 1) 100%
92 93 94
) !default;
$button-success-color: $white !default;
$button-success-border-color: rgba(38, 191, 38, 1) !default;
W
wangbei16 已提交
95 96 97 98 99 100
$button-success-background-color: linear-gradient(
  135deg,
  rgba(38, 191, 38, 1) 0%,
  rgba(39, 197, 48, 1) 45%,
  rgba(40, 207, 63, 1) 83%,
  rgba(41, 212, 70, 1) 100%
101
) !default;
W
wangbei16 已提交
102

103 104 105 106 107
$button-danger-color: $white !default;
$button-danger-border-color: rgba(250, 44, 25, 1) !default;
$button-danger-background-color: rgba(250, 44, 25, 1) !default;
$button-warning-color: $white !default;
$button-warning-border-color: rgba(255, 158, 13, 1) !default;
W
wangbei16 已提交
108 109 110 111 112 113
$button-warning-background-color: linear-gradient(
  135deg,
  rgba(255, 158, 13, 1) 0%,
  rgba(255, 167, 13, 1) 45%,
  rgba(255, 182, 13, 1) 83%,
  rgba(255, 190, 13, 1) 100%
114
) !default;
115

116
$button-plain-background-color: $white !default;
117
$button-small-round-border-radius: $button-border-radius !default;
W
wangbei16 已提交
118

L
libin107 已提交
119
// cell(✅)
W
wangbei16 已提交
120

121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
$cell-color: $title-color2 !default;
$cell-title-font: $font-size-2 !default;
$cell-title-desc-font: $font-size-1 !default;
$cell-desc-font: $font-size-2 !default;
$cell-desc-color: $disable-color !default;
$cell-border-radius: 6px !default;
$cell-padding: 13px 16px !default;
$cell-line-height: 20px !default;
$cell-after-right: 16px !default;
$cell-after-border-bottom: 2px solid #f5f6f7 !default;
$cell-default-icon-margin: 0 4px 0 0px !default;
$cell-large-title-font: $font-size-large !default;
$cell-large-title-desc-font: $font-size-base !default;
$cell-large-padding: 15px 16px !default;
$cell-background: $white !default;
W
wangbei16 已提交
136

L
libin107 已提交
137
// cell-group(✅)
W
wangbei16 已提交
138

139 140 141 142 143 144 145 146 147
$cell-group-title-padding: 0 10px !default;
$cell-group-title-color: #909ca4 !default;
$cell-group-title-font-size: $font-size-2 !default;
$cell-group-title-line-height: 20px !default;
$cell-group-desc-padding: 0 10px !default;
$cell-group-desc-color: #909ca4 !default;
$cell-group-desc-font-size: $font-size-1 !default;
$cell-group-desc-line-height: 16px !default;
$cell-group-background-color: $white !default;
W
wangbei16 已提交
148

L
libin107 已提交
149
// divider(✅)
W
wangbei16 已提交
150

L
libin107 已提交
151 152 153 154 155 156 157 158 159 160 161 162
$divider-margin: 16px 0 !default;
$divider-text-font-size: $font-size-2 !default;
$divider-text-color: #909ca4 !default;
$divider-line-height: 2px !default;
$divider-before-margin-right: 16px !default;
$divider-after-margin-left: 16px !default;
$divider-vertical-height: 12px !default;
$divider-vertical-top: 2px !default;
$divider-vertical-border-left: rgba(0, 0, 0, 0.06) !default;
$divider-vertical-margin: 0 8px !default;

// icon(✅)
W
wangbei16 已提交
163

164 165 166
$icon-height: 20px !default;
$icon-width: 20px !default;
$icon-line-height: 20px !default;
W
wangbei16 已提交
167

L
libin107 已提交
168
// uploader(✅)
W
wangbei16 已提交
169

170 171 172
$uploader-picture-width: 100px !default;
$uploader-picture-height: 100px !default;
$uploader-background: #f7f8fa !default;
W
wangbei16 已提交
173

L
libin107 已提交
174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190
// picker(✅)(todo:react版本picker组件dom元素类名变化较大,picker.scss暂不改动)
$picker-cancel-color: #808080 !default;
$picker-ok-color: $primary-color !default;
$picker-bar-cancel-font-size: 14px !default;
$picker-bar-ok-font-size: 14px !default;
$picker-bar-button-padding: 0 15px !default;
$picker-bar-title-font-size: 16px !default;
$picker-bar-title-color: $title-color !default;
$picker-bar-title-font-weight: normal !default;
$picker-item-height: 36px !default;
$picker-item-text-color: $title-color !default;
$picker-item-active-text-color: inherit !default;
$picker-item-text-font-size: 14px !default;
$picker-item-active-line-border: 1px solid #d8d8d8 !default;
$picker-columns-item-color: $title-color !default;

//input(✅)
V
vickyYe 已提交
191 192 193 194 195
$input-border-bottom: #eaf0fb !default;
$input-disabled-color: #c8c9cc !default;
$input-required-color: $required-color !default;
$input-font-size: $font-size-2 !default;
$input-padding: 10px 25px !default;
W
wangbei16 已提交
196

L
libin107 已提交
197
// textarea(✅)
W
wangbei16 已提交
198

199 200 201 202 203
$textarea-font: $font-size-2 !default;
$textarea-height: 100px !default;
$textarea-limit-color: $text-color !default;
$textarea-text-color: $title-color !default;
$textarea-disabled-color: $disable-color !default;
W
wangbei16 已提交
204

L
libin107 已提交
205
// inputnumber(✅)
W
wangbei16 已提交
206

207 208
$inputnumber-icon-color: $title-color !default;
$inputnumber-icon-void-color: $disable-color !default;
L
libin107 已提交
209 210 211
$inputnumber-icon-size: 20px !default;
$inputnumber-input-font-size: 12px !default;
$inputnumber-input-font-color: $title-color !default;
212 213 214
$inputnumber-input-background-color: $help-color !default;
$inputnumber-input-border-radius: 4px !default;
$inputnumber-input-width: 40px !default;
L
libin107 已提交
215 216 217 218 219 220 221 222 223 224
$inputnumber-input-margin: 0 6px !default;
$inputnumber-input-border: 0 !default;
$inputnumber-border: 0 !default;
$inputnumber-border-radius: 0 !default;
$inputnumber-height: auto !default;
$inputnumber-line-height: normal !default;
$inputnumber-border-box: content-box !default;
$inputnumber-display: flex !default;

// actionsheet(✅)
W
wangbei16 已提交
225 226 227 228 229
$zindex-actionsheet: 10001 !default;
$body-background: #f6f6f6 !default;
$light-color: #f6f6f6 !default;
$font-size-base: $font-size-2;
$font-size-small: $font-size-1;
L
libin107 已提交
230 231 232 233 234 235 236 237 238 239 240
$actionsheet-light-color: #f6f6f6 !default;
$actionsheet-item-border-bottom: none !default;
$actionsheet-item-font-size: $font-size-2 !default;
$actionsheet-item-subdesc-font-size: $font-size-1 !default;
$actionsheet-item-cancel-border-top: 1px solid $actionsheet-light-color !default;
$actionsheet-item-line-height: 24px !default;
$actionsheet-item-font-color: $title-color !default;

//shortpassword(✅)
$shortpassword-background-color: rgba(245, 245, 245, 1) !default;
$shortpassword-border-color: #ddd !default;
241
$shortpassword-error: $primary-color !default;
L
libin107 已提交
242
$shortpassword-forget: rgba(128, 128, 128, 1) !default;
W
wangbei16 已提交
243

L
libin107 已提交
244
//numberkeyboard(✅)
L
libin107 已提交
245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
$numberkeyboard-width: 100% !default;
$numberkeyboard-padding: 0 0 22px 0 !default;
$numberkeyboard-background-color: #f2f3f5 !default;
$numberkeyboard-header-height: 34px !default;
$numberkeyboard-header-padding: 6px 0 0 0 !default;
$numberkeyboard-header-color: #646566 !default;
$numberkeyboard-header-font-size: 16px !default;
$numberkeyboard-header-close-padding: 0 16px !default;
$numberkeyboard-header-close-color: #576b95 !default;
$numberkeyboard-header-close-font-size: 14px !default;
$numberkeyboard-header-close-background-color: transparent !default;
$numberkeyboard-key-background-color: #fff !default;
$numberkeyboard-key-active-background-color: #ebedf0 !default;
$numberkeyboard-key-height: 48px !default;
$numberkeyboard-key-line-height: 1.5 !default;
$numberkeyboard-key-border-radius: 8px !default;
$numberkeyboard-key-font-size: 28px !default;
$numberkeyboard-key-font-size-color: #333 !default;
$numberkeyboard-key-finish-font-size: 16px !default;
$numberkeyboard-key-finish-font-size-color: #fff !default;
$numberkeyboard-key-finish-background-color: #1989fa !default;
$numberkeyboard-key-activeFinsh-background-color: #0570db !default;
W
wangbei16 已提交
267

L
libin107 已提交
268 269 270 271
// countdown(✅)
$countdown-display: flex !default;
$countdown-color: inherit !default;
$countdown-font-size: initial !default;
W
wangbei16 已提交
272

L
libin107 已提交
273 274
//large price(✅)
$price-symbol-big-size: 18px !default;
275
$price-integer-big-size: 24px !default;
L
libin107 已提交
276 277 278 279
$price-decimal-big-size: 18px !default;

//normal price(✅)
$price-symbol-medium-size: 14px !default;
280
$price-integer-medium-size: 16px !default;
L
libin107 已提交
281 282 283 284
$price-decimal-medium-size: 14px !default;

// small price(✅)
$price-symbol-small-size: 10px !default;
285
$price-integer-small-size: 12px !default;
L
libin107 已提交
286
$price-decimal-small-size: 10px !default;
W
wangbei16 已提交
287

L
libin107 已提交
288
//avatar(✅)
289 290 291 292 293 294 295
$avatar-square: 5px !default;
$avatar-large-width: 60px !default;
$avatar-large-height: 60px !default;
$avatar-small-width: 32px !default;
$avatar-small-height: 32px !default;
$avatar-normal-width: 40px !default;
$avatar-normal-height: 40px !default;
W
wangbei16 已提交
296

L
libin107 已提交
297
//switch(✅)
298 299
$switch-close-bg-color: #ebebeb !default;
$switch-close--cline-bg-color: #f0f0f0 !default;
L
libin107 已提交
300 301 302 303 304 305 306 307 308 309
$switch-width: 36px !default;
$switch-height: 21px !default;
$switch-line-height: 21px !default;
$switch-border-radius: 21px !default;
$switch-inside-width: 13px !default;
$switch-inside-height: 13px !default;
$switch-inside-open-transform: translateX(146%) !default;
$switch-inside-close-transform: translateX(30%) !default;

// toast(✅)
310 311 312 313 314 315 316 317
$toast-title-font-size: 16px !default;
$toast-text-font-size: 14px !default;
$toast-font-color: $white !default;
$toast-inner-padding: 24px 30px !default;
$toast-inner-bg-color: rgba(0, 0, 0, 0.8) !default;
$toast-inner-border-radius: 12px !default;
$toast-cover-bg-color: rgba(0, 0, 0, 0) !default;

L
libin107 已提交
318
//backtop(✅)
319
$backtop-border-color: #e0e0e0 !default;
W
wangbei16 已提交
320

L
libin107 已提交
321
// calendar(✅)
322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
$calendar-primary-color: $primary-color !default;
$calendar-choose-color: rgba($primary-color, 0.09) !default;
$calendar-choose-font-color: $primary-color !default;
$calendar-base-color: #333333 !default;
$calendar-disable-color: #d1d0d0 !default;
$calendar-base-font: $font-size-3 !default;
$calendar-title-font: $font-size-4 !default;
$calendar-title-font-weight: 500 !default;
$calendar-sub-title-font: $font-size-2 !default;
$calendar-text-font: $font-size-1 !default;
$calendar-day-font: 16px !default;
$calendar-day-active-border-radius: 0px !default;
$calendar-day-width: 14.28% !default;
$calendar-day-height: 64px !default;
$calendar-day-font-weight: 500 !default;
$calendar-day67-font-color: $primary-color !default;
$calendar-top-slot-height: 24px !default;
L
libin107 已提交
339
$calendar-month-title-font-size: inherit !default;
W
wangbei16 已提交
340

L
libin107 已提交
341
//overlay(✅)
342
$overlay-bg-color: rgba(0, 0, 0, 0.7) !default;
W
wangbei16 已提交
343

L
libin107 已提交
344
//popup(✅)
345 346
$popup-close-icon-margin: 16px !default;
$popup-border-radius: 20px !default;
W
wangbei16 已提交
347

L
libin107 已提交
348
// Notify(✅)
349 350 351 352
$notify-text-color: $white !default;
$notify-padding: 12px 0 !default;
$notify-font-size: 14px !default;
$notify-height: 44px !default;
L
libin107 已提交
353
$notify-line-height: auto !default;
W
wangbei16 已提交
354 355 356 357 358 359
$notify-base-background-color: linear-gradient(
  135deg,
  rgba(250, 44, 25, 1) 0%,
  rgba(250, 63, 25, 1) 45%,
  rgba(250, 89, 25, 1) 83%,
  rgba(250, 100, 25, 1) 100%
360
) !default;
W
wangbei16 已提交
361 362 363 364
$notify-primary-background-color: linear-gradient(
  315deg,
  rgba(73, 143, 242, 1) 0%,
  rgba(73, 101, 242, 1) 100%
365
) !default;
W
wangbei16 已提交
366 367 368 369 370 371
$notify-success-background-color: linear-gradient(
  135deg,
  rgba(38, 191, 38, 1) 0%,
  rgba(39, 197, 48, 1) 45%,
  rgba(40, 207, 63, 1) 83%,
  rgba(41, 212, 70, 1) 100%
372 373
) !default;
$notify-danger-background-color: rgba(250, 50, 25, 1) !default;
W
wangbei16 已提交
374 375 376 377
$notify-warning-background-color: linear-gradient(
  135deg,
  rgba(255, 93, 13, 1) 0%,
  rgba(255, 154, 13, 1) 100%
378
) !default;
W
wangbei16 已提交
379

L
libin107 已提交
380
// rate(✅)
381 382
$rate-icon-color: $primary-color !default;
$rate-icon-void-color: $disable-color !default;
W
wangbei16 已提交
383

L
libin107 已提交
384
// tabbar(✅)
385 386 387 388 389 390 391
$tabbar-active-color: $primary-color !default;
$tabbar-unactive-color: $primary-color !default;
$tabbar-border-top: 1px solid #eee !default;
$tabbar-border-bottom: 1px solid #eee !default;
$tabbar-box-shadow: none !default;
$tabbar-item-text-font-size: $font-size-0 !default;
$tabbar-item-text-line-height: initial !default;
L
libin107 已提交
392 393
$tabbar-height: 50px !default;
$tabbar-word-margin-top: auto !default;
W
wangbei16 已提交
394

L
libin107 已提交
395 396
//infiniteloading(✅)
$infiniteloading-bottom-color: #c8c8c8 !default;
W
wangbei16 已提交
397

L
libin107 已提交
398
//range(✅)
399 400 401 402
$range-tip-font-color: #333333 !default;
$range-bg-color: rgba($primary-color, 0.5) !default;
$range-bg-color-tick: #fa958c !default;
$range-bar-bg-color: linear-gradient(
403 404 405
  135deg,
  $primary-color 0%,
  $primary-color-end 100%
406 407 408 409 410
) !default;
$range-bar-btn-bg-color: $white !default;
$range-bar-btn-width: 24px !default;
$range-bar-btn-height: 24px !default;
$range-bar-btn-border: 1px solid $primary-color !default;
W
wangbei16 已提交
411

L
libin107 已提交
412 413 414 415 416 417 418
//swiper(✅)
$swiper-pagination-item-background-color: #ddd !default;
$swiper-pagination-item-width: 8px !default;
$swiper-pagination-item-height: 3px !default;
$swiper-pagination-item-margin-right: 7px !default;
$swiper-pagination-item-border-radius: 2px !default;

W
wangbei16 已提交
419
//address
420 421 422 423
$address-region-tab-line: linear-gradient(
  90deg,
  $primary-color 0%,
  $primary-color-end 100%
424
) !default;
L
libin107 已提交
425 426 427 428 429 430 431 432 433 434 435 436 437
$address-icon-color: $primary-color !default;
$address-header-title-font-size: 18px !default;
$address-header-title-color: #262626 !default;
$address-region-tab-font-size: 13px !default;
$address-region-tab-color: #1d1e1e !default;
$address-region-tab-active-item-font-weight: bold !default;
$address-region-tab-line-border-radius: 0 !default;
$address-region-tab-line-opacity: 1 !default;
$address-region-item-color: #333 !default;
$address-region-item-font-size: $font-size-1 !default;
$address-item-margin-right: 9px !default;

//steps(✅)
438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464
$steps-base-icon-width: 25px !default;
$steps-base-icon-height: 25px !default;
$steps-base-icon-line-height: 25px !default;
$steps-base-icon-font-size: 13px !default;
$steps-base-title-font-size: 14px !default;
$steps-base-line-color: #909ca4 !default;
$steps-base-title-color: #909ca4 !default;
$steps-base-title-margin-bottom: 10px !default;
$steps-base-content-font-size: 14px !default;
$steps-base-content-color: #666 !default;

$steps-wait-icon-bg-color: #959fb1 !default;
$steps-wait-icon-color: $white !default;
$steps-wait-head-color: #909ca4 !default;
$steps-wait-head-border-color: #909ca4 !default;
$steps-wait-content-color: #909ca4 !default;

$steps-finish-head-color: $primary-color !default;
$steps-finish-head-border-color: $primary-color !default;
$steps-finish-title-color: $primary-color !default;
$steps-finish-line-background: $primary-color !default;
$steps-finish-icon-text-color: $white !default;

$steps-process-head-color: $white !default;
$steps-process-head-border-color: $primary-color !default;
$steps-process-title-color: $primary-color !default;
$steps-process-icon-text-color: $primary-color !default;
W
wangbei16 已提交
465

L
libin107 已提交
466
// dialog(✅)
467
$dialog-width: 296px !default;
L
libin107 已提交
468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488
$dialog-header-font-weight: normal !default;
$dialog-header-color: rgba(38, 38, 38, 1) !default;
$dialog-footer-justify-content: space-around !default;
$dialog-min-height: 156px !default;
$dialog-padding: 28px 24px 16px 24px !default;
$dialog-header-height: 20px !default;
$dialog-header-color: rgba(38, 38, 38, 1) !default;
$dialog-content-margin: 20px 0 !default;
$dialog-content-max-height: 268px !default;
$dialog-content-line-height: 16px !default;
$dialog-mask-z-index: 1050 !default;
$dialog-mask-background-color: rgba($black, 0.7) !default;
$dialog-outer-z-index: 2000 !default;
$dialog-outer-bordder-radius: 20px !default;
$dialog-vertical-footer-ok-margin-top: 10px !default;
$dialog-footer-button-min-width: 100px !default;
$dialog-footer-cancel-margin-right: 20px !default;
$dialog-footer-ok-max-width: 128px !default;
// 在组件中import
//@import './mixins/index';
//@import './animation/index';
W
wangbei16 已提交
489

L
libin107 已提交
490
// checkbox(✅)
O
oasis-cloud 已提交
491 492 493 494 495 496
$checkbox-label-color: #1d1e1e !default;
$checkbox-label-disable-color: #999 !default;
$checkbox-icon-disable-color: #d6d6d6 !default;
$checkbox-label-margin-left: 15px !default;
$checkbox-label-font-size: 14px !default;
$checkbox-icon-font-size: 18px !default;
L
libin107 已提交
497
$checkbox-icon-disable-color2: $help-color !default;
W
wangbei16 已提交
498

L
libin107 已提交
499
//radio(✅)
W
wangbei16 已提交
500
$radio-label-font-color: #1d1e1e !default;
501
$radio-label-font-active-color: $primary-color !default;
W
wangbei16 已提交
502 503
$radio-label-disable-color: #999 !default;
$radio-icon-disable-color: #d6d6d6 !default;
504 505
$radio-label-button-border-color: $primary-color !default;
$radio-label-button-background: rgba($primary-color, 0.05) !default;
L
libin107 已提交
506 507 508 509 510 511 512 513 514
$radio-label-margin-left: 15px !default;
$radio-button-border-radius: 15px !default;
$radio-label-font-size: 14px !default;
$radio-button-font-size: 12px !default;
$radio-button-padding: 5px 18px !default;
$radio-icon-font-size: 18px !default;
$radio-icon-disable-color2: $help-color !default;

// signature(✅)
515
$signature-border-color: #dadada;
516 517 518 519
$signature-border-width: 1px;
$signature-height: 10rem;
$signature-margin-bottom: 1rem;
$signature-btn-margin-right: 15px;
520

L
libin107 已提交
521
//fixednav(✅)
522 523 524
$fixednav-bg-color: $white !default;
$fixednav-font-color: $black !default;
$fixednav-index: 201 !default;
525 526
$fixednav-btn-bg: linear-gradient(
  135deg,
527 528
  $primary-color 0%,
  $primary-color-end 100%
529
) !default;
L
libin107 已提交
530
$fixednav-item-active-color: $primary-color !default;
W
wangbei16 已提交
531

L
libin107 已提交
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577
// NoticeBar(✅)
$noticebar-background: rgba(251, 248, 220, 1) !default;
$noticebar-color: #d9500b !default;
$noticebar-font-size: 14px !default;
$noticebar-height: 40px !default;
$noticebar-line-height: 24px !default;
$noticebar-left-icon-width: 16px !default;
$noticebar-right-icon-width: 16px !default;
$noticebar-box-padding: 0 16px !default;
$noticebar-wrapable-padding: 16px !default;
$noticebar-lefticon-margin: 0px 10px !default;
$noticebar-righticon-margin: 0px 10px !default;

// TimeSelect(✅)
$timeselect-title-font-size: $font-size-2 !default;
$timeselect-title-color: $title-color !default;
$timeselect-title-width: 100% !default;
$timeselect-title-height: 50px !default;
$timeselect-title-line-height: 50px !default;
$timeselect-pannel-bg-color: #f6f7f9 !default;

// TimePannel(✅)
$timeselect-timepannel-text-color: $title-color2 !default;
$timeselect-timepannel-font-size: $font-size-2 !default;
$timeselect-timepannel-cur-bg-color: $white !default;
$timeselect-timepannel-cur-text-color: #333333 !default;
$timeselect-timepannel-width: 140px !default;
$timeselect-timepannel-height: 40px !default;
$timeselect-timepannel-padding: 15px !default;

// TimeDetail(✅)
$timeselect-timedetail-padding: 0 5px 50px 13px !default;
$timeselect-timedetail-item-width: 100px !default;
$timeselect-timedetail-item-height: 50px !default;
$timeselect-timedetail-item-line-height: 50px !default;
$timeselect-timedetail-item-bg-color: #f6f7f9 !default;
$timeselect-timedetail-item-border-radius: 5px !default;
$timeselect-timedetail-item-text-color: #333333 !default;
$timeselect-timedetail-item-text-font-size: $font-size-2 !default;
$timeselect-timedetail-item-cur-bg-color: rgba($primary-color, 0.15) !default;
$timeselect-timedetail-item-cur-border: $primary-color !default;
$timeselect-timedetail-item-cur-text-color: $primary-color !default;
$timeselect-timedetail-time-text-color: #999 !default;
$timeselect-timedetail-time-font-size: $font-size-1 !default;

//tag(✅)
578
$tag-font-size: 12px !default;
L
libin107 已提交
579 580
$tag-default-border-radius: 4px !default;
$tag-round-border-radius: 8px !default;
581 582 583 584 585 586 587 588 589
$tag-default-background-color: #000000 !default;
$tag-primary-background-color: #3460fa !default;
$tag-success-background-color: #4fc08d !default;
$tag-danger-background-color: linear-gradient(
  135deg,
  rgba(242, 20, 12, 1) 0%,
  rgba(232, 34, 14, 1) 69.83950099728881%,
  rgba(242, 77, 12, 1) 100%
) !default;
L
libin107 已提交
590
$tag-danger-background-color-plain: #df3526 !default;
591 592 593 594 595
$tag-warning-background-color: #f3812e !default;
$tag-default-color: #ffffff !default;
$tag-border-width: 1px !default;
$tag-plain-background-color: #fff !default;
$tag-plain-color: rgb(250, 36, 0) !default;
L
libin107 已提交
596
$tag-height: auto !default;
597

L
libin107 已提交
598
//badge(✅)
599 600 601 602 603
$badge-background-color: linear-gradient(
  135deg,
  $primary-color 0%,
  $primary-color-end 100%
) !default;
L
libin107 已提交
604
$badge-color: #fff !default;
605 606
$badge-font-size: $font-size-1 !default;
$badge-default-background-color: rgba(255, 255, 255, 1) !default;
L
libin107 已提交
607 608 609 610 611 612 613 614 615 616
$badge-border-radius: 14px !default;
$badge-padding: 0 5px !default;
$badge-content-transform: translateY(-50%) translateX(100%) !default;
$badge-z-index: 1 !default;
$badge-dot-width: 7px !default;
$badge-dot-height: 7px !default;
$badge-dot-border-radius: 7px !default;
$badge-dot-padding: 0px !default;

//popover(✅)
L
lzzwoniu 已提交
617 618 619 620 621
$popover-white-background-color: rgba(255, 255, 255, 1) !default;
$popover-dark-background-color: rgba(75, 76, 77, 1) !default;
$popover-border-bottom-color: rgba(229, 229, 229, 1) !default;
$popover-primary-text-color: rgba(51, 51, 51, 1) !default;
$popover-disable-color: rgba(154, 155, 157, 1) !default;
L
libin107 已提交
622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
$popover-menu-item-padding: 8px 0 !default;
$popover-menu-item-margin: 0 8px !default;
$popover-menu-name-line-height: normal !default;

//progressr(✅)
$progress-border-radius: 12px !default;
$progress-text-padding: 0 5px !default;
$progress-text-font-size: 13px !default;
$progress-insidetext-border-radius: 5px !default;
$progress-inner-background-color: linear-gradient(
  135deg,
  $primary-color 0%,
  $primary-color-end 100%
) !default;
$progress-insidetext-background: $progress-inner-background-color !default;
$progress-outer-background-color: #f3f3f3 !default;
$progress-outer-border-radius: 12px !default;
639
$progress-insidetext-border-radius: 5px !default;
L
libin107 已提交
640 641 642 643 644 645 646 647 648
$progress-insidetext-padding: 3px 5px 3px 6px !default;
$progress-insidetext-top: -42% !default;
$progress-small-text-top: -100% !default;
$progress-small-font-size: 7px !default;
$progress-small-padding: 0 4px !default;
$progress-small-height: 5px !default;
$progress-small-text-font-size: 7px !default;
$progress-small-text-line-height: 10px !default;
$progress-small-text-padding: 2px 4px !default;
649
$progress-small-text-top: -100% !default;
L
libin107 已提交
650 651 652 653 654
$progress-base-font-size: 9px !default;
$progress-base-padding: 0 5px !default;
$progress-base-height: 10px !default;
$progress-base-text-font-size: 9px !default;
$progress-base-text-line-height: 13px !default;
655 656
$progress-base-text-padding: $progress-insidetext-padding !default;
$progress-base-text-top: $progress-insidetext-top !default;
L
libin107 已提交
657 658 659 660 661 662 663
$progress-large-font-size: 13px !default;
$progress-large-padding: 0 5px !default;
$progress-large-height: 15px !default;
$progress-large-text-font-size: 13px !default;
$progress-large-text-line-height: 18px !default;
$progress-large-text-padding: $progress-insidetext-padding !default;
$progress-large-text-top: $progress-insidetext-top !default;
L
lzzwoniu 已提交
664

L
libin107 已提交
665
//pagination(✅)
L
lkjh3214 已提交
666 667 668 669 670
$pagination-color: $primary-color !default;
$pagination-font-size: $font-size-2 !default;
$pagination-item-border-color: #e4e7eb !default;
$pagination-active-background-color: linear-gradient(
  135deg,
671 672
  $primary-color 0%,
  $primary-color-end 100%
L
lkjh3214 已提交
673 674 675 676 677 678
) !default;
$pagination-disable-color: rgba(116, 116, 116, 0.31) !default;
$pagination-disable-background-color: #f7f8fa !default;
$pagination-item-border-width: 1px !default;
$pagination-item-border-radius: 2px !default;
$pagination-prev-next-padding: 0 11px !default;
Y
yangjinjun3 已提交
679

L
libin107 已提交
680
// tabs(✅)
681 682 683 684 685 686
$tabs-tab-smile-color: $primary-color !default;
$tabs-titles-border-radius: 0 !default;
$tabs-titles-item-large-font-size: $font-size-3 !default;
$tabs-titles-item-font-size: $font-size-2 !default;
$tabs-titles-item-small-font-size: $font-size-1 !default;
$tabs-titles-item-color: $title-color !default;
L
libin107 已提交
687
$tabs-titles-item-active-color: $title-color !default;
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704
$tabs-titles-background-color: $help-color !default;
$tabs-horizontal-tab-line-color: linear-gradient(
  90deg,
  $primary-color 0%,
  rgba($primary-color, 0.15) 100%
) !default;
$tabs-horizontal-titles-height: 46px !default;
$tabs-horizontal-titles-item-min-width: 50px !default;
$tabs-horizontal-titles-item-active-line-width: 40px !default;
$tabs-vertical-tab-line-color: linear-gradient(
  180deg,
  $primary-color 0%,
  rgba($primary-color, 0.15) 100%
) !default;
$tabs-vertical-titles-item-height: 40px !default;
$tabs-vertical-titles-item-active-line-height: 14px !default;
$tabs-vertical-titles-width: 100px !default;
L
libin107 已提交
705 706
$tabs-titles-item-line-border-radius: 0 !default;
$tabs-titles-item-line-opacity: 1 !default;
707

L
libin107 已提交
708
// indicator(✅)
L
lkjh3214 已提交
709 710 711 712
$indicator-color: $primary-color !default;
$indicator-dot-color: $disable-color !default;
$indicator-white: $white !default;
$indicator-size: 18px !default;
X
xiaoyatong 已提交
713
$indicator-dot-size: calc(#{$indicator-size} / 3) !default;
L
lkjh3214 已提交
714 715
$indicator-border-size: $indicator-size + 2 !default;
$indicator-number-font-size: 10px !default;
716 717 718 719
$indicator-dot-margin: 4px !default;
$indicator-dot-vertical-margin: 4px !default;
$indicator-dot-first-margin: 0px !default;
$indicator-dot-last-margin: 0px !default;
L
lkjh3214 已提交
720

L
libin107 已提交
721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756
// menu(✅)
$menu-bar-line-height: 48px !default;
$menu-item-font-size: $font-size-2 !default;
$menu-item-text-color: $title-color !default;
$menu-item-active-text-color: $primary-color !default;
$menu-bar-border-bottom-color: #eaf0fb !default;
$menu-bar-opened-z-index: 2001 !default;
$menu-item-disabled-color: #969799 !default;
$menu-title-text-padding-left: 8px !default;
$menu-title-text-padding-right: 8px !default;
$menu-item-content-padding: 12px 24px !default;
$menu-item-content-max-height: 214px !default;
$menu-item-option-padding-top: 12px !default;
$menu-item-option-padding-bottom: 12px !default;
$menu-item-option-i-margin-right: 6px !default;
$menu-bar-box-shadow: 0 2px 12px rgba(89, 89, 89, 0.12) !default;
$menu-scroll-fixed-top: 0 !default;
$menu-scroll-fixed-z-index: 1000 !default;
$menu-active-item-font-weight: 500 !default;

// collapse(✅)
$collapse-item-padding: 13px 36px 13px 26px !default;
$collapse-item-color: #666666 !default;
$collapse-item-disabled-color: #c8c9cc !default;
$collapse-item-icon-color: #666666 !default;
$collapse-item-font-size: $font-size-2 !default;
$collapse-item-line-height: 24px !default;
$collapse-item-sub-title-color: #666666 !default;
$collapse-wrapper-content-padding: 12px 26px !default;
$collapse-wrapper-empty-content-padding: 0 26px !default;
$collapse-wrapper-content-color: #666666 !default;
$collapse-wrapper-content-font-size: $font-size-2 !default;
$collapse-wrapper-content-line-height: 1.5 !default;
$collapse-wrapper-content-background-color: $white !default;

// searchbar(✅)
V
vickyYe 已提交
757

L
libin107 已提交
758 759 760 761 762 763 764 765 766 767 768 769 770
$searchbar-background: $white !default;
$searchbar-right-out-color: $black !default;
$searchbar-padding: 9px 16px !default;
$searchbar-width: 100% !default;
$searchbar-action-text-color: #323233 !default;
$searchbar-input-height: 32px !default;
$searchbar-input-padding: 0 28px !default;
$searchbar-input-background: #f7f7f7 !default;
$searchbar-input-width: 100% !default;
$searchbar-input-border-radius: 16px !default;
$searchbar-input-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.04) !default;
$searchbar-input-bar-color: inherit !default;
$searchbar-input-bar-placeholder-color: inherit !default;
V
vickyYe 已提交
771

L
libin107 已提交
772
// empty(✅)
773

L
libin107 已提交
774 775 776 777 778
$empty-padding: 32px 0 !default;
$empty-image-size: 170px !default;
$empty-description-margin-top: 4px !default;
$empty-description-color: #666666 !default;
$empty-description-font-size: 14px !default;
779 780
$empty-description-line-height: 20px !default;
$empty-description-padding: 0 40px !default;
781

L
libin107 已提交
782
// cascader(✅)
783
$cascader-font-size: $font-size-2 !default;
L
libin107 已提交
784 785 786 787 788 789 790 791 792 793 794 795 796 797
$cascader-line-height: 22px !default;
$cascader-title-padding: 24px 20px 17px !default;
$cascader-title-font-size: 18px !default;
$cascader-title-line-height: 20px !default;
$cascader-pane-height: 342px !default;
$cascader-pane-paddingTop: 10px !default;
$cascader-icon-checklist-marginLeft: 10px !default;
$cascader-tabs-item-padding: 0 10px !default;
$cascader-bar-padding: 24px 20px 17px !default;
$cascader-bar-font-size: $font-size-4 !default;
$cascader-bar-line-height: 20px !default;
$cascader-bar-color: $title-color !default;
$cascader-item-padding: 10px 20px !default;
$cascader-item-color: $title-color !default;
798 799
$cascader-item-font-size: $font-size-2 !default;
$cascader-item-active-color: $primary-color !default;
L
libin107 已提交
800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869

// form(✅ todo:react版本该组件暂无,将变量先迁过来)
$form-item-error-line-color: $required-color !default;
$form-item-required-color: $required-color !default;
$form-item-error-message-color: $required-color !default;
$form-item-label-font-size: 14px !default;
$form-item-label-width: 90px !default;
$form-item-label-margin-right: 10px !default;
$form-item-label-text-align: left !default;
$form-item-required-margin-right: 4px !default;
$form-item-body-font-size: 14px !default;
$form-item-body-slots-text-align: left !default;
$form-item-body-input-text-align: left !default;
$form-item-tip-font-size: 10px !default;
$form-item-tip-text-align: left !default;

// skeleton(✅)
$skeleton-content-line-title-background-color: #efefef !default;

// sku(✅ todo:react版本该组件暂无,将变量先迁过来)
$sku-item-border: 1px solid $primary-color !default;
$sku-item-disable-line: line-through !default;
$sku-opetate-bg-default: linear-gradient(
  90deg,
  $primary-color,
  $primary-color-end 100%
) !default;
$sku-item-active-bg: rgba($primary-color, 0.15) !default;
$sku-opetate-bg-buy: linear-gradient(
  135deg,
  rgba(255, 186, 13, 1) 0%,
  rgba(255, 195, 13, 1) 69%,
  rgba(255, 207, 13, 1) 100%
) !default;
$sku-spec-height: 30px !default;
$sku-spec-line-height: $sku-spec-height !default;
$sku-spec-font-size: 11px !default;
$sku-spec-background: rgba(242, 242, 242, 1) !default;
$sku-spec-color: $black !default;
$sku-spec-margin-right: 12px !default;
$sku-spec-padding: 0 18px !default;
$sku-spec-title-font-weight: bold !default;
$sku-spec-title-font-size: 13px !default;
$sku-spec-title-color: $black !default;
$sku-spec-title-margin-bottom: 18px !default;
$sku-operate-btn-height: 54px !default;
$sku-operate-btn-border-top: 0 !default;
$sku-operate-btn-item-height: 40px !default;
$sku-operate-btn-item-line-height: $sku-operate-btn-item-height;
$sku-operate-btn-item-font-size: 15px !default;
$sku-operate-btn-item-font-weight: normal !default;
$sku-product-img-width: 100px !default;
$sku-product-img-height: $sku-product-img-width !default;
$sku-product-img-border-radius: 0 !default;

// card(✅)
$card-font-size-0: $font-size-0 !default;
$card-font-size-1: $font-size-1 !default;
$card-font-size-2: $font-size-2 !default;
$card-font-size-3: $font-size-3 !default;
$card-left-border-radius: 0 !default;
$card-left-background-color: inherit !default;

// grid(✅)
$grid-border-color: #f5f6f7 !default;
$grid-item-content-padding: 16px 8px !default;
$grid-item-content-bg-color: $white !default;
$grid-item-text-margin: 8px !default;
$grid-item-text-color: $title-color2 !default;
$grid-item-text-font-size: $font-size-1 !default;
870

L
libin107 已提交
871
// table(✅)
Y
yangjinjun3 已提交
872 873 874 875 876
$table-border-color: #ececec !default;
$table-cols-padding: 10px !default;
$table-tr-even-bg-color: #f3f3f3 !default;
$table-tr-odd-bg-color: $white !default;

L
libin107 已提交
877 878 879 880 881 882 883 884 885 886 887 888 889
// navbar(✅)
$navbar-height: 44px !default;
$navbar-margin-bottom: 20px !default;
$navbar-padding: 13px 16px !default;
$navbar-background: $white !default;
$navbar-box-shadow: 0px 1px 7px 0px rgba(237, 238, 241, 1) !default;
$navbar-color: $title-color2 !default;
$navbar-title-base-font: $font-size-2 !default;
$navbar-title-font: $font-size-2 !default;
$navbar-title-font-weight: 0 !default;
$navbar-title-font-color: $navbar-color !default;
$navbar-title-width: 100px !default;
$navbar-title-icon-margin: 0 0 0 13px !default;
890

L
libin107 已提交
891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912
// sidenavbar(✅)
$sidenavbar-content-bg-color: $white !default;

// subsidenavbar(✅)
$sidenavbar-sub-title-border-color: #f6f6f6 !default;
$sidenavbar-sub-title-bg-color: #f6f6f6 !default;
$sidenavbar-sub-title-font-size: $font-size-large !default;
$sidenavbar-sub-title-radius: 0 !default;
$sidenavbar-sub-title-border: 0 !default;
$sidenavbar-sub-title-width: 100% !default;
$sidenavbar-sub-title-height: 40px !default;
$sidenavbar-sub-title-text-line-height: 40px !default;
$sidenavbar-sub-title-text-color: $title-color !default;

// sidenavbaritem(✅)
$sidenavbar-item-title-color: #333 !default;
$sidenavbar-item-title-bg-color: $white !default;
$sidenavbar-item-height: 40px !default;
$sidenavbar-item-line-height: 40px !default;
$sidenavbar-item-font-size: 16px !default;

// elevator(✅)
913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955
$elevator-list-item-highcolor: $primary-color !default;
$elevator-list-item-font-size: 12px !default;
$elevator-list-item-font-color: #333333 !default;
$elevator-list-item-name-padding: 0 20px !default;
$elevator-list-item-name-height: 30px !default;
$elevator-list-item-name-line-height: 30px !default;
$elevator-list-item-code-font-size: 14px !default;
$elevator-list-item-code-font-color: #1a1a1a !default;
$elevator-list-item-code-font-weight: 500 !default;
$elevator-list-item-code-padding: 0 20px !default;
$elevator-list-item-code-height: 35px !default;
$elevator-list-item-code-line-height: 35px !default;
$elevator-list-item-code-after-width: 100% !default;
$elevator-list-item-code-after-height: 1px !default;
$elevator-list-item-code-after-bg-color: #f5f5f5 !default;
$elevator-list-item-code-current-box-shadow: 0 3px 3px 1px
  rgba(240, 240, 240, 1) !default;
$elevator-list-item-code-current-bg-color: #fff !default;
$elevator-list-item-code-current-border-radius: 50% !default;
$elevator-list-item-code-current-width: 45px !default;
$elevator-list-item-code-current-height: 45px !default;
$elevator-list-item-code-current-line-height: 45px !default;
$elevator-list-item-code-current-position: absolute !default;
$elevator-list-item-code-current-right: 60px !default;
$elevator-list-item-code-current-top: 50% !default;
$elevator-list-item-code-current-transform: translateY(-50%) !default;
$elevator-list-item-code-current-text-align: center !default;
$elevator-list-item-bars-position: absolute !default;
$elevator-list-item-bars-right: 8px !default;
$elevator-list-item-bars-top: 50% !default;
$elevator-list-item-bars-transform: translateY(-50%) !default;
$elevator-list-item-bars-padding: 15px 0 !default;
$elevator-list-item-bars-background-color: #eeeff2 !default;
$elevator-list-item-bars-border-radius: 6px !default;
$elevator-list-item-bars-text-align: center !default;
$elevator-list-item-bars-z-index: 1 !default;
$elevator-list-item-bars-inner-item-padding: 3px !default;
$elevator-list-item-bars-inner-item-font-size: 10px !default;
$elevator-list-fixed-color: $primary-color !default;
$elevator-list-fixed-bg-color: $white !default;
$elevator-list-fixed-box-shadow: 0 0 10px #eee !default;
$elevator-list-item-bars-inner-item-active-color: $primary-color !default;

L
libin107 已提交
956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989
// list(✅)
$list-item-margin: 0 0 10px 0 !default;

//Ecard(✅ todo:react版本该组件暂无,将变量先迁过来)
$ecard-bg-color: #f0f2f5 !default;

//addresslist(✅ todo:react版本该组件暂无,将变量先迁过来)
$addresslist-bg: #fff !default;
$addresslist-border: #f0f0f0 !default;
$addresslist-font-color: #333333 !default;
$addresslist-font-size: 16px !default;
$addresslist-mask-bg: rgba(0, 0, 0, 0.4) !default;
$addresslist-addr-font-color: #666666 !default;
$addresslist-addr-font-size: 12px !default;
$addresslist-set-bg: #f5a623 !default;
$addresslist-del-bg: #e1251b !default;
$addresslist-contnts-contact-default: $primary-color !default;
$addresslist-contnts-contact-color: $white !default;

//category(✅ todo:react版本该组件暂无,将变量先迁过来)
$category-bg-color: rgba(255, 255, 255, 1) !default;
$category-list-left-bg-color: rgba(246, 247, 249, 1) !default;
$category-list-item-color: $title-color !default;
$category-list-item-checked-color: rgba(255, 255, 255, 1) !default;
$category-list-item-checked-img-bg-color: $primary-color !default;
$category-pane-gray-color: #666 !default;
$category-pane-border-color: rgb(153, 153, 153) !default;
$category-pane-title-color: rgba(51, 51, 51, 1) !default;

// circleProgress(✅)
$circleprogress-primary-color: $primary-color !default;
$circleprogress-path-color: #e5e9f2 !default;
$circleprogress-text-color: #000000 !default;
$circleprogress-text-size: $font-size-3 !default;
990

L
libin107 已提交
991 992 993 994 995
// Comment(✅ todo:react版本该组件暂无,将变量先迁过来)
$comment-header-user-name-color: rgba(51, 51, 51, 1) !default;
$comment-header-time-color: rgba(153, 153, 153, 1) !default;
$comment-bottom-label-color: rgba(153, 153, 153, 1) !default;
$comment-shop-color: $primary-color !default;
996

L
libin107 已提交
997 998
// Ellipsis(✅ todo:react版本该组件暂无,将变量先迁过来)
$ellipsis-expand-collapse-color: #3460fa !default;
Y
Ymm 已提交
999

L
libin107 已提交
1000 1001 1002 1003 1004
// WaterMark(✅ todo:react版本该组件暂无,将变量先迁过来)
$watermark-z-index: 2000 !default;

// invoice(✅ todo:react版本该组件暂无,将变量先迁过来)
$invoice-padding: 10px 10px 20px !default;
A
ailululu 已提交
1005

L
libin107 已提交
1006 1007 1008
// TrendArrow(✅ todo:react版本该组件暂无,将变量先迁过来)
$trendarrow-font-size: 14px !default;
$trendarrow-before-icon-margin: 4px !default;
A
ailululu 已提交
1009

L
libin107 已提交
1010
// animatingnumbers(✅)
1011 1012 1013 1014 1015 1016 1017
$countup-height: 32px !default;
$countup-base-size: 18px !default;
$countup-border-raduis: 4px !default;
$countup-lr-margin: 1px !default;
$countup-bgcolor: #031f63 !default;
$countup-color: #ffffff !default;
$countup-width: 24px !default;
A
ailululu 已提交
1018

L
libin107 已提交
1019 1020 1021 1022 1023 1024 1025 1026
// layout(✅)
$row-content-color: #fff !default;
$row-content-background-color: #ff8881 !default;
$row-content-light-background-color: #ffc7c4 !default;
$row-content-border-radius: 6px !default;
$row-content-height: 50px !default;
$row-content-line-height: 40px !default;
$col-default-margin-bottom: 15px !default;
O
oasis-cloud 已提交
1027

L
libin107 已提交
1028 1029 1030 1031 1032 1033 1034
$row-content-color: #fff !default;
$row-content-background-color: #ff8881 !default;
$row-content-light-background-color: #ffc7c4 !default;
$row-content-border-radius: 6px !default;
$row-content-height: 50px !default;
$row-content-line-height: 40px !default;
$col-default-margin-bottom: 15px !default;