|
@@ -0,0 +1,914 @@
|
|
|
+// Color Palette
|
|
|
+@black: #000;
|
|
|
+@white: #fff;
|
|
|
+@gray-1: #f7f8fa;
|
|
|
+@gray-2: #f2f3f5;
|
|
|
+@gray-3: #ebedf0;
|
|
|
+@gray-4: #dcdee0;
|
|
|
+@gray-5: #c8c9cc;
|
|
|
+@gray-6: #969799;
|
|
|
+@gray-7: #646566;
|
|
|
+@gray-8: #323233;
|
|
|
+@gray-9: #f9f9f9;
|
|
|
+@gray-10: #999;
|
|
|
+@gray-11: #f0f0f0;
|
|
|
+@red: #ee0a24;
|
|
|
+@blue: #1989fa;
|
|
|
+// @orange: #ff976a;
|
|
|
+@orange: #F49532;
|
|
|
+@orange-dark: #ed6a0c;
|
|
|
+@orange-light: #fffbe8;
|
|
|
+@primary-color: #315EA3;
|
|
|
+@green: #07c160;
|
|
|
+
|
|
|
+// Gradient Colors
|
|
|
+@gradient-red: linear-gradient(to right, #ff6034, #ee0a24);
|
|
|
+@gradient-orange: linear-gradient(to right, #ffd01e, #ff8917);
|
|
|
+
|
|
|
+// Component Colors
|
|
|
+@text-color: @gray-8;
|
|
|
+@active-color: @gray-2;
|
|
|
+@active-opacity: 0.7;
|
|
|
+@disabled-opacity: 0.5;
|
|
|
+@background-color: @gray-1;
|
|
|
+@background-color-light: #fafafa;
|
|
|
+@text-link-color: #576b95;
|
|
|
+
|
|
|
+// Padding
|
|
|
+@padding-base: 0.4rem;
|
|
|
+@padding-xs: @padding-base * 2;
|
|
|
+@padding-sm: @padding-base * 3;
|
|
|
+@padding-md: @padding-base * 4;
|
|
|
+@padding-lg: @padding-base * 6;
|
|
|
+@padding-xl: @padding-base * 8;
|
|
|
+
|
|
|
+// Font
|
|
|
+@font-size-xs: 1rem;
|
|
|
+@font-size-sm: 1.2rem;
|
|
|
+@font-size-md: 1.4rem;
|
|
|
+@font-size-lg: 1.6rem;
|
|
|
+@font-weight-bold: 500;
|
|
|
+@line-height-xs: 1.4rem;
|
|
|
+@line-height-sm: 1.8rem;
|
|
|
+@line-height-md: 2rem;
|
|
|
+@line-height-lg: 2.2rem;
|
|
|
+@base-font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue',
|
|
|
+ Helvetica, Segoe UI, Arial, Roboto, 'PingFang SC', 'miui', 'Hiragino Sans GB',
|
|
|
+ 'Microsoft Yahei', sans-serif;
|
|
|
+@price-integer-font-family: Avenir-Heavy, PingFang SC, Helvetica Neue, Arial,
|
|
|
+ sans-serif;
|
|
|
+
|
|
|
+// Animation
|
|
|
+@animation-duration-base: 0.3s;
|
|
|
+@animation-duration-fast: 0.2s;
|
|
|
+@animation-timing-function-enter: ease-out;
|
|
|
+@animation-timing-function-leave: ease-in;
|
|
|
+
|
|
|
+// Border
|
|
|
+@border-color: @gray-3;
|
|
|
+@border-width-base: 1px;
|
|
|
+@border-radius-sm: 2px;
|
|
|
+@border-radius-md: 4px;
|
|
|
+@border-radius-lg: 8px;
|
|
|
+@border-radius-max: 999px;
|
|
|
+
|
|
|
+// ActionSheet
|
|
|
+@action-sheet-max-height: 80%;
|
|
|
+@action-sheet-header-height: 4.8rem;
|
|
|
+@action-sheet-header-font-size: @font-size-lg;
|
|
|
+@action-sheet-description-color: @gray-6;
|
|
|
+@action-sheet-description-font-size: @font-size-md;
|
|
|
+@action-sheet-description-line-height: @line-height-md;
|
|
|
+@action-sheet-item-background: @white;
|
|
|
+@action-sheet-item-font-size: @font-size-lg;
|
|
|
+@action-sheet-item-line-height: @line-height-lg;
|
|
|
+@action-sheet-item-text-color: @text-color;
|
|
|
+@action-sheet-item-disabled-text-color: @gray-5;
|
|
|
+@action-sheet-subname-color: @gray-6;
|
|
|
+@action-sheet-subname-font-size: @font-size-sm;
|
|
|
+@action-sheet-subname-line-height: @line-height-sm;
|
|
|
+@action-sheet-close-icon-size: 2.2rem;
|
|
|
+@action-sheet-close-icon-color: @gray-5;
|
|
|
+@action-sheet-close-icon-active-color: @gray-6;
|
|
|
+@action-sheet-close-icon-padding: 0 @padding-md;
|
|
|
+@action-sheet-cancel-text-color: @gray-7;
|
|
|
+@action-sheet-cancel-padding-top: @padding-xs;
|
|
|
+@action-sheet-cancel-padding-color: @background-color;
|
|
|
+@action-sheet-loading-icon-size: 2.2rem;
|
|
|
+
|
|
|
+// AddressEdit
|
|
|
+@address-edit-padding: @padding-sm;
|
|
|
+@address-edit-buttons-padding: @padding-xl @padding-base;
|
|
|
+@address-edit-button-margin-bottom: @padding-sm;
|
|
|
+@address-edit-detail-finish-color: @primary-color;
|
|
|
+@address-edit-detail-finish-font-size: @font-size-sm;
|
|
|
+
|
|
|
+// AddressList
|
|
|
+@address-list-padding: @padding-sm @padding-sm 8rem;
|
|
|
+@address-list-disabled-text-color: @gray-6;
|
|
|
+@address-list-disabled-text-padding: @padding-base * 5 0 @padding-md;
|
|
|
+@address-list-disabled-text-font-size: @font-size-md;
|
|
|
+@address-list-disabled-text-line-height: @line-height-md;
|
|
|
+@address-list-add-button-z-index: 999;
|
|
|
+@address-list-item-padding: @padding-sm;
|
|
|
+@address-list-item-text-color: @text-color;
|
|
|
+@address-list-item-disabled-text-color: @gray-5;
|
|
|
+@address-list-item-font-size: 1.3rem;
|
|
|
+@address-list-item-line-height: @line-height-sm;
|
|
|
+@address-list-item-radio-icon-color: @red;
|
|
|
+@address-list-edit-icon-size: 2rem;
|
|
|
+
|
|
|
+// Badge
|
|
|
+@badge-size: 1.6rem;
|
|
|
+@badge-color: @white;
|
|
|
+@badge-padding: 0 0.3rem;
|
|
|
+@badge-font-size: @font-size-sm;
|
|
|
+@badge-font-weight: @font-weight-bold;
|
|
|
+@badge-border-width: @border-width-base;
|
|
|
+@badge-background-color: @red;
|
|
|
+@badge-dot-color: @red;
|
|
|
+@badge-dot-size: 0.8rem;
|
|
|
+@badge-font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
|
|
|
+
|
|
|
+// Button
|
|
|
+@button-mini-height: 2.4rem;
|
|
|
+@button-mini-font-size: @font-size-xs;
|
|
|
+@button-small-height: 3.2rem;
|
|
|
+@button-small-font-size: @font-size-sm;
|
|
|
+@button-normal-font-size: @font-size-md;
|
|
|
+@button-large-height: 5rem;
|
|
|
+@button-default-height: 4.4rem;
|
|
|
+@button-default-line-height: 1.2;
|
|
|
+@button-default-font-size: @font-size-lg;
|
|
|
+@button-default-color: @text-color;
|
|
|
+@button-default-background-color: @white;
|
|
|
+@button-default-border-color: @border-color;
|
|
|
+@button-primary-color: @white;
|
|
|
+@button-primary-background-color: @green;
|
|
|
+@button-primary-border-color: @green;
|
|
|
+@button-info-color: @white;
|
|
|
+@button-info-background-color: @primary-color;
|
|
|
+@button-info-border-color: @primary-color;
|
|
|
+@button-danger-color: @white;
|
|
|
+@button-danger-background-color: @red;
|
|
|
+@button-danger-border-color: @red;
|
|
|
+@button-warning-color: @white;
|
|
|
+@button-warning-background-color: @orange;
|
|
|
+@button-warning-border-color: @orange;
|
|
|
+@button-border-width: @border-width-base;
|
|
|
+@button-border-radius: @border-radius-sm;
|
|
|
+@button-round-border-radius: @border-radius-max;
|
|
|
+@button-plain-background-color: @white;
|
|
|
+@button-disabled-opacity: @disabled-opacity;
|
|
|
+
|
|
|
+// Calendar
|
|
|
+@calendar-background-color: @white;
|
|
|
+@calendar-popup-height: 80%;
|
|
|
+@calendar-header-box-shadow: 0 2px 10px rgba(125, 126, 128, 0.16);
|
|
|
+@calendar-header-title-height: 4.4rem;
|
|
|
+@calendar-header-title-font-size: @font-size-lg;
|
|
|
+@calendar-header-subtitle-font-size: @font-size-md;
|
|
|
+@calendar-weekdays-height: 3rem;
|
|
|
+@calendar-weekdays-font-size: @font-size-sm;
|
|
|
+@calendar-month-title-font-size: @font-size-md;
|
|
|
+@calendar-month-mark-color: fade(@gray-2, 80%);
|
|
|
+@calendar-month-mark-font-size: 16rem;
|
|
|
+@calendar-day-height: 6.4rem;
|
|
|
+@calendar-day-font-size: @font-size-lg;
|
|
|
+@calendar-range-edge-color: @white;
|
|
|
+@calendar-range-edge-background-color: @red;
|
|
|
+@calendar-range-middle-color: @red;
|
|
|
+@calendar-range-middle-background-opacity: 0.1;
|
|
|
+@calendar-selected-day-size: 5.4rem;
|
|
|
+@calendar-selected-day-color: @white;
|
|
|
+@calendar-info-font-size: @font-size-xs;
|
|
|
+@calendar-info-line-height: @line-height-xs;
|
|
|
+@calendar-selected-day-background-color: @red;
|
|
|
+@calendar-day-disabled-color: @gray-5;
|
|
|
+@calendar-confirm-button-height: 3.6rem;
|
|
|
+@calendar-confirm-button-margin: .7rem 0;
|
|
|
+
|
|
|
+// Card
|
|
|
+@card-padding: @padding-xs @padding-md;
|
|
|
+@card-font-size: @font-size-sm;
|
|
|
+@card-text-color: @text-color;
|
|
|
+@card-background-color: @background-color-light;
|
|
|
+@card-thumb-size: 8.8rem;
|
|
|
+@card-thumb-border-radius: @border-radius-lg;
|
|
|
+@card-title-line-height: 1.6rem;
|
|
|
+@card-desc-color: @gray-7;
|
|
|
+@card-desc-line-height: @line-height-md;
|
|
|
+@card-price-color: @gray-8;
|
|
|
+@card-origin-price-color: @gray-6;
|
|
|
+@card-num-color: @gray-6;
|
|
|
+@card-origin-price-font-size: @font-size-xs;
|
|
|
+@card-price-font-size: @font-size-sm;
|
|
|
+@card-price-integer-font-size: @font-size-lg;
|
|
|
+@card-price-font-family: @price-integer-font-family;
|
|
|
+
|
|
|
+// Cascader
|
|
|
+@cascader-header-height: 4.8rem;
|
|
|
+@cascader-title-font-size: @font-size-lg;
|
|
|
+@cascader-title-line-height: 2rem;
|
|
|
+@cascader-close-icon-size: 2.2rem;
|
|
|
+@cascader-close-icon-color: @gray-5;
|
|
|
+@cascader-close-icon-active-color: @gray-6;
|
|
|
+@cascader-selected-icon-size: 1.8rem;
|
|
|
+@cascader-tabs-height: 4.8rem;
|
|
|
+@cascader-active-color: @red;
|
|
|
+@cascader-options-height: 38.4rem;
|
|
|
+@cascader-tab-color: @text-color;
|
|
|
+@cascader-unselected-tab-color: @gray-6;
|
|
|
+
|
|
|
+// Cell
|
|
|
+@cell-font-size: @font-size-md;
|
|
|
+@cell-line-height: 2.4rem;
|
|
|
+@cell-vertical-padding: 1rem;
|
|
|
+@cell-horizontal-padding: @padding-md;
|
|
|
+@cell-text-color: @text-color;
|
|
|
+@cell-background-color: @white;
|
|
|
+@cell-border-color: @border-color;
|
|
|
+@cell-active-color: @active-color;
|
|
|
+@cell-required-color: @red;
|
|
|
+@cell-label-color: @gray-6;
|
|
|
+@cell-label-font-size: @font-size-sm;
|
|
|
+@cell-label-line-height: @line-height-sm;
|
|
|
+@cell-label-margin-top: @padding-base;
|
|
|
+@cell-value-color: @gray-6;
|
|
|
+@cell-icon-size: 1.6rem;
|
|
|
+@cell-right-icon-color: @gray-6;
|
|
|
+@cell-large-vertical-padding: @padding-sm;
|
|
|
+@cell-large-title-font-size: @font-size-lg;
|
|
|
+@cell-large-label-font-size: @font-size-md;
|
|
|
+
|
|
|
+// CellGroup
|
|
|
+@cell-group-background-color: @white;
|
|
|
+@cell-group-title-color: @gray-6;
|
|
|
+@cell-group-title-padding: @padding-md @padding-md @padding-xs;
|
|
|
+@cell-group-title-font-size: @font-size-md;
|
|
|
+@cell-group-title-line-height: 1.6rem;
|
|
|
+@cell-group-inset-padding: 0 @padding-md;
|
|
|
+@cell-group-inset-border-radius: @border-radius-lg;
|
|
|
+@cell-group-inset-title-padding: @padding-md @padding-md @padding-xs @padding-xl;
|
|
|
+
|
|
|
+// Checkbox
|
|
|
+@checkbox-size: 2rem;
|
|
|
+@checkbox-border-color: @gray-5;
|
|
|
+@checkbox-transition-duration: @animation-duration-fast;
|
|
|
+@checkbox-label-margin: @padding-xs;
|
|
|
+@checkbox-label-color: @text-color;
|
|
|
+@checkbox-checked-icon-color: @primary-color;
|
|
|
+@checkbox-disabled-icon-color: @gray-5;
|
|
|
+@checkbox-disabled-label-color: @gray-5;
|
|
|
+@checkbox-disabled-background-color: @border-color;
|
|
|
+
|
|
|
+// Circle
|
|
|
+@circle-size: 10rem;
|
|
|
+@circle-color: @primary-color;
|
|
|
+@circle-layer-color: @white;
|
|
|
+@circle-text-color: @text-color;
|
|
|
+@circle-text-font-weight: @font-weight-bold;
|
|
|
+@circle-text-font-size: @font-size-md;
|
|
|
+@circle-text-line-height: @line-height-md;
|
|
|
+
|
|
|
+// Collapse
|
|
|
+@collapse-item-transition-duration: @animation-duration-base;
|
|
|
+@collapse-item-content-padding: @padding-sm @padding-md;
|
|
|
+@collapse-item-content-font-size: @font-size-md;
|
|
|
+@collapse-item-content-line-height: 1.5;
|
|
|
+@collapse-item-content-text-color: @gray-6;
|
|
|
+@collapse-item-content-background-color: @white;
|
|
|
+@collapse-item-title-disabled-color: @gray-5;
|
|
|
+
|
|
|
+// ContactCard
|
|
|
+@contact-card-padding: @padding-md;
|
|
|
+@contact-card-add-icon-size: 4rem;
|
|
|
+@contact-card-add-icon-color: @primary-color;
|
|
|
+@contact-card-value-line-height: @line-height-md;
|
|
|
+
|
|
|
+// ContactEdit
|
|
|
+@contact-edit-padding: @padding-md;
|
|
|
+@contact-edit-fields-radius: @border-radius-md;
|
|
|
+@contact-edit-buttons-padding: @padding-xl 0;
|
|
|
+@contact-edit-button-margin-bottom: @padding-sm;
|
|
|
+@contact-edit-button-font-size: 1.6rem;
|
|
|
+@contact-edit-field-label-width: 4.1em;
|
|
|
+
|
|
|
+// ContactList
|
|
|
+@contact-list-edit-icon-size: 1.6rem;
|
|
|
+@contact-list-add-button-z-index: 999;
|
|
|
+@contact-list-item-padding: @padding-md;
|
|
|
+
|
|
|
+// CountDown
|
|
|
+@count-down-text-color: @text-color;
|
|
|
+@count-down-font-size: @font-size-md;
|
|
|
+@count-down-line-height: @line-height-md;
|
|
|
+
|
|
|
+// Coupon
|
|
|
+@coupon-margin: 0 @padding-sm @padding-sm;
|
|
|
+@coupon-content-height: 8.4rem;
|
|
|
+@coupon-content-padding: 1.4rem 0;
|
|
|
+@coupon-background-color: @white;
|
|
|
+@coupon-active-background-color: @active-color;
|
|
|
+@coupon-border-radius: @border-radius-lg;
|
|
|
+@coupon-box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
|
|
|
+@coupon-head-width: 9.6rem;
|
|
|
+@coupon-amount-color: @red;
|
|
|
+@coupon-amount-font-size: 3rem;
|
|
|
+@coupon-currency-font-size: 40%;
|
|
|
+@coupon-name-font-size: @font-size-md;
|
|
|
+@coupon-disabled-text-color: @gray-6;
|
|
|
+@coupon-description-padding: @padding-xs @padding-md;
|
|
|
+@coupon-description-border-color: @border-color;
|
|
|
+
|
|
|
+// CouponCell
|
|
|
+@coupon-cell-selected-text-color: @text-color;
|
|
|
+
|
|
|
+// CouponList
|
|
|
+@coupon-list-background-color: @background-color;
|
|
|
+@coupon-list-field-padding: 5px 0 5px @padding-md;
|
|
|
+@coupon-list-exchange-button-height: 3.2rem;
|
|
|
+@coupon-list-close-button-height: 4rem;
|
|
|
+@coupon-list-empty-image-size: 20rem;
|
|
|
+@coupon-list-empty-tip-color: @gray-6;
|
|
|
+@coupon-list-empty-tip-font-size: @font-size-md;
|
|
|
+@coupon-list-empty-tip-line-height: @line-height-md;
|
|
|
+
|
|
|
+// Dialog
|
|
|
+@dialog-width: 32rem;
|
|
|
+@dialog-small-screen-width: 90%;
|
|
|
+@dialog-font-size: @font-size-lg;
|
|
|
+@dialog-transition: @animation-duration-base;
|
|
|
+@dialog-border-radius: 1.6rem;
|
|
|
+@dialog-background-color: @white;
|
|
|
+@dialog-header-font-weight: @font-weight-bold;
|
|
|
+@dialog-header-line-height: 2.4rem;
|
|
|
+@dialog-header-padding-top: 2.6rem;
|
|
|
+@dialog-header-isolated-padding: @padding-lg 0;
|
|
|
+@dialog-message-padding: @padding-lg;
|
|
|
+@dialog-message-font-size: @font-size-md;
|
|
|
+@dialog-message-line-height: @line-height-md;
|
|
|
+@dialog-message-max-height: 60vh;
|
|
|
+@dialog-has-title-message-text-color: @gray-7;
|
|
|
+@dialog-has-title-message-padding-top: @padding-xs;
|
|
|
+@dialog-button-height: 4.8rem;
|
|
|
+@dialog-round-button-height: 3.6rem;
|
|
|
+@dialog-confirm-button-text-color: @red;
|
|
|
+
|
|
|
+// Divider
|
|
|
+@divider-margin: @padding-md 0;
|
|
|
+@divider-text-color: @gray-6;
|
|
|
+@divider-font-size: @font-size-md;
|
|
|
+@divider-line-height: 2.4rem;
|
|
|
+@divider-border-color: @border-color;
|
|
|
+@divider-content-padding: @padding-md;
|
|
|
+@divider-content-left-width: 10%;
|
|
|
+@divider-content-right-width: 10%;
|
|
|
+
|
|
|
+// DropdownMenu
|
|
|
+@dropdown-menu-height: 4.8rem;
|
|
|
+@dropdown-menu-background-color: @white;
|
|
|
+@dropdown-menu-box-shadow: 0 2px 12px fade(@gray-7, 12);
|
|
|
+@dropdown-menu-title-font-size: 1.5rem;
|
|
|
+@dropdown-menu-title-text-color: @text-color;
|
|
|
+@dropdown-menu-title-active-text-color: @red;
|
|
|
+@dropdown-menu-title-disabled-text-color: @gray-6;
|
|
|
+@dropdown-menu-title-padding: 0 @padding-xs;
|
|
|
+@dropdown-menu-title-line-height: @line-height-lg;
|
|
|
+@dropdown-menu-option-active-color: @red;
|
|
|
+@dropdown-menu-content-max-height: 80%;
|
|
|
+@dropdown-item-z-index: 10;
|
|
|
+
|
|
|
+// Empty
|
|
|
+@empty-padding: @padding-xl 0;
|
|
|
+@empty-image-size: 16rem;
|
|
|
+@empty-description-margin-top: @padding-md;
|
|
|
+@empty-description-padding: 0 6rem;
|
|
|
+@empty-description-color: @gray-6;
|
|
|
+@empty-description-font-size: @font-size-md;
|
|
|
+@empty-description-line-height: @line-height-md;
|
|
|
+@empty-bottom-margin-top: 2.4rem;
|
|
|
+
|
|
|
+// Field
|
|
|
+@field-label-width: 6.2em;
|
|
|
+@field-label-color: @gray-7;
|
|
|
+@field-label-margin-right: @padding-sm;
|
|
|
+@field-input-text-color: @text-color;
|
|
|
+@field-input-error-text-color: @red;
|
|
|
+@field-input-disabled-text-color: @gray-5;
|
|
|
+@field-placeholder-text-color: @gray-5;
|
|
|
+@field-icon-size: 1.6rem;
|
|
|
+@field-clear-icon-size: 1.6rem;
|
|
|
+@field-clear-icon-color: @gray-5;
|
|
|
+@field-right-icon-color: @gray-6;
|
|
|
+@field-error-message-color: @red;
|
|
|
+@field-error-message-font-size: 1.2rem;
|
|
|
+@field-text-area-min-height: 6rem;
|
|
|
+@field-word-limit-color: @gray-7;
|
|
|
+@field-word-limit-font-size: @font-size-sm;
|
|
|
+@field-word-limit-line-height: 1.6rem;
|
|
|
+@field-disabled-text-color: @gray-5;
|
|
|
+
|
|
|
+// GridItem
|
|
|
+@grid-item-content-padding: @padding-md @padding-xs;
|
|
|
+@grid-item-content-background-color: @white;
|
|
|
+@grid-item-content-active-color: @active-color;
|
|
|
+@grid-item-icon-size: 2.8rem;
|
|
|
+@grid-item-text-color: @gray-7;
|
|
|
+@grid-item-text-font-size: @font-size-sm;
|
|
|
+
|
|
|
+// GoodsAction
|
|
|
+@goods-action-background-color: @white;
|
|
|
+@goods-action-height: 5rem;
|
|
|
+@goods-action-icon-width: 4.8rem;
|
|
|
+@goods-action-icon-height: 100%;
|
|
|
+@goods-action-icon-color: @text-color;
|
|
|
+@goods-action-icon-size: 1.8rem;
|
|
|
+@goods-action-icon-font-size: @font-size-xs;
|
|
|
+@goods-action-icon-active-color: @active-color;
|
|
|
+@goods-action-icon-text-color: @gray-7;
|
|
|
+@goods-action-button-height: 4rem;
|
|
|
+@goods-action-button-warning-color: @gradient-orange;
|
|
|
+@goods-action-button-danger-color: @gradient-red;
|
|
|
+
|
|
|
+// IndexAnchor
|
|
|
+@index-anchor-z-index: 1;
|
|
|
+@index-anchor-padding: 0 @padding-md;
|
|
|
+@index-anchor-text-color: @text-color;
|
|
|
+@index-anchor-font-weight: @font-weight-bold;
|
|
|
+@index-anchor-font-size: @font-size-md;
|
|
|
+@index-anchor-line-height: 3.2rem;
|
|
|
+@index-anchor-background-color: transparent;
|
|
|
+@index-anchor-sticky-text-color: @red;
|
|
|
+@index-anchor-sticky-background-color: @white;
|
|
|
+
|
|
|
+// IndexBar
|
|
|
+@index-bar-sidebar-z-index: 2;
|
|
|
+@index-bar-index-font-size: @font-size-xs;
|
|
|
+@index-bar-index-line-height: @line-height-xs;
|
|
|
+@index-bar-index-active-color: @red;
|
|
|
+
|
|
|
+// Info
|
|
|
+@info-size: 1.6rem;
|
|
|
+@info-color: @white;
|
|
|
+@info-padding: 0 0.3rem;
|
|
|
+@info-font-size: @font-size-sm;
|
|
|
+@info-font-weight: @font-weight-bold;
|
|
|
+@info-border-width: @border-width-base;
|
|
|
+@info-background-color: @red;
|
|
|
+@info-dot-color: @red;
|
|
|
+@info-dot-size: 0.8rem;
|
|
|
+@info-font-family: -apple-system-font, Helvetica Neue, Arial, sans-serif;
|
|
|
+
|
|
|
+// Image
|
|
|
+@image-placeholder-text-color: @gray-6;
|
|
|
+@image-placeholder-font-size: @font-size-md;
|
|
|
+@image-placeholder-background-color: @background-color;
|
|
|
+@image-loading-icon-size: 3.2rem;
|
|
|
+@image-loading-icon-color: @gray-4;
|
|
|
+@image-error-icon-size: 3.2rem;
|
|
|
+@image-error-icon-color: @gray-4;
|
|
|
+
|
|
|
+// ImagePreview
|
|
|
+@image-preview-index-text-color: @white;
|
|
|
+@image-preview-index-font-size: @font-size-md;
|
|
|
+@image-preview-index-line-height: @line-height-md;
|
|
|
+@image-preview-index-text-shadow: 0 1px 1px @gray-8;
|
|
|
+@image-preview-overlay-background-color: rgba(0, 0, 0, 0.9);
|
|
|
+@image-preview-close-icon-size: 2.2rem;
|
|
|
+@image-preview-close-icon-color: @gray-5;
|
|
|
+@image-preview-close-icon-active-color: @gray-6;
|
|
|
+@image-preview-close-icon-margin: @padding-md;
|
|
|
+@image-preview-close-icon-z-index: 1;
|
|
|
+
|
|
|
+// List
|
|
|
+@list-text-color: @gray-6;
|
|
|
+@list-text-font-size: @font-size-md;
|
|
|
+@list-text-line-height: 5rem;
|
|
|
+
|
|
|
+// Loading
|
|
|
+@loading-text-color: @gray-6;
|
|
|
+@loading-text-font-size: @font-size-md;
|
|
|
+@loading-spinner-color: @gray-5;
|
|
|
+@loading-spinner-size: 3rem;
|
|
|
+@loading-spinner-animation-duration: 0.8s;
|
|
|
+
|
|
|
+// NavBar
|
|
|
+@nav-bar-height: 4.6rem;
|
|
|
+@nav-bar-background-color: @white;
|
|
|
+@nav-bar-arrow-size: 1.6rem;
|
|
|
+@nav-bar-icon-color: @primary-color;
|
|
|
+@nav-bar-text-color: @primary-color;
|
|
|
+@nav-bar-title-font-size: @font-size-lg;
|
|
|
+@nav-bar-title-text-color: @text-color;
|
|
|
+@nav-bar-z-index: 1;
|
|
|
+
|
|
|
+// NoticeBar
|
|
|
+@notice-bar-height: 4rem;
|
|
|
+@notice-bar-padding: 0 @padding-md;
|
|
|
+@notice-bar-wrapable-padding: @padding-xs @padding-md;
|
|
|
+@notice-bar-text-color: @orange-dark;
|
|
|
+@notice-bar-font-size: @font-size-md;
|
|
|
+@notice-bar-line-height: 2.4rem;
|
|
|
+@notice-bar-background-color: @orange-light;
|
|
|
+@notice-bar-icon-size: 1.6rem;
|
|
|
+@notice-bar-icon-min-width: 2.4rem;
|
|
|
+
|
|
|
+// Notify
|
|
|
+@notify-text-color: @white;
|
|
|
+@notify-padding: @padding-xs @padding-md;
|
|
|
+@notify-font-size: @font-size-md;
|
|
|
+@notify-line-height: @line-height-md;
|
|
|
+@notify-primary-background-color: @primary-color;
|
|
|
+@notify-success-background-color: @green;
|
|
|
+@notify-danger-background-color: @red;
|
|
|
+@notify-warning-background-color: @orange;
|
|
|
+
|
|
|
+// NumberKeyboard
|
|
|
+@number-keyboard-background-color: @gray-2;
|
|
|
+@number-keyboard-key-height: 4.8rem;
|
|
|
+@number-keyboard-key-font-size: 2.8rem;
|
|
|
+@number-keyboard-key-active-color: @gray-3;
|
|
|
+@number-keyboard-delete-font-size: @font-size-lg;
|
|
|
+@number-keyboard-title-color: @gray-7;
|
|
|
+@number-keyboard-title-height: 3.4rem;
|
|
|
+@number-keyboard-title-font-size: @font-size-lg;
|
|
|
+@number-keyboard-close-padding: 0 @padding-md;
|
|
|
+@number-keyboard-close-color: @text-link-color;
|
|
|
+@number-keyboard-close-font-size: @font-size-md;
|
|
|
+@number-keyboard-button-text-color: @white;
|
|
|
+@number-keyboard-button-background-color: @primary-color;
|
|
|
+@number-keyboard-cursor-color: @text-color;
|
|
|
+@number-keyboard-cursor-width: 1px;
|
|
|
+@number-keyboard-cursor-height: 40%;
|
|
|
+@number-keyboard-cursor-animation-duration: 1s;
|
|
|
+@number-keyboard-z-index: 100;
|
|
|
+
|
|
|
+// Overlay
|
|
|
+@overlay-z-index: 1;
|
|
|
+@overlay-background-color: rgba(0, 0, 0, 0.7);
|
|
|
+
|
|
|
+// Pagination
|
|
|
+@pagination-height: 4rem;
|
|
|
+@pagination-font-size: @font-size-md;
|
|
|
+@pagination-item-width: 3.6rem;
|
|
|
+@pagination-item-default-color: @primary-color;
|
|
|
+@pagination-item-disabled-color: @gray-7;
|
|
|
+@pagination-item-disabled-background-color: @background-color;
|
|
|
+@pagination-background-color: @white;
|
|
|
+@pagination-desc-color: @gray-7;
|
|
|
+@pagination-disabled-opacity: @disabled-opacity;
|
|
|
+
|
|
|
+// Panel
|
|
|
+@panel-background-color: @white;
|
|
|
+@panel-header-value-color: @red;
|
|
|
+@panel-footer-padding: @padding-xs @padding-md;
|
|
|
+
|
|
|
+// PasswordInput
|
|
|
+@password-input-height: 5rem;
|
|
|
+@password-input-margin: 0 @padding-md;
|
|
|
+@password-input-font-size: 2rem;
|
|
|
+@password-input-border-radius: .6rem;
|
|
|
+@password-input-background-color: @white;
|
|
|
+@password-input-info-color: @gray-6;
|
|
|
+@password-input-info-font-size: @font-size-md;
|
|
|
+@password-input-error-info-color: @red;
|
|
|
+@password-input-dot-size: 1rem;
|
|
|
+@password-input-dot-color: @black;
|
|
|
+
|
|
|
+// Picker
|
|
|
+@picker-background-color: @white;
|
|
|
+@picker-toolbar-height: 4.4rem;
|
|
|
+@picker-title-font-size: @font-size-lg;
|
|
|
+@picker-title-line-height: @line-height-md;
|
|
|
+@picker-action-padding: 0 @padding-md;
|
|
|
+@picker-action-font-size: @font-size-md;
|
|
|
+@picker-confirm-action-color: @text-link-color;
|
|
|
+@picker-cancel-action-color: @gray-6;
|
|
|
+@picker-option-font-size: @font-size-lg;
|
|
|
+@picker-option-text-color: @black;
|
|
|
+@picker-option-disabled-opacity: 0.3;
|
|
|
+@picker-loading-icon-color: @primary-color;
|
|
|
+@picker-loading-mask-color: rgba(255, 255, 255, 0.9);
|
|
|
+
|
|
|
+// Popover
|
|
|
+@popover-arrow-size: 0.6rem;
|
|
|
+@popover-border-radius: @border-radius-lg;
|
|
|
+@popover-action-width: 12.8rem;
|
|
|
+@popover-action-height: 4.4rem;
|
|
|
+@popover-action-font-size: @font-size-md;
|
|
|
+@popover-action-line-height: @line-height-md;
|
|
|
+@popover-action-icon-size: 2rem;
|
|
|
+@popover-light-text-color: @text-color;
|
|
|
+@popover-light-background-color: @white;
|
|
|
+@popover-light-action-disabled-text-color: @gray-5;
|
|
|
+@popover-dark-text-color: @white;
|
|
|
+@popover-dark-background-color: #4a4a4a;
|
|
|
+@popover-dark-action-disabled-text-color: @gray-6;
|
|
|
+
|
|
|
+// Popup
|
|
|
+@popup-background-color: @white;
|
|
|
+@popup-transition: transform @animation-duration-base;
|
|
|
+@popup-round-border-radius: 1.6rem;
|
|
|
+@popup-close-icon-size: 2.2rem;
|
|
|
+@popup-close-icon-color: @gray-5;
|
|
|
+@popup-close-icon-active-color: @gray-6;
|
|
|
+@popup-close-icon-margin: 1.6rem;
|
|
|
+@popup-close-icon-z-index: 1;
|
|
|
+
|
|
|
+// Progress
|
|
|
+@progress-height: .4rem;
|
|
|
+@progress-color: @primary-color;
|
|
|
+@progress-background-color: @gray-3;
|
|
|
+@progress-pivot-padding: 0 .5rem;
|
|
|
+@progress-pivot-text-color: @white;
|
|
|
+@progress-pivot-font-size: @font-size-xs;
|
|
|
+@progress-pivot-line-height: 1.6;
|
|
|
+@progress-pivot-background-color: @primary-color;
|
|
|
+
|
|
|
+// PullRefresh
|
|
|
+@pull-refresh-head-height: 5rem;
|
|
|
+@pull-refresh-head-font-size: @font-size-md;
|
|
|
+@pull-refresh-head-text-color: @gray-6;
|
|
|
+
|
|
|
+// Radio
|
|
|
+@radio-size: 2rem;
|
|
|
+@radio-border-color: @gray-5;
|
|
|
+@radio-transition-duration: @animation-duration-fast;
|
|
|
+@radio-label-margin: @padding-xs;
|
|
|
+@radio-label-color: @text-color;
|
|
|
+@radio-checked-icon-color: @primary-color;
|
|
|
+@radio-disabled-icon-color: @gray-5;
|
|
|
+@radio-disabled-label-color: @gray-5;
|
|
|
+@radio-disabled-background-color: @border-color;
|
|
|
+
|
|
|
+// Rate
|
|
|
+@rate-icon-size: 2rem;
|
|
|
+@rate-icon-gutter: @padding-base;
|
|
|
+@rate-icon-void-color: @gray-5;
|
|
|
+@rate-icon-full-color: @red;
|
|
|
+@rate-icon-disabled-color: @gray-5;
|
|
|
+
|
|
|
+// ShareSheet
|
|
|
+@share-sheet-header-padding: @padding-sm @padding-md @padding-base;
|
|
|
+@share-sheet-title-color: @text-color;
|
|
|
+@share-sheet-title-font-size: @font-size-md;
|
|
|
+@share-sheet-title-line-height: @line-height-md;
|
|
|
+@share-sheet-description-color: @gray-6;
|
|
|
+@share-sheet-description-font-size: @font-size-sm;
|
|
|
+@share-sheet-description-line-height: 1.6rem;
|
|
|
+@share-sheet-icon-size: 4.8rem;
|
|
|
+@share-sheet-option-name-color: @gray-7;
|
|
|
+@share-sheet-option-name-font-size: @font-size-sm;
|
|
|
+@share-sheet-option-description-color: @gray-5;
|
|
|
+@share-sheet-option-description-font-size: @font-size-sm;
|
|
|
+@share-sheet-cancel-button-font-size: @font-size-lg;
|
|
|
+@share-sheet-cancel-button-height: 4.8rem;
|
|
|
+@share-sheet-cancel-button-background: @white;
|
|
|
+
|
|
|
+// Search
|
|
|
+@search-padding: 1rem @padding-sm;
|
|
|
+@search-background-color: @white;
|
|
|
+@search-content-background-color: @gray-9;
|
|
|
+@search-input-height: 3.6rem;
|
|
|
+@search-label-padding: 0 .5rem;
|
|
|
+@search-label-color: @text-color;
|
|
|
+@search-label-font-size: @font-size-md;
|
|
|
+@search-left-icon-color: @gray-6;
|
|
|
+@search-action-padding: 0 @padding-xs;
|
|
|
+@search-action-text-color: @text-color;
|
|
|
+@search-action-font-size: @font-size-md;
|
|
|
+
|
|
|
+// Sidebar
|
|
|
+@sidebar-width: 8rem;
|
|
|
+@sidebar-font-size: @font-size-md;
|
|
|
+@sidebar-line-height: @line-height-md;
|
|
|
+@sidebar-text-color: @text-color;
|
|
|
+@sidebar-disabled-text-color: @gray-5;
|
|
|
+@sidebar-padding: 2rem @padding-sm;
|
|
|
+@sidebar-active-color: @active-color;
|
|
|
+@sidebar-background-color: @background-color;
|
|
|
+@sidebar-selected-font-weight: @font-weight-bold;
|
|
|
+@sidebar-selected-text-color: @text-color;
|
|
|
+@sidebar-selected-border-width: .4rem;
|
|
|
+@sidebar-selected-border-height: 1.6rem;
|
|
|
+@sidebar-selected-border-color: @red;
|
|
|
+@sidebar-selected-background-color: @white;
|
|
|
+
|
|
|
+// Skeleton
|
|
|
+@skeleton-row-height: 1.6rem;
|
|
|
+@skeleton-row-background-color: @active-color;
|
|
|
+@skeleton-row-margin-top: @padding-sm;
|
|
|
+@skeleton-title-width: 40%;
|
|
|
+@skeleton-avatar-size: 3.2rem;
|
|
|
+@skeleton-avatar-background-color: @active-color;
|
|
|
+@skeleton-animation-duration: 1.2s;
|
|
|
+
|
|
|
+// Slider
|
|
|
+@slider-active-background-color: @primary-color;
|
|
|
+@slider-inactive-background-color: @gray-3;
|
|
|
+@slider-disabled-opacity: @disabled-opacity;
|
|
|
+@slider-bar-height: .2rem;
|
|
|
+@slider-button-width: 2.4rem;
|
|
|
+@slider-button-height: 2.4rem;
|
|
|
+@slider-button-border-radius: 50%;
|
|
|
+@slider-button-background-color: @white;
|
|
|
+@slider-button-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
|
|
|
+
|
|
|
+// Step
|
|
|
+@step-text-color: @gray-6;
|
|
|
+@step-active-color: @green;
|
|
|
+@step-process-text-color: @text-color;
|
|
|
+@step-font-size: @font-size-md;
|
|
|
+@step-line-color: @border-color;
|
|
|
+@step-finish-line-color: @green;
|
|
|
+@step-finish-text-color: @text-color;
|
|
|
+@step-icon-size: 1.2rem;
|
|
|
+@step-circle-size: 0.5rem;
|
|
|
+@step-circle-color: @gray-6;
|
|
|
+@step-horizontal-title-font-size: @font-size-sm;
|
|
|
+
|
|
|
+// Steps
|
|
|
+@steps-background-color: @white;
|
|
|
+
|
|
|
+// Sticky
|
|
|
+@sticky-z-index: 99;
|
|
|
+
|
|
|
+// Stepper
|
|
|
+@stepper-active-color: #e8e8e8;
|
|
|
+@stepper-background-color: @active-color;
|
|
|
+@stepper-button-icon-color: @text-color;
|
|
|
+@stepper-button-disabled-color: @background-color;
|
|
|
+@stepper-button-disabled-icon-color: @gray-5;
|
|
|
+@stepper-button-round-theme-color: @red;
|
|
|
+@stepper-input-width: 3.2rem;
|
|
|
+@stepper-input-height: 2.8rem;
|
|
|
+@stepper-input-font-size: @font-size-md;
|
|
|
+@stepper-input-line-height: normal;
|
|
|
+@stepper-input-text-color: @text-color;
|
|
|
+@stepper-input-disabled-text-color: @gray-5;
|
|
|
+@stepper-input-disabled-background-color: @active-color;
|
|
|
+@stepper-border-radius: @border-radius-md;
|
|
|
+
|
|
|
+// SubmitBar
|
|
|
+@submit-bar-height: 5rem;
|
|
|
+@submit-bar-z-index: 100;
|
|
|
+@submit-bar-background-color: @white;
|
|
|
+@submit-bar-button-width: 11rem;
|
|
|
+@submit-bar-price-color: @red;
|
|
|
+@submit-bar-price-font-size: @font-size-md;
|
|
|
+@submit-bar-currency-font-size: @font-size-md;
|
|
|
+@submit-bar-text-color: @text-color;
|
|
|
+@submit-bar-text-font-size: @font-size-md;
|
|
|
+@submit-bar-tip-padding: @padding-xs @padding-sm;
|
|
|
+@submit-bar-tip-font-size: @font-size-sm;
|
|
|
+@submit-bar-tip-line-height: 1.5;
|
|
|
+@submit-bar-tip-color: #f56723;
|
|
|
+@submit-bar-tip-background-color: #fff7cc;
|
|
|
+@submit-bar-tip-icon-size: 1.2rem;
|
|
|
+@submit-bar-button-height: 4rem;
|
|
|
+@submit-bar-padding: 0 @padding-md;
|
|
|
+@submit-bar-price-integer-font-size: 2rem;
|
|
|
+@submit-bar-price-font-family: @price-integer-font-family;
|
|
|
+
|
|
|
+// Swipe
|
|
|
+@swipe-indicator-size: .6rem;
|
|
|
+@swipe-indicator-margin: @padding-sm;
|
|
|
+@swipe-indicator-active-opacity: 1;
|
|
|
+@swipe-indicator-inactive-opacity: 0.3;
|
|
|
+@swipe-indicator-active-background-color: @primary-color;
|
|
|
+@swipe-indicator-inactive-background-color: @border-color;
|
|
|
+
|
|
|
+// Switch
|
|
|
+@switch-size: 3rem;
|
|
|
+@switch-width: 2em;
|
|
|
+@switch-height: 1em;
|
|
|
+@switch-node-size: 1em;
|
|
|
+@switch-node-background-color: @white;
|
|
|
+@switch-node-box-shadow: 0 3px 1px 0 rgba(0, 0, 0, 0.05),
|
|
|
+ 0 2px 2px 0 rgba(0, 0, 0, 0.1), 0 3px 3px 0 rgba(0, 0, 0, 0.05);
|
|
|
+@switch-background-color: @white;
|
|
|
+@switch-on-background-color: @primary-color;
|
|
|
+@switch-transition-duration: @animation-duration-base;
|
|
|
+@switch-disabled-opacity: @disabled-opacity;
|
|
|
+@switch-border: @border-width-base solid rgba(0, 0, 0, 0.1);
|
|
|
+
|
|
|
+// SwitchCell
|
|
|
+@switch-cell-padding-top: @cell-vertical-padding - 1px;
|
|
|
+@switch-cell-padding-bottom: @cell-vertical-padding - 1px;
|
|
|
+@switch-cell-large-padding-top: @cell-large-vertical-padding - 1px;
|
|
|
+@switch-cell-large-padding-bottom: @cell-large-vertical-padding - 1px;
|
|
|
+
|
|
|
+// Tabbar
|
|
|
+// @tabbar-height: 5rem;
|
|
|
+@tabbar-height: 6.6rem;
|
|
|
+@tabbar-z-index: 1;
|
|
|
+@tabbar-background-color: @white;
|
|
|
+
|
|
|
+// TabbarItem
|
|
|
+@tabbar-item-font-size: @font-size-sm;
|
|
|
+@tabbar-item-text-color: @gray-7;
|
|
|
+@tabbar-item-active-color: @primary-color;
|
|
|
+@tabbar-item-active-background-color: @tabbar-background-color;
|
|
|
+@tabbar-item-line-height: 1;
|
|
|
+@tabbar-item-icon-size: 2.2rem;
|
|
|
+@tabbar-item-margin-bottom: .4rem;
|
|
|
+
|
|
|
+// Tab
|
|
|
+@tab-text-color: @gray-7;
|
|
|
+@tab-active-text-color: @text-color;
|
|
|
+@tab-disabled-text-color: @gray-5;
|
|
|
+@tab-font-size: @font-size-md;
|
|
|
+@tab-line-height: @line-height-md;
|
|
|
+
|
|
|
+// Tabs
|
|
|
+@tabs-default-color: @red;
|
|
|
+@tabs-line-height: 4.4rem;
|
|
|
+@tabs-card-height: 3rem;
|
|
|
+@tabs-nav-background-color: @white;
|
|
|
+@tabs-bottom-bar-width: 4rem;
|
|
|
+@tabs-bottom-bar-height: .3rem;
|
|
|
+@tabs-bottom-bar-color: @tabs-default-color;
|
|
|
+
|
|
|
+// Tag
|
|
|
+@tag-padding: 0 @padding-base;
|
|
|
+@tag-text-color: @white;
|
|
|
+@tag-font-size: @font-size-sm;
|
|
|
+@tag-border-radius: .2rem;
|
|
|
+@tag-line-height: 1.6rem;
|
|
|
+@tag-medium-padding: .2rem .6rem;
|
|
|
+@tag-large-padding: @padding-base @padding-xs;
|
|
|
+@tag-large-border-radius: @border-radius-md;
|
|
|
+@tag-large-font-size: @font-size-md;
|
|
|
+@tag-round-border-radius: @border-radius-max;
|
|
|
+@tag-danger-color: @red;
|
|
|
+@tag-primary-color: @primary-color;
|
|
|
+@tag-success-color: @green;
|
|
|
+@tag-warning-color: @orange;
|
|
|
+@tag-default-color: @gray-6;
|
|
|
+@tag-plain-background-color: @white;
|
|
|
+
|
|
|
+// Toast
|
|
|
+@toast-max-width: 70%;
|
|
|
+@toast-font-size: @font-size-md;
|
|
|
+@toast-text-color: @white;
|
|
|
+@toast-loading-icon-color: @white;
|
|
|
+@toast-line-height: @line-height-md;
|
|
|
+@toast-border-radius: @border-radius-lg;
|
|
|
+@toast-background-color: fade(@black, 70%);
|
|
|
+@toast-icon-size: 3.6rem;
|
|
|
+@toast-text-min-width: 9.6rem;
|
|
|
+@toast-text-padding: @padding-xs @padding-sm;
|
|
|
+@toast-default-padding: @padding-md;
|
|
|
+@toast-default-width: 8.8rem;
|
|
|
+@toast-default-min-height: 8.8rem;
|
|
|
+@toast-position-top-distance: 20%;
|
|
|
+@toast-position-bottom-distance: 20%;
|
|
|
+
|
|
|
+// TreeSelect
|
|
|
+@tree-select-font-size: @font-size-md;
|
|
|
+@tree-select-nav-background-color: @background-color;
|
|
|
+@tree-select-content-background-color: @white;
|
|
|
+@tree-select-nav-item-padding: 1.4rem @padding-sm;
|
|
|
+@tree-select-item-height: 4.8rem;
|
|
|
+@tree-select-item-active-color: @red;
|
|
|
+@tree-select-item-disabled-color: @gray-5;
|
|
|
+@tree-select-item-selected-size: 1.6rem;
|
|
|
+
|
|
|
+// Uploader
|
|
|
+@uploader-size: 8rem;
|
|
|
+@uploader-icon-size: 2.4rem;
|
|
|
+@uploader-icon-color: @gray-4;
|
|
|
+@uploader-text-color: @gray-6;
|
|
|
+@uploader-text-font-size: @font-size-sm;
|
|
|
+@uploader-upload-background-color: @gray-1;
|
|
|
+@uploader-upload-active-color: @active-color;
|
|
|
+@uploader-delete-color: @white;
|
|
|
+@uploader-delete-icon-size: 1.4rem;
|
|
|
+@uploader-delete-background-color: rgba(0, 0, 0, 0.7);
|
|
|
+@uploader-file-background-color: @background-color;
|
|
|
+@uploader-file-icon-size: 2rem;
|
|
|
+@uploader-file-icon-color: @gray-7;
|
|
|
+@uploader-file-name-padding: 0 @padding-base;
|
|
|
+@uploader-file-name-margin-top: @padding-xs;
|
|
|
+@uploader-file-name-font-size: @font-size-sm;
|
|
|
+@uploader-file-name-text-color: @gray-7;
|
|
|
+@uploader-mask-background-color: fade(@gray-8, 88%);
|
|
|
+@uploader-mask-icon-size: 2.2rem;
|
|
|
+@uploader-mask-message-font-size: @font-size-sm;
|
|
|
+@uploader-mask-message-line-height: @line-height-xs;
|
|
|
+@uploader-loading-icon-size: 2.2rem;
|
|
|
+@uploader-loading-icon-color: @white;
|
|
|
+@uploader-disabled-opacity: @disabled-opacity;
|
|
|
+
|
|
|
+// Sku
|
|
|
+@sku-item-background-color: @background-color;
|
|
|
+@sku-icon-gray-color: @gray-4;
|
|
|
+@sku-upload-mask-color: rgba(50, 50, 51, 0.8);
|
|
|
+
|
|
|
+.van-search__content {
|
|
|
+ height: 3.6rem;
|
|
|
+}
|
|
|
+.van-field__left-icon {
|
|
|
+ color: @primary-color;
|
|
|
+}
|