@tplc/wot 1.0.12 → 1.0.14
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 +4 -0
- package/components/common/abstracts/variable.scss +682 -183
- package/components/wd-calendar/index.scss +145 -58
- package/components/wd-calendar/types.ts +41 -23
- package/components/wd-calendar/wd-calendar.vue +130 -123
- package/components/wd-calendar-view/month/index.scss +65 -33
- package/components/wd-calendar-view/month/month.vue +113 -80
- package/components/wd-calendar-view/month/types.ts +1 -2
- package/components/wd-calendar-view/monthPanel/index.scss +15 -15
- package/components/wd-calendar-view/monthPanel/month-panel.vue +78 -64
- package/components/wd-calendar-view/monthPanel/types.ts +10 -58
- package/components/wd-calendar-view/types.ts +36 -12
- package/components/wd-calendar-view/utils.ts +36 -14
- package/components/wd-calendar-view/wd-calendar-view.vue +7 -7
- package/components/wd-calendar-view/year/index.scss +13 -18
- package/components/wd-calendar-view/year/types.ts +1 -2
- package/components/wd-calendar-view/year/year.vue +43 -25
- package/components/wd-calendar-view/yearPanel/index.scss +4 -4
- package/components/wd-calendar-view/yearPanel/types.ts +2 -2
- package/components/wd-calendar-view/yearPanel/year-panel.vue +41 -36
- package/components/wd-checkbox/index.scss +9 -9
- package/components/wd-checkbox/wd-checkbox.vue +19 -10
- package/components/wd-datetime-picker/types.ts +22 -6
- package/components/wd-datetime-picker/wd-datetime-picker.vue +136 -55
- package/components/wd-drop-menu/index.scss +45 -17
- package/components/wd-drop-menu/types.ts +3 -3
- package/components/wd-drop-menu/wd-drop-menu.vue +25 -61
- package/components/wd-drop-menu-item/index.scss +15 -15
- package/components/wd-drop-menu-item/types.ts +15 -18
- package/components/wd-drop-menu-item/wd-drop-menu-item.vue +54 -33
- package/components/wd-picker/wd-picker.vue +29 -18
- package/components/wd-radio/index.scss +9 -9
- package/package.json +1 -1
- package/types/components/common/dayjs.d.ts +26 -0
- package/types/components/wd-calendar/types.d.ts +18 -24
- package/types/components/wd-calendar/wd-calendar.vue.d.ts +24 -40
- package/types/components/wd-calendar-view/month/month.vue.d.ts +3 -11
- package/types/components/wd-calendar-view/month/types.d.ts +0 -4
- package/types/components/wd-calendar-view/monthPanel/month-panel.vue.d.ts +12 -18
- package/types/components/wd-calendar-view/monthPanel/types.d.ts +6 -48
- package/types/components/wd-calendar-view/types.d.ts +4 -11
- package/types/components/wd-calendar-view/utils.d.ts +12 -3
- package/types/components/wd-calendar-view/year/types.d.ts +0 -4
- package/types/components/wd-calendar-view/year/year.vue.d.ts +3 -11
- package/types/components/wd-cell/wd-cell.vue.d.ts +5 -5
- package/types/components/wd-col-picker/wd-col-picker.vue.d.ts +9 -9
- package/types/components/wd-datetime-picker/wd-datetime-picker.vue.d.ts +10 -10
- package/types/components/wd-datetime-picker-view/wd-datetime-picker-view.vue.d.ts +1 -1
- package/types/components/wd-drop-menu/types.d.ts +3 -3
- package/types/components/wd-drop-menu/wd-drop-menu.vue.d.ts +5 -5
- package/types/components/wd-drop-menu-item/types.d.ts +15 -27
- package/types/components/wd-drop-menu-item/wd-drop-menu-item.vue.d.ts +35 -46
- package/types/components/wd-floating-panel/wd-floating-panel.vue.d.ts +1 -1
- package/types/components/wd-form/wd-form.vue.d.ts +1 -1
- package/types/components/wd-form-item/wd-form-item.vue.d.ts +1 -1
- package/types/components/wd-grid-item/wd-grid-item.vue.d.ts +1 -1
- package/types/components/wd-input/wd-input.vue.d.ts +4 -4
- package/types/components/wd-keyboard/wd-keyboard.vue.d.ts +1 -1
- package/types/components/wd-notify/wd-notify.vue.d.ts +1 -1
- package/types/components/wd-number-keyboard/wd-number-keyboard.vue.d.ts +1 -1
- package/types/components/wd-picker/wd-picker.vue.d.ts +12 -12
- package/types/components/wd-picker-view/wd-picker-view.vue.d.ts +2 -2
- package/types/components/wd-select-picker/wd-select-picker.vue.d.ts +12 -12
- package/types/components/wd-signature/wd-signature.vue.d.ts +2 -2
- package/types/components/wd-steps/wd-steps.vue.d.ts +1 -1
- package/types/components/wd-swiper/wd-swiper.vue.d.ts +1 -1
- package/types/components/wd-tabs/wd-tabs.vue.d.ts +1 -1
- package/types/components/wd-textarea/wd-textarea.vue.d.ts +3 -3
|
@@ -41,7 +41,10 @@ $-font-white-4: var(--wot-font-white-4, rgba(255, 255, 255, 0.22));
|
|
|
41
41
|
$-color-title: var(--wot-color-title, $-color-black) !default; // 模块标题/重要正文 000
|
|
42
42
|
$-color-content: var(--wot-color-content, #262626) !default; // 普通正文 262626
|
|
43
43
|
$-color-secondary: var(--wot-color-secondary, #595959) !default; // 次要信息,注释/补充/正文 595959
|
|
44
|
-
$-color-aid: var(
|
|
44
|
+
$-color-aid: var(
|
|
45
|
+
--wot-color-aid,
|
|
46
|
+
#8c8c8c
|
|
47
|
+
) !default; // 辅助文字字号,弱化信息,引导性/不可点文字 8c8c8c
|
|
45
48
|
$-color-tip: var(--wot-color-tip, #bfbfbf) !default; // 失效、默认提示文字 bfbfbf
|
|
46
49
|
$-color-border: var(--wot-color-border, #d9d9d9) !default; // 控件边框线 d9d9d9
|
|
47
50
|
$-color-border-light: var(--wot-color-border-light, #e8e8e8) !default; // 分割线颜色 e8e8e8
|
|
@@ -74,7 +77,7 @@ $-color-icon-disabled: var(--wot-color-icon-disabled, #a7a7a7) !default; // icon
|
|
|
74
77
|
$-fs-big: var(--wot-fs-big, 24px) !default; // 大型标题
|
|
75
78
|
$-fs-important: var(--wot-fs-important, 19px) !default; // 重要数据
|
|
76
79
|
$-fs-title: var(--wot-fs-title, 16px) !default; // 标题字号/重要正文字号
|
|
77
|
-
$-fs-content: var(--wot-fs-content,
|
|
80
|
+
$-fs-content: var(--wot-fs-content, 12px) !default; // 普通正文
|
|
78
81
|
$-fs-secondary: var(--wot-fs-secondary, 12px) !default; // 次要信息,注释/补充/正文
|
|
79
82
|
$-fs-aid: var(--wot-fs-aid, 10px) !default; // 辅助文字字号,弱化信息,引导性/不可点文字
|
|
80
83
|
|
|
@@ -97,24 +100,63 @@ $-action-sheet-loading-size: var(--wot-action-sheet-loading-size, 20px) !default
|
|
|
97
100
|
$-action-sheet-action-height: var(--wot-action-sheet-action-height, 48px) !default; // 单条菜单高度
|
|
98
101
|
$-action-sheet-color: var(--wot-action-sheet-color, rgba(0, 0, 0, 0.85)) !default; // 选项名称颜色
|
|
99
102
|
$-action-sheet-fs: var(--wot-action-sheet-fs, $-fs-title) !default; // 选项名称字号
|
|
100
|
-
$-action-sheet-active-color: var(
|
|
101
|
-
|
|
102
|
-
$-
|
|
103
|
-
|
|
104
|
-
$-action-sheet-
|
|
103
|
+
$-action-sheet-active-color: var(
|
|
104
|
+
--wot-action-sheet-active-color,
|
|
105
|
+
$-color-bg
|
|
106
|
+
) !default; // 点击高亮颜色
|
|
107
|
+
$-action-sheet-subname-fs: var(
|
|
108
|
+
--wot-action-sheet-subname-fs,
|
|
109
|
+
$-fs-secondary
|
|
110
|
+
) !default; // 描述信息字号
|
|
111
|
+
$-action-sheet-subname-color: var(
|
|
112
|
+
--wot-action-sheet-subname-color,
|
|
113
|
+
rgba(0, 0, 0, 0.45)
|
|
114
|
+
) !default; // 描述信息颜色
|
|
115
|
+
$-action-sheet-disabled-color: var(
|
|
116
|
+
--wot-action-sheet-disabled-color,
|
|
117
|
+
rgba(0, 0, 0, 0.25)
|
|
118
|
+
) !default; // 禁用颜色
|
|
119
|
+
$-action-sheet-bg: var(
|
|
120
|
+
--wot-action-sheet-bg,
|
|
121
|
+
$-color-white
|
|
122
|
+
) !default; // 菜单容器颜色(取消按钮上方的颜色)
|
|
105
123
|
$-action-sheet-title-height: var(--wot-action-sheet-title-height, 64px) !default; // 标题高度
|
|
106
124
|
$-action-sheet-title-fs: var(--wot-action-sheet-title-fs, $-fs-title) !default; // 标题字号
|
|
107
125
|
$-action-sheet-close-fs: var(--wot-action-sheet-close-fs, $-fs-title) !default; // 关闭按钮大小
|
|
108
|
-
$-action-sheet-close-color: var(
|
|
109
|
-
|
|
110
|
-
|
|
126
|
+
$-action-sheet-close-color: var(
|
|
127
|
+
--wot-action-sheet-close-color,
|
|
128
|
+
rgba(0, 0, 0, 0.65)
|
|
129
|
+
) !default; // 关闭按钮颜色
|
|
130
|
+
$-action-sheet-close-top: var(
|
|
131
|
+
--wot-action-sheet-close-top,
|
|
132
|
+
25px
|
|
133
|
+
) !default; // 关闭按钮距离标题顶部距离
|
|
134
|
+
$-action-sheet-close-right: var(
|
|
135
|
+
--wot-action-sheet-close-right,
|
|
136
|
+
15px
|
|
137
|
+
) !default; // 关闭按钮距离标题右侧距离
|
|
111
138
|
$-action-sheet-cancel-color: var(--wot-action-sheet-cancel-color, #131415) !default; // 取消按钮颜色
|
|
112
139
|
$-action-sheet-cancel-height: var(--wot-action-sheet-cancel-height, 44px) !default; // 取消按钮高度
|
|
113
|
-
$-action-sheet-cancel-bg: var(
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
$-action-sheet-
|
|
140
|
+
$-action-sheet-cancel-bg: var(
|
|
141
|
+
--wot-action-sheet-cancel-bg,
|
|
142
|
+
rgba(240, 240, 240, 1)
|
|
143
|
+
) !default; // 取消按钮背景色
|
|
144
|
+
$-action-sheet-cancel-radius: var(
|
|
145
|
+
--wot-action-sheet-cancel-radius,
|
|
146
|
+
22px
|
|
147
|
+
) !default; // 取消按钮圆角大小
|
|
148
|
+
$-action-sheet-panel-padding: var(
|
|
149
|
+
--wot-action-sheet-panel-padding,
|
|
150
|
+
12px 0 11px
|
|
151
|
+
) !default; // 自定义面板内边距大小
|
|
152
|
+
$-action-sheet-panel-img-fs: var(
|
|
153
|
+
--wot-action-sheet-panel-img-fs,
|
|
154
|
+
40px
|
|
155
|
+
) !default; // 自定义面板图片大小
|
|
156
|
+
$-action-sheet-panel-img-radius: var(
|
|
157
|
+
--wot-action-sheet-panel-img-radius,
|
|
158
|
+
4px
|
|
159
|
+
) !default; // 自定义面板图片圆角大小
|
|
118
160
|
|
|
119
161
|
/* badge */
|
|
120
162
|
$-badge-bg: var(--wot-badge-bg, $-color-danger) !default; // 背景填充颜色
|
|
@@ -142,33 +184,69 @@ $-button-medium-padding: var(--wot-button-medium-padding, 0 16px) !default; //
|
|
|
142
184
|
$-button-medium-fs: var(--wot-button-medium-fs, $-fs-content) !default; // 中型按钮字号
|
|
143
185
|
$-button-medium-radius: var(--wot-button-medium-radius, 4px) !default; // 中型按钮圆角大小
|
|
144
186
|
$-button-medium-loading: var(--wot-button-medium-loading, 18px) !default; // 中型按钮loading图标大小
|
|
145
|
-
$-button-medium-box-shadow-size: var(
|
|
187
|
+
$-button-medium-box-shadow-size: var(
|
|
188
|
+
--wot-button-medium-box-shadow-size,
|
|
189
|
+
0px 2px 4px 0px
|
|
190
|
+
) !default; // 中尺寸阴影尺寸
|
|
146
191
|
$-button-large-height: var(--wot-button-large-height, 44px) !default; // 大型按钮高度
|
|
147
192
|
$-button-large-padding: var(--wot-button-large-padding, 0 36px) !default; // 大型按钮padding
|
|
148
193
|
$-button-large-fs: var(--wot-button-large-fs, $-fs-title) !default; // 大型按钮字号
|
|
149
194
|
$-button-large-radius: var(--wot-button-large-radius, 8px) !default; // 大型按钮圆角大小
|
|
150
195
|
$-button-large-loading: var(--wot-button-large-loading, 24px) !default; // 大小按钮loading图标大小
|
|
151
|
-
$-button-large-box-shadow-size: var(
|
|
196
|
+
$-button-large-box-shadow-size: var(
|
|
197
|
+
--wot-button-large-box-shadow-size,
|
|
198
|
+
0px 4px 8px 0px
|
|
199
|
+
) !default; // 大尺寸阴影尺寸
|
|
152
200
|
$-button-icon-fs: var(--wot-button-icon-fs, 18px) !default; // 带图标的按钮的图标大小
|
|
153
201
|
$-button-icon-size: var(--wot-button-icon-size, 40px) !default; // icon 类型按钮尺寸
|
|
154
|
-
$-button-icon-color: var(
|
|
155
|
-
|
|
202
|
+
$-button-icon-color: var(
|
|
203
|
+
--wot-button-icon-color,
|
|
204
|
+
rgba(0, 0, 0, 0.65)
|
|
205
|
+
) !default; // icon 类型按钮颜色
|
|
206
|
+
$-button-icon-disabled-color: var(
|
|
207
|
+
--wot-button-icon-disabled-color,
|
|
208
|
+
$-color-icon-disabled
|
|
209
|
+
) !default; // icon 类型按钮禁用颜色
|
|
156
210
|
$-button-normal-color: var(--wot-button-normal-color, $-color-title) !default; // 文字颜色
|
|
157
|
-
$-button-normal-disabled-color: var(
|
|
211
|
+
$-button-normal-disabled-color: var(
|
|
212
|
+
--wot-button-normal-disabled-color,
|
|
213
|
+
rgba(0, 0, 0, 0.25)
|
|
214
|
+
) !default; // 默认按钮禁用文字色
|
|
158
215
|
$-button-plain-bg-color: var(--wot-button-plain-bg-color, $-color-white) !default; // 幽灵按钮背景色
|
|
159
216
|
$-button-primary-color: var(--wot-button-primary-color, $-color-white) !default; // 主要按钮颜色
|
|
160
|
-
$-button-primary-bg-color: var(
|
|
217
|
+
$-button-primary-bg-color: var(
|
|
218
|
+
--wot-button-primary-bg-color,
|
|
219
|
+
$-color-theme
|
|
220
|
+
) !default; // 主要按钮背景颜色
|
|
161
221
|
$-button-success-color: var(--wot-button-success-color, $-color-white) !default; // 成功按钮文字颜色
|
|
162
|
-
$-button-success-bg-color: var(
|
|
222
|
+
$-button-success-bg-color: var(
|
|
223
|
+
--wot-button-success-bg-color,
|
|
224
|
+
$-color-success
|
|
225
|
+
) !default; // 成功按钮颜色
|
|
163
226
|
$-button-info-color: var(--wot-button-info-color, $-color-title) !default; // 信息按钮颜色
|
|
164
227
|
$-button-info-bg-color: var(--wot-button-info-bg-color, #f0f0f0) !default; // 信息按钮背景颜色
|
|
165
|
-
$-button-info-plain-border-color: var(
|
|
166
|
-
|
|
228
|
+
$-button-info-plain-border-color: var(
|
|
229
|
+
--wot-button-info-plain-border-color,
|
|
230
|
+
rgba(0, 0, 0, 0.45)
|
|
231
|
+
) !default; // 信息按钮禁用颜色
|
|
232
|
+
$-button-info-plain-normal-color: var(
|
|
233
|
+
--wot-button-info-plain-normal-color,
|
|
234
|
+
rgba(0, 0, 0, 0.85)
|
|
235
|
+
) !default; // 信息幽灵按钮默认颜色
|
|
167
236
|
$-button-warning-color: var(--wot-button-warning-color, $-color-white) !default; // 警告按钮字体颜色
|
|
168
|
-
$-button-warning-bg-color: var(
|
|
237
|
+
$-button-warning-bg-color: var(
|
|
238
|
+
--wot-button-warning-bg-color,
|
|
239
|
+
$-color-warning
|
|
240
|
+
) !default; // 警告按钮背景颜色
|
|
169
241
|
$-button-error-color: var(--wot-button-error-color, $-color-white) !default; // 错误按钮颜色
|
|
170
|
-
$-button-error-bg-color: var(
|
|
171
|
-
|
|
242
|
+
$-button-error-bg-color: var(
|
|
243
|
+
--wot-button-error-bg-color,
|
|
244
|
+
$-color-danger
|
|
245
|
+
) !default; // 错误按钮背景颜色
|
|
246
|
+
$-button-text-hover-opacity: var(
|
|
247
|
+
--wot-button-text-hover-opacity,
|
|
248
|
+
0.7
|
|
249
|
+
) !default; // 文字button激活时透明度
|
|
172
250
|
|
|
173
251
|
/* cell */
|
|
174
252
|
$-cell-padding: var(--wot-cell-padding, $-size-side-padding) !default; // cell 左右padding距离
|
|
@@ -176,14 +254,26 @@ $-cell-line-height: var(--wot-cell-line-height, 24px) !default; // 行高
|
|
|
176
254
|
|
|
177
255
|
$-cell-group-title-fs: var(--wot-cell-group-title-fs, $-fs-title) !default; // 组标题字号
|
|
178
256
|
$-cell-group-padding: var(--wot-cell-group-padding, 13px $-cell-padding) !default; // 组padding
|
|
179
|
-
$-cell-group-title-color: var(
|
|
257
|
+
$-cell-group-title-color: var(
|
|
258
|
+
--wot-cell-group-title-color,
|
|
259
|
+
rgba(0, 0, 0, 0.85)
|
|
260
|
+
) !default; // 组标题文字颜色
|
|
180
261
|
$-cell-group-value-fs: var(--wot-cell-group-value-fs, $-fs-content) !default; // 组值字号
|
|
181
|
-
$-cell-group-value-color: var(
|
|
262
|
+
$-cell-group-value-color: var(
|
|
263
|
+
--wot-cell-group-value-color,
|
|
264
|
+
$-color-content
|
|
265
|
+
) !default; // 组值文字颜色
|
|
182
266
|
|
|
183
267
|
$-cell-wrapper-padding: var(--wot-cell-wrapper-padding, 10px) !default; // cell 容器padding
|
|
184
|
-
$-cell-wrapper-padding-large: var(
|
|
185
|
-
|
|
186
|
-
|
|
268
|
+
$-cell-wrapper-padding-large: var(
|
|
269
|
+
--wot-cell-wrapper-padding-large,
|
|
270
|
+
12px
|
|
271
|
+
) !default; // large类型cell容器padding
|
|
272
|
+
|
|
273
|
+
$-cell-wrapper-padding-with-label: var(
|
|
274
|
+
--wot-cell-wrapper-padding-with-label,
|
|
275
|
+
16px
|
|
276
|
+
) !default; // cell 容器上下padding(有label情况下)
|
|
187
277
|
$-cell-icon-right: var(--wot-cell-icon-right, 4px) !default; // 图标距离右边缘
|
|
188
278
|
$-cell-icon-size: var(--wot-cell-icon-size, 16px) !default; // 图标大小
|
|
189
279
|
$-cell-title-fs: var(--wot-cell-title-fs, 14px) !default; // 标题字号
|
|
@@ -227,7 +317,6 @@ $-calendar-range-color: var(--wot-calendar-range-color, rgba(#4d80f0, 0.09)) !de
|
|
|
227
317
|
$-calendar-active-border: var(--wot-calendar-active-border, 8px) !default;
|
|
228
318
|
$-calendar-info-fs: var(--wot-calendar-info-fs, 10px) !default;
|
|
229
319
|
$-calendar-item-margin-bottom: var(--wot-calendar-item-margin-bottom, 4px) !default;
|
|
230
|
-
|
|
231
320
|
|
|
232
321
|
/* checkbox */
|
|
233
322
|
$-checkbox-margin: var(--wot-checkbox-margin, 10px) !default; // 多个复选框距离
|
|
@@ -238,37 +327,67 @@ $-checkbox-icon-size: var(--wot-checkbox-icon-size, 14px) !default; // 左侧图
|
|
|
238
327
|
$-checkbox-border-color: var(--wot-checkbox-border-color, #dcdcdc) !default; // 左侧图标边框颜色
|
|
239
328
|
$-checkbox-check-color: var(--wot-checkbox-check-color, $-color-white) !default; // 左侧图标边框颜色
|
|
240
329
|
$-checkbox-label-fs: var(--wot-checkbox-label-fs, 14px) !default; // 右侧文字字号
|
|
241
|
-
$-checkbox-label-color: var(
|
|
330
|
+
$-checkbox-label-color: var(
|
|
331
|
+
--wot-checkbox-label-color,
|
|
332
|
+
rgba(0, 0, 0, 0.85)
|
|
333
|
+
) !default; // 右侧文字颜色
|
|
242
334
|
$-checkbox-checked-color: var(--wot-checkbox-checked-color, $-color-theme) !default; // 选中颜色
|
|
243
335
|
|
|
244
|
-
$-checkbox-disabled-color: var(
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
336
|
+
$-checkbox-disabled-color: var(
|
|
337
|
+
--wot-checkbox-disabled-color,
|
|
338
|
+
rgba(0, 0, 0, 0.04)
|
|
339
|
+
) !default; // 禁用背景颜色
|
|
340
|
+
$-checkbox-disabled-label-color: var(
|
|
341
|
+
--wot-checkbox-disabled-label-color,
|
|
342
|
+
rgba(0, 0, 0, 0.25)
|
|
343
|
+
) !default; // 禁用文字颜色
|
|
344
|
+
$-checkbox-disabled-check-color: var(
|
|
345
|
+
--wot-checkbox-disabled-check-color,
|
|
346
|
+
rgba(0, 0, 0, 0.15)
|
|
347
|
+
) !default; // 禁用图标颜色
|
|
348
|
+
$-checkbox-disabled-check-bg: var(
|
|
349
|
+
--wot-checkbox-disabled-check-bg,
|
|
350
|
+
rgba(0, 0, 0, 0.15)
|
|
351
|
+
) !default; // 禁用边框背景颜色
|
|
248
352
|
$-checkbox-square-radius: var(--wot-checkbox-square-radius, 4px) !default; // 方型圆角大小
|
|
249
353
|
|
|
250
354
|
$-checkbox-large-size: var(--wot-checkbox-large-size, 18px) !default; // 左侧图标尺寸
|
|
251
355
|
$-checkbox-large-label-fs: var(--wot-checkbox-large-label-fs, 16px) !default; // 右侧文字字号
|
|
252
356
|
|
|
253
|
-
$-checkbox-button-height: var(--wot-checkbox-button-height,
|
|
357
|
+
$-checkbox-button-height: var(--wot-checkbox-button-height, 28px) !default; // 按钮模式复选框高
|
|
254
358
|
$-checkbox-button-min-width: var(--wot-checkbox-button-min-width, 78px) !default; // 按钮模式最小宽
|
|
255
359
|
$-checkbox-button-radius: var(--wot-checkbox-button-radius, 16px) !default; // 按钮圆角大小
|
|
256
|
-
$-checkbox-button-bg: var(
|
|
360
|
+
$-checkbox-button-bg: var(
|
|
361
|
+
--wot-checkbox-button-bg,
|
|
362
|
+
rgba(0, 0, 0, 0.04)
|
|
363
|
+
) !default; // 按钮模式背景颜色
|
|
257
364
|
$-checkbox-button-font-size: var(--wot-checkbox-button-font-size, 14px) !default; // 按钮模式字号
|
|
258
365
|
$-checkbox-button-border: var(--wot-checkbox-button-border, #f5f5f5) !default; // 按钮边框颜色
|
|
259
|
-
$-checkbox-button-disabled-border: var(
|
|
366
|
+
$-checkbox-button-disabled-border: var(
|
|
367
|
+
--wot-checkbox-button-disabled-border,
|
|
368
|
+
rgba(0, 0, 0, 0.15)
|
|
369
|
+
) !default; // 按钮禁用边框颜色
|
|
260
370
|
|
|
261
371
|
/* collapse */
|
|
262
372
|
$-collapse-side-padding: var(--wot-collapse-side-padding, $-size-side-padding) !default; // 左右间距
|
|
263
|
-
$-collapse-body-padding: var(
|
|
264
|
-
|
|
373
|
+
$-collapse-body-padding: var(
|
|
374
|
+
--wot-collapse-body-padding,
|
|
375
|
+
14px $-size-side-padding
|
|
376
|
+
) !default; // body padding
|
|
377
|
+
$-collapse-header-padding: var(
|
|
378
|
+
--wot-collapse-header-padding,
|
|
379
|
+
13px $-size-side-padding
|
|
380
|
+
) !default; // 头部padding
|
|
265
381
|
$-collapse-title-color: var(--wot-collapse-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
|
|
266
382
|
$-collapse-title-fs: var(--wot-collapse-title-fs, 16px) !default; // 标题字号
|
|
267
383
|
$-collapse-arrow-size: var(--wot-collapse-arrow-size, 18px) !default; // 箭头大小
|
|
268
384
|
$-collapse-arrow-color: var(--wot-collapse-arrow-color, #d8d8d8) !default; // 箭头颜色
|
|
269
385
|
$-collapse-body-fs: var(--wot-collapse-body-fs, 14px) !default; // 内容字号
|
|
270
386
|
$-collapse-body-color: var(--wot-collapse-body-color, rgba(0, 0, 0, 0.65)) !default; // 内容颜色
|
|
271
|
-
$-collapse-disabled-color: var(
|
|
387
|
+
$-collapse-disabled-color: var(
|
|
388
|
+
--wot-collapse-disabled-color,
|
|
389
|
+
rgba(0, 0, 0, 0.15)
|
|
390
|
+
) !default; // 禁用颜色
|
|
272
391
|
$-collapse-retract-fs: var(--wot-collapse-retract-fs, 14px) !default; // 更多 字号
|
|
273
392
|
$-collapse-more-color: var(--wot-collapse-more-color, $-color-theme) !default; // 更多 颜色
|
|
274
393
|
|
|
@@ -280,50 +399,80 @@ $-divider-line-color: var(--wot-divider-line-color, currentColor) !default; //
|
|
|
280
399
|
$-divider-line-height: var(--wot-divider-line-height, 1px) !default; // 线条高度
|
|
281
400
|
$-divider-fs: var(--wot-divider-fs, 14px) !default; // 字体大小
|
|
282
401
|
$-divider-content-left-width: var(--wot-divider-content-left-width, 10%) !default; // 左侧内容宽度
|
|
283
|
-
$-divider-content-left-margin: var(
|
|
284
|
-
|
|
402
|
+
$-divider-content-left-margin: var(
|
|
403
|
+
--wot-divider-content-left-margin,
|
|
404
|
+
12px
|
|
405
|
+
) !default; // 左侧内容距离线距离
|
|
406
|
+
$-divider-content-right-margin: var(
|
|
407
|
+
--wot-divider-content-right-margin,
|
|
408
|
+
12px
|
|
409
|
+
) !default; // 右侧内容距离线距离
|
|
285
410
|
$-divider-content-right-width: var(--wot-divider-content-right-width, 10%) !default; // 右侧内容宽度
|
|
286
411
|
$-divider-vertical-height: var(--wot-divider-vertical-height, 16px) !default; // 垂直分割线高度
|
|
287
|
-
$-divider-vertical-content-margin: var(
|
|
412
|
+
$-divider-vertical-content-margin: var(
|
|
413
|
+
--wot-divider-vertical-content-margin,
|
|
414
|
+
0 8px
|
|
415
|
+
) !default; // 垂直分割线内容间距
|
|
288
416
|
$-divider-vertical-line-width: var(--wot-divider-vertical-line-width, 1px) !default; // 线条高度
|
|
289
417
|
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
418
|
/* drop-menu */
|
|
294
419
|
$-drop-menu-height: var(--wot-drop-menu-height, 48px) !default; // 展示选中项的高度
|
|
295
420
|
$-drop-menu-color: var(--wot-drop-menu-color, $-color-content) !default; // 展示选中项的颜色
|
|
296
421
|
$-drop-menu-fs: var(--wot-drop-menu-fs, $-fs-content) !default; // 展示选中项的字号
|
|
297
422
|
$-drop-menu-arrow-fs: var(--wot-drop-menu-arrow-fs, $-fs-secondary) !default; // 箭头图标大小
|
|
298
423
|
|
|
299
|
-
$-drop-menu-side-padding: var(
|
|
300
|
-
|
|
424
|
+
$-drop-menu-side-padding: var(
|
|
425
|
+
--wot-drop-menu-side-padding,
|
|
426
|
+
$-size-side-padding
|
|
427
|
+
) !default; // 两边留白间距
|
|
428
|
+
$-drop-menu-disabled-color: var(
|
|
429
|
+
--wot-drop-menu-disabled-color,
|
|
430
|
+
rgba(0, 0, 0, 0.25)
|
|
431
|
+
) !default; // 禁用颜色
|
|
301
432
|
$-drop-menu-item-height: var(--wot-drop-menu-item-height, 48px) !default; // 选项高度
|
|
302
433
|
$-drop-menu-item-color: var(--wot-drop-menu-item-color, $-color-content) !default; // 选项颜色
|
|
303
434
|
$-drop-menu-item-fs: var(--wot-drop-menu-item-fs, $-fs-content) !default; // 选项字号
|
|
304
|
-
$-drop-menu-item-color-active: var(
|
|
305
|
-
|
|
435
|
+
$-drop-menu-item-color-active: var(
|
|
436
|
+
--wot-drop-menu-item-color-active,
|
|
437
|
+
$-color-theme
|
|
438
|
+
) !default; // 选中颜色
|
|
439
|
+
$-drop-menu-item-color-tip: var(
|
|
440
|
+
--wot-drop-menu-item-color-tip,
|
|
441
|
+
rgba(0, 0, 0, 0.45)
|
|
442
|
+
) !default; // 提示文字颜色
|
|
306
443
|
$-drop-menu-item-fs-tip: var(--wot-drop-menu-item-fs-tip, $-fs-secondary) !default; // 提示文字字号
|
|
307
|
-
$-drop-menu-option-check-size: var(
|
|
444
|
+
$-drop-menu-option-check-size: var(
|
|
445
|
+
--wot-drop-menu-option-check-size,
|
|
446
|
+
20px
|
|
447
|
+
) !default; // check 图标大小
|
|
308
448
|
$-drop-menu-line-color: var(--wot-drop-menu-line-color, $-color-theme) !default; // 下划线颜色
|
|
309
449
|
$-drop-menu-line-height: var(--wot-drop-menu-line-height, 3px) !default; // 下划线高度
|
|
310
450
|
|
|
311
451
|
/* input-number */
|
|
312
452
|
$-input-number-color: var(--wot-input-number-color, #262626) !default; // 文字颜色
|
|
313
453
|
$-input-number-border-color: var(--wot-input-number-border-color, #e8e8e8) !default; // 边框颜色
|
|
314
|
-
$-input-number-disabled-color: var(
|
|
454
|
+
$-input-number-disabled-color: var(
|
|
455
|
+
--wot-input-number-disabled-color,
|
|
456
|
+
rgba(0, 0, 0, 0.25)
|
|
457
|
+
) !default; // 禁用颜色
|
|
315
458
|
$-input-number-height: var(--wot-input-number-height, 24px) !default; // 加减号按钮高度
|
|
316
459
|
$-input-number-btn-width: var(--wot-input-number-btn-width, 26px) !default; // 加减号按钮宽度
|
|
317
460
|
$-input-number-input-width: var(--wot-input-number-input-width, 36px) !default; // 输入框宽度
|
|
318
461
|
$-input-number-radius: var(--wot-input-number-radius, 4px) !default; // 加减号按钮圆角大小
|
|
319
462
|
$-input-number-fs: var(--wot-input-number-fs, 12px) !default; // 输入框字号
|
|
320
463
|
$-input-number-icon-size: var(--wot-input-number-icon-size, 14px) !default; // 加减号图标大小
|
|
321
|
-
$-input-number-icon-color: var(
|
|
464
|
+
$-input-number-icon-color: var(
|
|
465
|
+
--wot-input-number-icon-color,
|
|
466
|
+
rgba(0, 0, 0, 0.65)
|
|
467
|
+
) !default; // icon颜色
|
|
322
468
|
|
|
323
469
|
/* input */
|
|
324
470
|
$-input-padding: var(--wot-input-padding, $-size-side-padding) !default; // input 左右padding距离
|
|
325
471
|
$-input-border-color: var(--wot-input-border-color, #dadada) !default; // 无label边框颜色
|
|
326
|
-
$-input-not-empty-border-color: var(
|
|
472
|
+
$-input-not-empty-border-color: var(
|
|
473
|
+
--wot-input-not-empty-border-color,
|
|
474
|
+
#262626
|
|
475
|
+
) !default; // 输入框有值时 无label边框颜色
|
|
327
476
|
$-input-fs: var(--wot-input-fs, $-cell-title-fs) !default; // 字号
|
|
328
477
|
$-input-fs-large: var(--wot-input-fs-large, $-cell-title-fs-large) !default; // 大尺寸字号
|
|
329
478
|
$-input-icon-margin: var(--wot-input-icon-margin, 8px) !default; // 图标距离
|
|
@@ -338,22 +487,37 @@ $-input-count-current-color: var(--wot-input-count-current-color, #262626) !defa
|
|
|
338
487
|
$-input-bg: var(--wot-input-bg, $-color-white) !default; // 默认背景颜色
|
|
339
488
|
|
|
340
489
|
$-input-cell-bg: var(--wot-input-cell-bg, $-color-white) !default; // cell 类型背景色
|
|
341
|
-
$-input-cell-border-color: var(
|
|
490
|
+
$-input-cell-border-color: var(
|
|
491
|
+
--wot-input-cell-border-color,
|
|
492
|
+
$-color-border-light
|
|
493
|
+
) !default; // cell 类型边框颜色
|
|
342
494
|
$-input-cell-padding: var(--wot-input-cell-padding, 10px) !default; // cell 容器padding
|
|
343
|
-
$-input-cell-padding-large: var(
|
|
495
|
+
$-input-cell-padding-large: var(
|
|
496
|
+
--wot-input-cell-padding-large,
|
|
497
|
+
12px
|
|
498
|
+
) !default; // large类型cell容器padding
|
|
344
499
|
$-input-cell-height: var(--wot-input-cell-height, 24px) !default; // cell 高度
|
|
345
500
|
$-input-cell-label-width: var(--wot-input-cell-label-width, 33%) !default; // cell 下 label 的宽度
|
|
346
501
|
$-input-inner-height: var(--wot-input-inner-height, 34px) !default; // 非cell和textarea下的高度
|
|
347
|
-
$-input-inner-height-no-border: var(
|
|
502
|
+
$-input-inner-height-no-border: var(
|
|
503
|
+
--wot-input-inner-height-no-border,
|
|
504
|
+
24px
|
|
505
|
+
) !default; // 无边框下的高度
|
|
348
506
|
$-input-count-fs: var(--wot-input-count-fs, 14px) !default; // 计数字号
|
|
349
507
|
$-input-count-fs-large: var(--wot-input-count-fs-large, 14px) !default; // 大尺寸计数字号
|
|
350
508
|
$-input-icon-size: var(--wot-input-icon-size, 16px) !default; // 图标大小
|
|
351
509
|
$-input-icon-size-large: var(--wot-input-icon-size-large, 18px) !default; // 大尺寸图标大小
|
|
352
510
|
|
|
353
511
|
/* textarea */
|
|
354
|
-
$-textarea-padding: var(
|
|
512
|
+
$-textarea-padding: var(
|
|
513
|
+
--wot-textarea-padding,
|
|
514
|
+
$-size-side-padding
|
|
515
|
+
) !default; // textarea 左右padding距离
|
|
355
516
|
$-textarea-border-color: var(--wot-textarea-border-color, #dadada) !default; // 无label边框颜色
|
|
356
|
-
$-textarea-not-empty-border-color: var(
|
|
517
|
+
$-textarea-not-empty-border-color: var(
|
|
518
|
+
--wot-textarea-not-empty-border-color,
|
|
519
|
+
#262626
|
|
520
|
+
) !default; // 输入框有值时 无label边框颜色
|
|
357
521
|
$-textarea-fs: var(--wot-textarea-fs, $-cell-title-fs) !default; // 字号
|
|
358
522
|
$-textarea-fs-large: var(--wot-textarea-fs-large, $-cell-title-fs-large) !default; // 大尺寸字号
|
|
359
523
|
$-textarea-icon-margin: var(--wot-textarea-icon-margin, 8px) !default; // 图标距离
|
|
@@ -361,11 +525,20 @@ $-textarea-color: var(--wot-textarea-color, #262626) !default; // 文字颜色
|
|
|
361
525
|
$-textarea-icon-color: var(--wot-textarea-icon-color, #bfbfbf) !default; // 图标颜色
|
|
362
526
|
$-textarea-clear-color: var(--wot-textarea-clear-color, #585858) !default; // 关闭按钮颜色
|
|
363
527
|
$-textarea-count-color: var(--wot-textarea-count-color, #bfbfbf) !default; // 计数文字颜色
|
|
364
|
-
$-textarea-count-current-color: var(
|
|
528
|
+
$-textarea-count-current-color: var(
|
|
529
|
+
--wot-textarea-count-current-color,
|
|
530
|
+
#262626
|
|
531
|
+
) !default; // 当前长度颜色
|
|
365
532
|
$-textarea-bg: var(--wot-textarea-bg, $-color-white) !default; // 默认背景颜色
|
|
366
|
-
$-textarea-cell-border-color: var(
|
|
533
|
+
$-textarea-cell-border-color: var(
|
|
534
|
+
--wot-textarea-cell-border-color,
|
|
535
|
+
$-color-border-light
|
|
536
|
+
) !default; // cell 类型边框颜色
|
|
367
537
|
$-textarea-cell-padding: var(--wot-textarea-cell-padding, 10px) !default; // cell 容器padding
|
|
368
|
-
$-textarea-cell-padding-large: var(
|
|
538
|
+
$-textarea-cell-padding-large: var(
|
|
539
|
+
--wot-textarea-cell-padding-large,
|
|
540
|
+
12px
|
|
541
|
+
) !default; // large类型cell容器padding
|
|
369
542
|
$-textarea-cell-height: var(--wot-textarea-cell-height, 24px) !default; // cell 高度
|
|
370
543
|
$-textarea-count-fs: var(--wot-textarea-count-fs, 14px) !default; // 计数字号
|
|
371
544
|
$-textarea-count-fs-large: var(--wot-textarea-count-fs-large, 14px) !default; // 大尺寸计数字号
|
|
@@ -386,30 +559,63 @@ $-message-box-bg: var(--wot-message-box-bg, $-color-white) !default; // 默认
|
|
|
386
559
|
$-message-box-radius: var(--wot-message-box-radius, 16px) !default; // 圆角大小
|
|
387
560
|
$-message-box-padding: var(--wot-message-box-padding, 25px 24px 0) !default; // 主体内容padding
|
|
388
561
|
$-message-box-title-fs: var(--wot-message-box-title-fs, 16px) !default; // 标题字号
|
|
389
|
-
$-message-box-title-color: var(
|
|
562
|
+
$-message-box-title-color: var(
|
|
563
|
+
--wot-message-box-title-color,
|
|
564
|
+
rgba(0, 0, 0, 0.85)
|
|
565
|
+
) !default; // 标题颜色
|
|
390
566
|
$-message-box-content-fs: var(--wot-message-box-content-fs, 14px) !default; // 内容字号
|
|
391
567
|
$-message-box-content-color: var(--wot-message-box-content-color, #666666) !default; // 内容颜色
|
|
392
|
-
$-message-box-content-max-height: var(
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
568
|
+
$-message-box-content-max-height: var(
|
|
569
|
+
--wot-message-box-content-max-height,
|
|
570
|
+
264px
|
|
571
|
+
) !default; // 内容最大高度
|
|
572
|
+
$-message-box-content-scrollbar-width: var(
|
|
573
|
+
--wot-message-box-content-scrollbar-width,
|
|
574
|
+
4px
|
|
575
|
+
) !default; // 内容滚动条宽度
|
|
576
|
+
$-message-box-content-scrollbar-color: var(
|
|
577
|
+
--wot-message-box-content-scrollbar-color,
|
|
578
|
+
rgba(0, 0, 0, 0.1)
|
|
579
|
+
) !default; // 内容滚动条颜色
|
|
580
|
+
$-message-box-input-error-color: var(
|
|
581
|
+
--wot-message-box-input-error-color,
|
|
582
|
+
$-input-error-color
|
|
583
|
+
) !default; // 输入框错误颜色
|
|
396
584
|
|
|
397
585
|
/* notice-bar */
|
|
398
586
|
$-notice-bar-fs: var(--wot-notice-bar-fs, 12px) !default; // 字号
|
|
399
587
|
$-notice-bar-line-height: var(--wot-notice-bar-line-height, 18px) !default; // 行高
|
|
400
588
|
$-notice-bar-border-radius: var(--wot-notice-bar-border-radius, 8px) !default; // 圆角
|
|
401
|
-
$-notice-bar-padding: var(
|
|
589
|
+
$-notice-bar-padding: var(
|
|
590
|
+
--wot-notice-bar-padding,
|
|
591
|
+
9px 20px 9px 15px
|
|
592
|
+
) !default; // 非换行下的padding
|
|
402
593
|
$-notice-bar-warning-bg: var(--wot-notice-bar-warning-bg, #fff6c8) !default; // 背景色
|
|
403
594
|
$-notice-bar-info-bg: var(--wot-notice-bar-info-bg, #f4f9ff) !default; // 背景色
|
|
404
595
|
$-notice-bar-danger-bg: var(--wot-notice-bar-danger-bg, #feeced) !default; // 背景色
|
|
405
|
-
$-notice-bar-warning-color: var(
|
|
596
|
+
$-notice-bar-warning-color: var(
|
|
597
|
+
--wot-notice-bar-warning-color,
|
|
598
|
+
$-color-warning
|
|
599
|
+
) !default; // 文字和图标颜色
|
|
406
600
|
$-notice-bar-info-color: var(--wot-notice-bar-info-color, $-color-theme) !default; // 文字和图标颜色
|
|
407
|
-
$-notice-bar-danger-color: var(
|
|
601
|
+
$-notice-bar-danger-color: var(
|
|
602
|
+
--wot-notice-bar-danger-color,
|
|
603
|
+
$-color-danger
|
|
604
|
+
) !default; // 文字和图标颜色
|
|
408
605
|
$-notice-bar-prefix-size: var(--wot-notice-bar-prefix-size, 18px) !default; // 图标大小
|
|
409
|
-
$-notice-bar-close-bg: var(
|
|
606
|
+
$-notice-bar-close-bg: var(
|
|
607
|
+
--wot-notice-bar-close-bg,
|
|
608
|
+
rgba(0, 0, 0, 0.15)
|
|
609
|
+
) !default; // 右侧关闭按钮背景颜色
|
|
410
610
|
$-notice-bar-close-size: var(--wot-notice-bar-close-size, 18px) !default; // 右侧关闭按钮背景颜色
|
|
411
|
-
$-notice-bar-close-color: var(
|
|
412
|
-
|
|
611
|
+
$-notice-bar-close-color: var(
|
|
612
|
+
--wot-notice-bar-close-color,
|
|
613
|
+
$-color-white
|
|
614
|
+
) !default; // 右侧关闭按钮颜色
|
|
615
|
+
$-notice-bar-wrap-padding: var(
|
|
616
|
+
--wot-notice-bar-wrap-padding,
|
|
617
|
+
14px $-size-side-padding
|
|
618
|
+
) !default; // 换行下的padding
|
|
413
619
|
|
|
414
620
|
/* pagination */
|
|
415
621
|
$-pagination-content-padding: var(--wot-pagination-content-padding, 10px 15px) !default;
|
|
@@ -429,37 +635,91 @@ $-pagination-icon-size: var(--wot-pagination-icon-size, $-fs-content) !default;
|
|
|
429
635
|
/* picker */
|
|
430
636
|
$-picker-toolbar-height: var(--wot-picker-toolbar-height, 54px) !default; // toolbar 操作条的高度
|
|
431
637
|
$-picker-action-height: var(--wot-picker-action-height, 16px) !default; // toolbar 操作条的高度
|
|
432
|
-
$-picker-toolbar-finish-color: var(
|
|
433
|
-
|
|
638
|
+
$-picker-toolbar-finish-color: var(
|
|
639
|
+
--wot-picker-toolbar-finish-color,
|
|
640
|
+
$-color-theme
|
|
641
|
+
) !default; // toolbar 操作条完成按钮的颜色
|
|
642
|
+
$-picker-toolbar-cancel-color: var(
|
|
643
|
+
--wot-picker-toolbar-cancel-color,
|
|
644
|
+
#666666
|
|
645
|
+
) !default; // toolbar 操作条的边框颜色
|
|
434
646
|
$-picker-toolbar-fs: var(--wot-picker-toolbar-fs, $-fs-title) !default; // toolbar 操作条的字号
|
|
435
|
-
$-picker-toolbar-title-color: var(
|
|
647
|
+
$-picker-toolbar-title-color: var(
|
|
648
|
+
--wot-picker-toolbar-title-color,
|
|
649
|
+
rgba(0, 0, 0, 0.85)
|
|
650
|
+
) !default; // toolbar 操作台的标题颜色
|
|
436
651
|
$-picker-column-fs: var(--wot-picker-column-fs, 16px) !default; // 选择器选项的字号
|
|
437
652
|
$-picker-bg: var(--wot-picker-bg, $-color-white) !default; // 选择器选项的字号
|
|
438
|
-
$-picker-column-active-fs: var(
|
|
439
|
-
|
|
653
|
+
$-picker-column-active-fs: var(
|
|
654
|
+
--wot-picker-column-active-fs,
|
|
655
|
+
18px
|
|
656
|
+
) !default; // 选择器选项被选中的字号
|
|
657
|
+
$-picker-column-color: var(
|
|
658
|
+
--wot-picker-column-color,
|
|
659
|
+
rgba(0, 0, 0, 0.85)
|
|
660
|
+
) !default; // 选择器选项的颜色
|
|
440
661
|
$-picker-column-height: var(--wot-picker-column-height, 210px) !default; // 列高 滚筒外部的高度
|
|
441
|
-
$-picker-column-item-height: var(
|
|
662
|
+
$-picker-column-item-height: var(
|
|
663
|
+
--wot-picker-column-item-height,
|
|
664
|
+
35px
|
|
665
|
+
) !default; // 列高 滚筒外部的高度
|
|
442
666
|
$-picker-column-select-bg: var(--wot-picker-column-select-bg, #f5f5f5) !default;
|
|
443
|
-
$-picker-loading-button-color: var(
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
$-picker-
|
|
667
|
+
$-picker-loading-button-color: var(
|
|
668
|
+
--wot-picker-loading-button-color,
|
|
669
|
+
rgba(0, 0, 0, 0.25)
|
|
670
|
+
) !default; // loading 背景颜色
|
|
671
|
+
$-picker-column-padding: var(
|
|
672
|
+
--wot-picker-column-padding,
|
|
673
|
+
0 $-size-side-padding-small
|
|
674
|
+
) !default; // 选项内间距
|
|
675
|
+
|
|
676
|
+
$-picker-column-disabled-color: var(
|
|
677
|
+
--wot-picker-column-disabled-color,
|
|
678
|
+
rgba(0, 0, 0, 0.25)
|
|
679
|
+
) !default; // 选择器选项禁用的颜色
|
|
680
|
+
$-picker-mask: var(
|
|
681
|
+
--wot-picker-mask,
|
|
682
|
+
linear-gradient(180deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.25))
|
|
683
|
+
)
|
|
448
684
|
linear-gradient(0deg, hsla(0, 0%, 100%, 0.9), hsla(0, 0%, 100%, 0.25)) !default; // 上下阴影
|
|
449
|
-
$-picker-loading-bg: var(
|
|
450
|
-
|
|
451
|
-
$-
|
|
452
|
-
|
|
453
|
-
$-picker-region-color: var(
|
|
454
|
-
|
|
685
|
+
$-picker-loading-bg: var(
|
|
686
|
+
--wot-picker-loading-bg,
|
|
687
|
+
rgba($-color-white, 0.8)
|
|
688
|
+
) !default; // loading 背景颜色
|
|
689
|
+
$-picker-region-separator-color: var(
|
|
690
|
+
--wot-picker-region-separator-color,
|
|
691
|
+
rgba(0, 0, 0, 0.65)
|
|
692
|
+
) !default; // 区域选择文字颜色
|
|
693
|
+
$-picker-cell-arrow-size-large: var(
|
|
694
|
+
--wot-picker-cell-arrow-size-large,
|
|
695
|
+
$-cell-icon-size
|
|
696
|
+
) !default; // cell 类型的大尺寸 右侧icon尺寸
|
|
697
|
+
|
|
698
|
+
$-picker-region-color: var(
|
|
699
|
+
--wot-picker-region-color,
|
|
700
|
+
rgba(0, 0, 0, 0.45)
|
|
701
|
+
) !default; // 区域选择文字颜色
|
|
702
|
+
$-picker-region-bg-active-color: var(
|
|
703
|
+
--wot-picker-region-bg-active-color,
|
|
704
|
+
$-color-theme
|
|
705
|
+
) !default; // 区域选择激活选中背景颜色
|
|
455
706
|
|
|
456
707
|
$-picker-region-fs: var(--wot-picker-region-fs, 14px) !default; // 区域选择文字字号
|
|
457
708
|
|
|
458
709
|
/* col-picker */
|
|
459
|
-
$-col-picker-selected-height: var(
|
|
460
|
-
|
|
710
|
+
$-col-picker-selected-height: var(
|
|
711
|
+
--wot-col-picker-selected-height,
|
|
712
|
+
44px
|
|
713
|
+
) !default; // 弹框顶部值高度
|
|
714
|
+
$-col-picker-selected-padding: var(
|
|
715
|
+
--wot-col-picker-selected-padding,
|
|
716
|
+
0 16px
|
|
717
|
+
) !default; // 弹框顶部值左右间距
|
|
461
718
|
$-col-picker-selected-fs: var(--wot-col-picker-selected-fs, 14px) !default; // 弹框顶部值字号
|
|
462
|
-
$-col-picker-selected-color: var(
|
|
719
|
+
$-col-picker-selected-color: var(
|
|
720
|
+
--wot-col-picker-selected-color,
|
|
721
|
+
rgba(0, 0, 0, 0.85)
|
|
722
|
+
) !default; // 弹框顶部值文字颜色
|
|
463
723
|
$-col-picker-selected-fw: var(--wot-col-picker-selected-fw, 700) !default; // 弹框顶部值高亮字重
|
|
464
724
|
$-col-picker-line-width: var(--wot-col-picker-line-width, 16px) !default; // 弹框顶部值高亮线条宽度
|
|
465
725
|
$-col-picker-line-height: var(--wot-col-picker-line-height, 3px) !default; // 弹框顶部值高亮线条高度
|
|
@@ -467,17 +727,41 @@ $-col-picker-line-color: var(
|
|
|
467
727
|
--wot-col-picker-line-color,
|
|
468
728
|
linear-gradient(315deg, rgba(81, 124, 240, 1), rgba(118, 158, 245, 1))
|
|
469
729
|
) !default; // 弹框顶部值高亮线条颜色
|
|
470
|
-
$-col-picker-line-box-shadow: var(
|
|
730
|
+
$-col-picker-line-box-shadow: var(
|
|
731
|
+
--wot-col-picker-line-box-shadow,
|
|
732
|
+
0px 1px 2px 0px rgba(1, 87, 255, 0.2)
|
|
733
|
+
) !default; // 弹框顶部值高亮线条阴影
|
|
471
734
|
$-col-picker-list-height: var(--wot-col-picker-list-height, 53vh) !default; // 弹框列表高度
|
|
472
|
-
$-col-picker-list-padding-bottom: var(
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
735
|
+
$-col-picker-list-padding-bottom: var(
|
|
736
|
+
--wot-col-picker-list-padding-bottom,
|
|
737
|
+
30px
|
|
738
|
+
) !default; // 弹框列表底部间距
|
|
739
|
+
$-col-picker-list-color: var(
|
|
740
|
+
--wot-col-picker-list-color,
|
|
741
|
+
rgba(0, 0, 0, 0.85)
|
|
742
|
+
) !default; // 弹框列表文字颜色
|
|
743
|
+
$-col-picker-list-color-disabled: var(
|
|
744
|
+
--wot-col-picker-list-color-disabled,
|
|
745
|
+
rgba(0, 0, 0, 0.15)
|
|
746
|
+
) !default; // 弹框列表文字禁用颜色
|
|
747
|
+
$-col-picker-list-color-tip: var(
|
|
748
|
+
--wot-col-picker-list-color-tip,
|
|
749
|
+
rgba(0, 0, 0, 0.45)
|
|
750
|
+
) !default; // 弹框列表提示文字颜色
|
|
476
751
|
$-col-picker-list-fs: var(--wot-col-picker-list-fs, 14px) !default; // 弹框列表文字字号
|
|
477
752
|
$-col-picker-list-fs-tip: var(--wot-col-picker-list-fs-tip, 12px) !default; // 弹框列表提示文字字号
|
|
478
|
-
$-col-picker-list-item-padding: var(
|
|
479
|
-
|
|
480
|
-
|
|
753
|
+
$-col-picker-list-item-padding: var(
|
|
754
|
+
--wot-col-picker-list-item-padding,
|
|
755
|
+
12px 15px
|
|
756
|
+
) !default; // 弹框列表选项间距
|
|
757
|
+
$-col-picker-list-checked-icon-size: var(
|
|
758
|
+
--wot-col-picker-list-checked-icon-size,
|
|
759
|
+
18px
|
|
760
|
+
) !default; // 弹框列表选中箭头大小
|
|
761
|
+
$-col-picker-list-color-checked: var(
|
|
762
|
+
--wot-col-picker-list-color-checked,
|
|
763
|
+
$-color-theme
|
|
764
|
+
) !default; // 弹框列表选中选项颜色
|
|
481
765
|
|
|
482
766
|
/* overlay */
|
|
483
767
|
$-overlay-bg: var(--wot-overlay-bg, rgba(0, 0, 0, 0.65)) !default;
|
|
@@ -490,9 +774,18 @@ $-popup-close-color: var(--wot-popup-close-color, #666) !default; // 关闭按
|
|
|
490
774
|
/* progress */
|
|
491
775
|
$-progress-padding: var(--wot-progress-padding, 9px 0 8px) !default; // 进度条内边距
|
|
492
776
|
$-progress-bg: var(--wot-progress-bg, rgba(229, 229, 229, 1)) !default; // 进度条底色
|
|
493
|
-
$-progress-danger-color: var(
|
|
494
|
-
|
|
495
|
-
$-
|
|
777
|
+
$-progress-danger-color: var(
|
|
778
|
+
--wot-progress-danger-color,
|
|
779
|
+
$-color-danger
|
|
780
|
+
) !default; // 进度条danger颜色
|
|
781
|
+
$-progress-success-color: var(
|
|
782
|
+
--wot-progress-success-color,
|
|
783
|
+
$-color-success
|
|
784
|
+
) !default; // 进度条success进度条颜色
|
|
785
|
+
$-progress-warning-color: var(
|
|
786
|
+
--wot-progress-warning-color,
|
|
787
|
+
$-color-warning
|
|
788
|
+
) !default; // 进度条warning进度条颜色
|
|
496
789
|
|
|
497
790
|
$-progress-color: var(--wot-progress-color, $-color-theme) !default; // 进度条颜色
|
|
498
791
|
$-progress-height: var(--wot-progress-height, 3px) !default; // 进度条高度
|
|
@@ -502,38 +795,80 @@ $-progress-icon-fs: var(--wot-progress-icon-fs, 18px) !default; // 图标字号
|
|
|
502
795
|
|
|
503
796
|
/* radio */
|
|
504
797
|
$-radio-margin: var(--wot-radio-margin, $-checkbox-margin) !default; // 多个单选框距离
|
|
505
|
-
$-radio-label-margin: var(
|
|
798
|
+
$-radio-label-margin: var(
|
|
799
|
+
--wot-radio-label-margin,
|
|
800
|
+
$-checkbox-label-margin
|
|
801
|
+
) !default; // 右侧文字与左侧图标距离
|
|
506
802
|
$-radio-size: var(--wot-radio-size, 16px) !default; // 左侧图标尺寸
|
|
507
803
|
$-radio-bg: var(--wot-radio-bg, $-color-white) !default; // 左侧图标尺寸
|
|
508
804
|
$-radio-label-fs: var(--wot-radio-label-fs, $-checkbox-label-fs) !default; // 右侧文字字号
|
|
509
805
|
$-radio-label-color: var(--wot-radio-label-color, $-checkbox-label-color) !default; // 右侧文字颜色
|
|
510
|
-
$-radio-checked-color: var(
|
|
511
|
-
|
|
512
|
-
$-
|
|
806
|
+
$-radio-checked-color: var(
|
|
807
|
+
--wot-radio-checked-color,
|
|
808
|
+
$-checkbox-checked-color
|
|
809
|
+
) !default; // 选中颜色
|
|
810
|
+
$-radio-disabled-color: var(
|
|
811
|
+
--wot-radio-disabled-color,
|
|
812
|
+
$-checkbox-disabled-color
|
|
813
|
+
) !default; // 禁用颜色
|
|
814
|
+
$-radio-disabled-label-color: var(
|
|
815
|
+
--wot-radio-disabled-label-color,
|
|
816
|
+
$-checkbox-disabled-label-color
|
|
817
|
+
) !default; // 禁用文字颜色
|
|
513
818
|
|
|
514
819
|
$-radio-large-size: var(--wot-radio-large-size, $-checkbox-large-size) !default; // 左侧图标尺寸
|
|
515
|
-
$-radio-large-label-fs: var(
|
|
516
|
-
|
|
517
|
-
$-
|
|
820
|
+
$-radio-large-label-fs: var(
|
|
821
|
+
--wot-radio-large-label-fs,
|
|
822
|
+
$-checkbox-large-label-fs
|
|
823
|
+
) !default; // 右侧文字字号
|
|
824
|
+
|
|
825
|
+
$-radio-button-height: var(
|
|
826
|
+
--wot-radio-button-height,
|
|
827
|
+
$-checkbox-button-height
|
|
828
|
+
) !default; // 按钮模式复选框高
|
|
518
829
|
$-radio-button-min-width: var(--wot-radio-button-min-width, 60px) !default; // 按钮模式最小宽
|
|
519
830
|
$-radio-button-max-width: var(--wot-radio-button-max-width, 144px) !default; // 按钮模式最大宽
|
|
520
|
-
$-radio-button-radius: var(
|
|
831
|
+
$-radio-button-radius: var(
|
|
832
|
+
--wot-radio-button-radius,
|
|
833
|
+
$-checkbox-button-radius
|
|
834
|
+
) !default; // 按钮圆角大小
|
|
521
835
|
$-radio-button-bg: var(--wot-radio-button-bg, $-checkbox-button-bg) !default; // 按钮模式背景颜色
|
|
522
836
|
$-radio-button-fs: var(--wot-radio-button-fs, $-checkbox-button-font-size) !default; // 按钮模式字号
|
|
523
|
-
$-radio-button-border: var(
|
|
524
|
-
|
|
837
|
+
$-radio-button-border: var(
|
|
838
|
+
--wot-radio-button-border,
|
|
839
|
+
$-checkbox-button-border
|
|
840
|
+
) !default; // 按钮边框颜色
|
|
841
|
+
$-radio-button-disabled-border: var(
|
|
842
|
+
--wot-radio-button-disabled-border,
|
|
843
|
+
$-checkbox-button-disabled-border
|
|
844
|
+
) !default; // 按钮禁用边框颜色
|
|
525
845
|
|
|
526
846
|
$-radio-dot-size: var(--wot-radio-dot-size, 8px) !default; // 单选dot模式圆点尺寸
|
|
527
847
|
$-radio-dot-large-size: var(--wot-radio-dot-large-size, 10px) !default; // 单选dot模式大尺寸圆点尺寸
|
|
528
|
-
$-radio-dot-checked-bg: var(
|
|
529
|
-
|
|
848
|
+
$-radio-dot-checked-bg: var(
|
|
849
|
+
--wot-radio-dot-checked-bg,
|
|
850
|
+
$-color-theme
|
|
851
|
+
) !default; // 单选dot模式选中背景色
|
|
852
|
+
$-radio-dot-checked-border-color: var(
|
|
853
|
+
--wot-radio-dot-checked-border-color,
|
|
854
|
+
$-color-theme
|
|
855
|
+
) !default; // 单选dot模式选中边框色
|
|
530
856
|
$-radio-dot-border-color: var(--wot-radio-dot-border-color, #dcdcdc) !default; // 单选dot模式边框色
|
|
531
|
-
$-radio-dot-disabled-border: var(
|
|
532
|
-
|
|
857
|
+
$-radio-dot-disabled-border: var(
|
|
858
|
+
--wot-radio-dot-disabled-border,
|
|
859
|
+
#d9d9d9
|
|
860
|
+
) !default; // 单选dot模式禁用边框颜色
|
|
861
|
+
$-radio-dot-disabled-bg: var(
|
|
862
|
+
--wot-radio-dot-disabled-bg,
|
|
863
|
+
#d9d9d9
|
|
864
|
+
) !default; // 单选dot模式禁用背景颜色
|
|
533
865
|
|
|
534
866
|
/* search */
|
|
535
867
|
$-search-side-padding: var(--wot-search-side-padding, $-size-side-padding) !default; // 左右间距
|
|
536
|
-
$-search-padding: var(
|
|
868
|
+
$-search-padding: var(
|
|
869
|
+
--wot-search-padding,
|
|
870
|
+
10px 0 10px $-search-side-padding
|
|
871
|
+
) !default; // 不包含取消按钮的间距
|
|
537
872
|
$-search-input-radius: var(--wot-search-input-radius, 15px) !default; // 输入框圆角大小
|
|
538
873
|
$-search-input-bg: var(--wot-search-input-bg, $-color-bg) !default; // 输入框背景色
|
|
539
874
|
$-search-input-height: var(--wot-search-input-height, 30px) !default; // 输入框高度
|
|
@@ -543,8 +878,14 @@ $-search-input-color: var(--wot-search-input-color, #262626) !default; // 输入
|
|
|
543
878
|
$-search-icon-color: var(--wot-search-icon-color, $-color-icon) !default; // 图标颜色
|
|
544
879
|
$-search-icon-size: var(--wot-search-icon-size, 18px) !default; // 图标大小
|
|
545
880
|
$-search-clear-icon-size: var(--wot-search-clear-icon-size, $-fs-title) !default; // 清除图标大小
|
|
546
|
-
$-search-placeholder-color: var(
|
|
547
|
-
|
|
881
|
+
$-search-placeholder-color: var(
|
|
882
|
+
--wot-search-placeholder-color,
|
|
883
|
+
#bfbfbf
|
|
884
|
+
) !default; // placeholder 颜色
|
|
885
|
+
$-search-cancel-padding: var(
|
|
886
|
+
--wot-search-cancel-padding,
|
|
887
|
+
0 $-search-side-padding 0 10px
|
|
888
|
+
) !default; // 取消按钮间距
|
|
548
889
|
$-search-cancel-fs: var(--wot-search-cancel-fs, $-fs-title) !default; // 取消按钮字号
|
|
549
890
|
$-search-cancel-color: var(--wot-search-cancel-color, rgba(0, 0, 0, 0.65)) !default; // 取消按钮颜色
|
|
550
891
|
$-search-light-bg: var(--wot-search-light-bg, $-color-bg) !default; // light 类型的容器背景色
|
|
@@ -552,7 +893,10 @@ $-search-light-bg: var(--wot-search-light-bg, $-color-bg) !default; // light 类
|
|
|
552
893
|
/* slider */
|
|
553
894
|
$-slider-fs: var(--wot-slider-fs, $-fs-content) !default; // 字体大小
|
|
554
895
|
$-slider-handle-radius: var(--wot-slider-handle-radius, 12px) !default; // 滑块半径
|
|
555
|
-
$-slider-handle-bg: var(
|
|
896
|
+
$-slider-handle-bg: var(
|
|
897
|
+
--wot-slider-handle-bg,
|
|
898
|
+
resultColor(139deg, $-color-theme, 'dark' 'light', #ffffff #f7f7f7, 0% 100%)
|
|
899
|
+
) !default; // 滑块背景
|
|
556
900
|
$-slider-axie-height: var(--wot-slider-axie-height, 3px) !default; // 滑轴高度
|
|
557
901
|
$-slider-color: var(--wot-slider-color, #333) !default; // 字体颜色
|
|
558
902
|
$-slider-axie-bg: var(--wot-slider-axie-bg, #e5e5e5) !default; // 滑轴的默认背景色
|
|
@@ -560,7 +904,10 @@ $-slider-line-color: var(
|
|
|
560
904
|
--wot-slider-line-color,
|
|
561
905
|
resultColor(315deg, $-color-theme, 'dark' 'light', #517cf0 #769ef5, 0% 100%)
|
|
562
906
|
) !default; // 进度条颜色
|
|
563
|
-
$-slider-disabled-color: var(
|
|
907
|
+
$-slider-disabled-color: var(
|
|
908
|
+
--wot-slider-disabled-color,
|
|
909
|
+
rgba(0, 0, 0, 0.25)
|
|
910
|
+
) !default; // 禁用状态下字体颜色
|
|
564
911
|
|
|
565
912
|
/* sort-button */
|
|
566
913
|
$-sort-button-fs: var(--wot-sort-button-fs, $-fs-content) !default; // 字号
|
|
@@ -571,15 +918,24 @@ $-sort-button-line-color: var(--wot-sort-button-line-color, $-color-theme) !defa
|
|
|
571
918
|
|
|
572
919
|
/* steps */
|
|
573
920
|
$-steps-icon-size: var(--wot-steps-icon-size, 22px) !default; // 图标尺寸
|
|
574
|
-
$-steps-inactive-color: var(
|
|
921
|
+
$-steps-inactive-color: var(
|
|
922
|
+
--wot-steps-inactive-color,
|
|
923
|
+
rgba(0, 0, 0, 0.25)
|
|
924
|
+
) !default; // 等待状态文字颜色
|
|
575
925
|
$-steps-finished-color: var(--wot-steps-finished-color, $-color-theme) !default; // 完成文字颜色
|
|
576
926
|
$-steps-icon-text-fs: var(--wot-steps-icon-text-fs, $-fs-content) !default; // 数字图标文字字号
|
|
577
927
|
$-steps-error-color: var(--wot-steps-error-color, $-color-danger) !default; // 异常颜色
|
|
578
928
|
$-steps-title-fs: var(--wot-steps-title-fs, $-fs-content) !default; // 标题字号
|
|
579
929
|
$-steps-title-fw: var(--wot-steps-title-fw, $-fw-medium) !default; // 标题字重
|
|
580
930
|
$-steps-label-fs: var(--wot-steps-label-fs, $-fs-secondary) !default; // 描述信息字号
|
|
581
|
-
$-steps-description-color: var(
|
|
582
|
-
|
|
931
|
+
$-steps-description-color: var(
|
|
932
|
+
--wot-steps-description-color,
|
|
933
|
+
rgba(0, 0, 0, 0.45)
|
|
934
|
+
) !default; // 描述信息颜色
|
|
935
|
+
$-steps-is-icon-width: var(
|
|
936
|
+
--wot-steps-is-icon-width,
|
|
937
|
+
30px
|
|
938
|
+
) !default; // 自定义图标的宽度,给左右留白
|
|
583
939
|
$-steps-line-color: var(--wot-steps-line-color, rgba(0, 0, 0, 0.15)) !default; // 线条颜色
|
|
584
940
|
$-steps-dot-size: var(--wot-steps-dot-size, 7px) !default; // 点状大小
|
|
585
941
|
$-steps-dot-active-size: var(--wot-steps-dot-active-size, 9px) !default; // 点状高亮大小
|
|
@@ -591,9 +947,15 @@ $-switch-height: var(--wot-switch-height, calc(1em + 4px)) !default; // 高度
|
|
|
591
947
|
$-switch-circle-size: var(--wot-switch-circle-size, 1em) !default; // 圆点大小
|
|
592
948
|
$-switch-border-color: var(--wot-switch-border-color, #e5e5e5) !default; // 边框颜色选中状态背景颜色
|
|
593
949
|
$-switch-active-color: var(--wot-switch-active-color, $-color-theme) !default; // 选中状态背景
|
|
594
|
-
$-switch-active-shadow-color: var(
|
|
950
|
+
$-switch-active-shadow-color: var(
|
|
951
|
+
--wot-switch-active-shadow-color,
|
|
952
|
+
rgba(0, 83, 162, 0.5)
|
|
953
|
+
) !default; // 选中状态shadow颜色
|
|
595
954
|
$-switch-inactive-color: var(--wot-switch-inactive-color, #eaeaea) !default; // 非选中背景颜色
|
|
596
|
-
$-switch-inactive-shadow-color: var(
|
|
955
|
+
$-switch-inactive-shadow-color: var(
|
|
956
|
+
--wot-switch-inactive-shadow-color,
|
|
957
|
+
rgba(155, 155, 155, 0.5)
|
|
958
|
+
) !default; // 非选中状态shadow颜色
|
|
597
959
|
|
|
598
960
|
/* tabs */
|
|
599
961
|
$-tabs-nav-arrow-fs: var(--wot-tabs-nav-arrow-fs, 18px) !default; // 全部Icon字号
|
|
@@ -604,20 +966,38 @@ $-tabs-nav-fs: var(--wot-tabs-nav-fs, $-fs-content) !default; // 头部切换文
|
|
|
604
966
|
$-tabs-nav-color: var(--wot-tabs-nav-color, rgba(0, 0, 0, 0.85)) !default; // 头部切换文字颜色
|
|
605
967
|
$-tabs-nav-bg: var(--wot-tabs-nav-bg, $-color-white) !default; // 背景颜色
|
|
606
968
|
$-tabs-nav-active-color: var(--wot-tabs-nav-active-color, $-color-theme) !default; // 头部高亮颜色
|
|
607
|
-
$-tabs-nav-disabled-color: var(
|
|
969
|
+
$-tabs-nav-disabled-color: var(
|
|
970
|
+
--wot-tabs-nav-disabled-color,
|
|
971
|
+
rgba(0, 0, 0, 0.25)
|
|
972
|
+
) !default; // 头部禁用颜色
|
|
608
973
|
$-tabs-nav-line-height: var(--wot-tabs-nav-line-height, 3px) !default; // 高亮边框高度
|
|
609
974
|
$-tabs-nav-line-width: var(--wot-tabs-nav-line-width, 19px) !default; // 高亮边框宽度
|
|
610
975
|
$-tabs-nav-line-bg-color: var(--wot-tabs-nav-line-bg-color, $-color-theme) !default; // 底部条颜色
|
|
611
976
|
$-tabs-nav-map-fs: var(--wot-tabs-nav-map-fs, $-fs-content) !default; // map 类型按钮字号
|
|
612
|
-
$-tabs-nav-map-color: var(
|
|
613
|
-
|
|
977
|
+
$-tabs-nav-map-color: var(
|
|
978
|
+
--wot-tabs-nav-map-color,
|
|
979
|
+
rgba(0, 0, 0, 0.85)
|
|
980
|
+
) !default; // map 类型按钮文字颜色
|
|
981
|
+
$-tabs-nav-map-arrow-color: var(
|
|
982
|
+
--wot-tabs-nav-map-arrow-color,
|
|
983
|
+
rgba(0, 0, 0, 0.65)
|
|
984
|
+
) !default; // map 类型箭头颜色
|
|
614
985
|
$-tabs-nav-map-btn-before-bg: var(
|
|
615
986
|
--wot-tabs-nav-map-btn-before-bg,
|
|
616
987
|
linear-gradient(270deg, rgba(255, 255, 255, 1) 1%, rgba(255, 255, 255, 0) 100%)
|
|
617
988
|
) !default; // 左侧map遮罩阴影
|
|
618
|
-
$-tabs-nav-map-button-back-color: var(
|
|
619
|
-
|
|
620
|
-
|
|
989
|
+
$-tabs-nav-map-button-back-color: var(
|
|
990
|
+
--wot-tabs-nav-map-button-back-color,
|
|
991
|
+
rgba(0, 0, 0, 0.04)
|
|
992
|
+
) !default; // map 类型按钮边框颜色
|
|
993
|
+
$-tabs-nav-map-button-radius: var(
|
|
994
|
+
--wot-tabs-nav-map-button-radius,
|
|
995
|
+
16px
|
|
996
|
+
) !default; // map 类型按钮圆角大小
|
|
997
|
+
$-tabs-nav-map-modal-bg: var(
|
|
998
|
+
--wot-tabs-nav-map-modal-bg,
|
|
999
|
+
$-overlay-bg
|
|
1000
|
+
) !default; // map 类型蒙层背景色
|
|
621
1001
|
|
|
622
1002
|
/* tag */
|
|
623
1003
|
$-tag-fs: var(--wot-tag-fs, $-fs-secondary) !default; // 字号
|
|
@@ -628,18 +1008,27 @@ $-tag-primary-color: var(--wot-tag-primary-color, $-color-theme) !default; //
|
|
|
628
1008
|
$-tag-danger-color: var(--wot-tag-danger-color, $-color-danger) !default; // danger 颜色
|
|
629
1009
|
$-tag-warning-color: var(--wot-tag-warning-color, $-color-warning) !default; // warning 颜色
|
|
630
1010
|
$-tag-success-color: var(--wot-tag-success-color, $-color-success) !default; // success 颜色
|
|
631
|
-
$-tag-info-bg: var(
|
|
1011
|
+
$-tag-info-bg: var(
|
|
1012
|
+
--wot-tag-info-bg,
|
|
1013
|
+
resultColor(49deg, $-color-black, 'dark' 'light', #808080 #999999, 0% 100%)
|
|
1014
|
+
) !default; // info 背景颜色
|
|
632
1015
|
$-tag-primary-bg: var(--wot-tag-primary-bg, $-color-theme) !default; // 主背景颜色
|
|
633
1016
|
$-tag-danger-bg: var(--wot-tag-danger-bg, $-color-danger) !default; // danger 背景颜色
|
|
634
1017
|
$-tag-warning-bg: var(--wot-tag-warning-bg, $-color-warning) !default; // warning 背景颜色
|
|
635
1018
|
$-tag-success-bg: var(--wot-tag-success-bg, $-color-success) !default; // success 背景颜色
|
|
636
1019
|
$-tag-round-color: var(--wot-tag-round-color, rgba(102, 102, 102, 1)) !default; // round 字体颜色
|
|
637
|
-
$-tag-round-border-color: var(
|
|
1020
|
+
$-tag-round-border-color: var(
|
|
1021
|
+
--wot-tag-round-border-color,
|
|
1022
|
+
rgba(225, 225, 225, 1)
|
|
1023
|
+
) !default; // round 边框颜色
|
|
638
1024
|
$-tag-round-radius: var(--wot-tag-round-radius, 12px) !default; // round 圆角大小
|
|
639
1025
|
$-tag-mark-radius: var(--wot-tag-mark-radius, 6px 2px 6px 2px) !default; // mark 圆角大小
|
|
640
1026
|
$-tag-close-size: var(--wot-tag-close-size, 14px) !default; // 关闭按钮字号
|
|
641
1027
|
$-tag-close-color: var(--wot-tag-close-color, $-tag-info-color) !default; // 关闭按钮颜色
|
|
642
|
-
$-tag-close-active-color: var(
|
|
1028
|
+
$-tag-close-active-color: var(
|
|
1029
|
+
--wot-tag-close-active-color,
|
|
1030
|
+
rgba(0, 0, 0, 0.45)
|
|
1031
|
+
) !default; // 关闭按钮 active 颜色
|
|
643
1032
|
|
|
644
1033
|
/* toast */
|
|
645
1034
|
$-toast-color: var(--wot-toast-color, $-color-white) !default; // 文字颜色
|
|
@@ -649,13 +1038,22 @@ $-toast-radius: var(--wot-toast-radius, 8px) !default; // 圆角大小
|
|
|
649
1038
|
$-toast-bg: var(--wot-toast-bg, $-overlay-bg) !default; // 背景色
|
|
650
1039
|
$-toast-fs: var(--wot-toast-fs, $-fs-content) !default; // 字号
|
|
651
1040
|
$-toast-line-height: var(--wot-toast-line-height, 20px) !default; // 行高
|
|
652
|
-
$-toast-with-icon-min-width: var(
|
|
1041
|
+
$-toast-with-icon-min-width: var(
|
|
1042
|
+
--wot-toast-with-icon-min-width,
|
|
1043
|
+
150px
|
|
1044
|
+
) !default; // 有图标的情况下最小宽度
|
|
653
1045
|
$-toast-icon-size: var(--wot-toast-icon-size, 32px) !default; // 图标大小
|
|
654
1046
|
$-toast-msg-margin-left: var(--wot-toast-msg-margin-left, 12px) !default; // 消息内容左边距
|
|
655
1047
|
$-toast-icon-margin-bottom: var(--wot-toast-icon-margin-bottom, 12px) !default; // 图标下边距
|
|
656
1048
|
$-toast-loading-padding: var(--wot-toast-loading-padding, 10px) !default; // loading状态下的padding
|
|
657
|
-
$-toast-loading-margin-bottom: var(
|
|
658
|
-
|
|
1049
|
+
$-toast-loading-margin-bottom: var(
|
|
1050
|
+
--wot-toast-loading-margin-bottom,
|
|
1051
|
+
16px
|
|
1052
|
+
) !default; // loading动画的margin-bottom
|
|
1053
|
+
$-toast-box-shadow: var(
|
|
1054
|
+
--wot-toast-box-shadow,
|
|
1055
|
+
0px 6px 16px 0px rgba(0, 0, 0, 0.08)
|
|
1056
|
+
) !default; // 外部阴影
|
|
659
1057
|
|
|
660
1058
|
/* loading */
|
|
661
1059
|
$-loading-size: var(--wot-loading-size, 32px) !default; // loading 大小
|
|
@@ -675,8 +1073,14 @@ $-tooltip-line-height: var(--wot-tooltip-line-height, 18px) !default; // 行高
|
|
|
675
1073
|
/* popover */
|
|
676
1074
|
$-popover-bg: var(--wot-popover-bg, $-color-white) !default; // 背景色
|
|
677
1075
|
$-popover-color: var(--wot-popover-color, rgba(0, 0, 0, 0.85)) !default; // 文字颜色
|
|
678
|
-
$-popover-box-shadow: var(
|
|
679
|
-
|
|
1076
|
+
$-popover-box-shadow: var(
|
|
1077
|
+
--wot-popover-box-shadow,
|
|
1078
|
+
0px 2px 10px 0px rgba(0, 0, 0, 0.1)
|
|
1079
|
+
) !default; // 阴影颜色
|
|
1080
|
+
$-popover-arrow-box-shadow: var(
|
|
1081
|
+
--wot-popover-arrow-box-shadow,
|
|
1082
|
+
0px 2px 10px 0px rgba(0, 0, 0, 0.2)
|
|
1083
|
+
) !default; // 阴影颜色
|
|
680
1084
|
$-popover-border-color: var(--wot-popover-border-color, rgba(0, 0, 0, 0.09)) !default; // 阴影颜色
|
|
681
1085
|
$-popover-radius: var(--wot-popover-radius, 4px) !default; // 圆角大小
|
|
682
1086
|
$-popover-arrow-size: var(--wot-popover-arrow-size, 6px) !default; // 箭头大小
|
|
@@ -689,9 +1093,15 @@ $-popover-z-index: var(--wot-popover-z-index, $-tooltip-z-index) !default;
|
|
|
689
1093
|
$-grid-item-fs: var(--wot-grid-item-fs, 12px) !default; // 字号
|
|
690
1094
|
$-grid-item-bg: var(--wot-grid-item-bg, $-color-white) !default; // 字号
|
|
691
1095
|
$-grid-item-padding: var(--wot-grid-item-padding, 14px 0px) !default; // 内容的 padding
|
|
692
|
-
$-grid-item-border-color: var(
|
|
1096
|
+
$-grid-item-border-color: var(
|
|
1097
|
+
--wot-grid-item-border-color,
|
|
1098
|
+
$-color-border-light
|
|
1099
|
+
) !default; // 边框颜色
|
|
693
1100
|
$-grid-item-hover-bg: var(--wot-grid-item-hover-bg, $-color-gray-3) !default; // hover背景色
|
|
694
|
-
$-grid-item-hover-bg-dark: var(
|
|
1101
|
+
$-grid-item-hover-bg-dark: var(
|
|
1102
|
+
--wot-grid-item-hover-bg-dark,
|
|
1103
|
+
$-color-gray-7
|
|
1104
|
+
) !default; // 暗黑模式hover背景色
|
|
695
1105
|
|
|
696
1106
|
/* statustip */
|
|
697
1107
|
$-statustip-fs: var(--wot-statustip-fs, $-fs-content) !default; // 字号
|
|
@@ -704,41 +1114,77 @@ $-card-bg: var(--wot-card-bg, $-color-white) !default; // 背景色
|
|
|
704
1114
|
$-card-fs: var(--wot-card-fs, $-fs-content) !default; // 卡片字号
|
|
705
1115
|
$-card-padding: var(--wot-card-padding, 0 $-size-side-padding) !default; // 内边距
|
|
706
1116
|
$-card-footer-padding: var(--wot-card-footer-padding, 12px 0 16px) !default; // 底部内边距
|
|
707
|
-
$-card-shadow-color: var(
|
|
1117
|
+
$-card-shadow-color: var(
|
|
1118
|
+
--wot-card-shadow-color,
|
|
1119
|
+
0px 4px 8px 0px rgba(0, 0, 0, 0.02)
|
|
1120
|
+
) !default; // 阴影
|
|
708
1121
|
$-card-radius: var(--wot-card-radius, 8px) !default; // 圆角大小
|
|
709
1122
|
$-card-line-height: var(--wot-card-line-height, 1.1) !default; // 行高
|
|
710
1123
|
$-card-margin: var(--wot-card-margin, 0 $-size-side-padding) !default; // 外边距
|
|
711
1124
|
$-card-title-color: var(--wot-card-title-color, rgba(0, 0, 0, 0.85)) !default; // 标题颜色
|
|
712
1125
|
$-card-title-fs: var(--wot-card-title-fs, $-fs-title) !default; // 矩形卡片标题字号
|
|
713
|
-
$-card-content-border-color: var(
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
1126
|
+
$-card-content-border-color: var(
|
|
1127
|
+
--wot-card-content-border-color,
|
|
1128
|
+
rgba(0, 0, 0, 0.09)
|
|
1129
|
+
) !default; // 内容边框
|
|
1130
|
+
$-card-rectangle-title-padding: var(
|
|
1131
|
+
--wot-card-rectangle-title-padding,
|
|
1132
|
+
15px 15px 12px
|
|
1133
|
+
) !default; // 矩形卡片头部内边距
|
|
1134
|
+
$-card-rectangle-content-padding: var(
|
|
1135
|
+
--wot-card-rectangle-content-padding,
|
|
1136
|
+
16px 0
|
|
1137
|
+
) !default; // 矩形卡片内容内边距
|
|
1138
|
+
$-card-rectangle-footer-padding: var(
|
|
1139
|
+
--wot-card-rectangle-footer-padding,
|
|
1140
|
+
12px 0
|
|
1141
|
+
) !default; // 矩形卡片底部内边距
|
|
717
1142
|
$-card-content-color: var(--wot-card-content-color, rgba(0, 0, 0, 0.45)) !default; // 文本内容颜色
|
|
718
1143
|
$-card-content-line-height: var(--wot-card-content-line-height, 1.428) !default; // 文本内容行高
|
|
719
1144
|
$-card-content-margin: var(--wot-card-content-margin, 13px 0 12px) !default; // 内容外边距
|
|
720
|
-
$-card-content-rectangle-margin: var(
|
|
1145
|
+
$-card-content-rectangle-margin: var(
|
|
1146
|
+
--wot-card-content-rectangle-margin,
|
|
1147
|
+
14px 0 12px
|
|
1148
|
+
) !default; // 矩形卡片内容外边距
|
|
721
1149
|
|
|
722
1150
|
/* upload */
|
|
723
1151
|
$-upload-size: var(--wot-upload-size, 80px) !default; // upload的外边框默认尺寸
|
|
724
1152
|
$-upload-evoke-icon-size: var(--wot-upload-evoke-icon-size, 32px) !default; // 唤起项的图标大小
|
|
725
1153
|
$-upload-evoke-bg: var(--wot-upload-evoke-bg, rgba(0, 0, 0, 0.04)) !default; // 唤起项的背景色
|
|
726
|
-
$-upload-evoke-color: var(
|
|
727
|
-
|
|
1154
|
+
$-upload-evoke-color: var(
|
|
1155
|
+
--wot-upload-evoke-color,
|
|
1156
|
+
rgba(0, 0, 0, 0.25)
|
|
1157
|
+
) !default; // 唤起项的图标颜色
|
|
1158
|
+
$-upload-evoke-disabled-color: var(
|
|
1159
|
+
--wot-upload-evoke-disabled-color,
|
|
1160
|
+
rgba(0, 0, 0, 0.09)
|
|
1161
|
+
) !default; // 唤起项禁用颜色
|
|
728
1162
|
$-upload-close-icon-size: var(--wot-upload-close-icon-size, 16px) !default; // 移除按钮尺寸
|
|
729
|
-
$-upload-close-icon-color: var(
|
|
1163
|
+
$-upload-close-icon-color: var(
|
|
1164
|
+
--wot-upload-close-icon-color,
|
|
1165
|
+
rgba(0, 0, 0, 0.65)
|
|
1166
|
+
) !default; // 移除按钮颜色
|
|
730
1167
|
$-upload-progress-fs: var(--wot-upload-progress-fs, 14px) !default; // 进度文字字号
|
|
731
1168
|
$-upload-file-fs: var(--wot-upload-file-fs, 12px) !default; // 文件名字号
|
|
732
1169
|
$-upload-file-color: var(--wot-upload-file-color, $-color-secondary) !default; // 文件名字颜色
|
|
733
1170
|
$-upload-preview-name-fs: var(--wot-upload-preview-name-fs, 12px) !default; // 预览图片名字号
|
|
734
1171
|
$-upload-preview-icon-size: var(--wot-upload-preview-icon-size, 24px) !default; // 预览内部图标尺寸
|
|
735
|
-
$-upload-preview-name-bg: var(
|
|
736
|
-
|
|
1172
|
+
$-upload-preview-name-bg: var(
|
|
1173
|
+
--wot-upload-preview-name-bg,
|
|
1174
|
+
rgba(0, 0, 0, 0.6)
|
|
1175
|
+
) !default; // 预览文件名背景色
|
|
1176
|
+
$-upload-preview-name-height: var(
|
|
1177
|
+
--wot-upload-preview-name-height,
|
|
1178
|
+
22px
|
|
1179
|
+
) !default; // 预览文件名背景高度
|
|
737
1180
|
$-upload-cover-icon-size: var(--wot-upload-cover-icon-size, 22px) !default; // 视频/文件图标尺寸
|
|
738
1181
|
|
|
739
1182
|
/* curtain */
|
|
740
1183
|
$-curtain-content-radius: var(--wot-curtain-content-radius, 24px) !default; // 内容圆角
|
|
741
|
-
$-curtain-content-close-color: var(
|
|
1184
|
+
$-curtain-content-close-color: var(
|
|
1185
|
+
--wot-curtain-content-close-color,
|
|
1186
|
+
$-color-white
|
|
1187
|
+
) !default; // 关闭按钮颜色
|
|
742
1188
|
$-curtain-content-close-fs: var(--wot-curtain-content-close-fs, $-fs-big) !default; // 关闭按钮大小
|
|
743
1189
|
|
|
744
1190
|
/* notify */
|
|
@@ -754,7 +1200,10 @@ $-notify-warning-background: var(--wot-notify-warning-background, $-color-warnin
|
|
|
754
1200
|
/* skeleton */
|
|
755
1201
|
$-skeleton-background-color: var(--wot-skeleton-background-color, #eee) !default;
|
|
756
1202
|
$-skeleton-animation-gradient: var(--wot-skeleton-animation-gradient, rgba(0, 0, 0, 0.04)) !default;
|
|
757
|
-
$-skeleton-animation-flashed: var(
|
|
1203
|
+
$-skeleton-animation-flashed: var(
|
|
1204
|
+
--wot-skeleton-animation-flashed,
|
|
1205
|
+
rgba(230, 230, 230, 0.3)
|
|
1206
|
+
) !default;
|
|
758
1207
|
$-skeleton-text-height-default: var(--wot-skeleton-text-height-default, 16px) !default;
|
|
759
1208
|
$-skeleton-rect-height-default: var(--wot-skeleton-rect-height-default, 16px) !default;
|
|
760
1209
|
$-skeleton-circle-height-default: var(--wot-skeleton-circle-height-default, 48px) !default;
|
|
@@ -772,7 +1221,6 @@ $-swiper-item-padding: var(--wot-swiper-item-padding, 0);
|
|
|
772
1221
|
$-swiper-item-text-color: var(--wot-swiper-item-text-color, #ffffff);
|
|
773
1222
|
$-swiper-item-text-fs: var(--wot-swiper-item-text-fs, $-fs-title);
|
|
774
1223
|
|
|
775
|
-
|
|
776
1224
|
/* swiper-nav */
|
|
777
1225
|
// dot & dots-bar
|
|
778
1226
|
$-swiper-nav-dot-color: var(--wot-swiper-nav-dot-color, $-font-white-2) !default;
|
|
@@ -792,9 +1240,15 @@ $-swiper-nav-btn-size: var(--wot-swiper-nav-btn-size, 48rpx) !default;
|
|
|
792
1240
|
/* segmented */
|
|
793
1241
|
$-segmented-padding: var(--wot-segmented-padding, 4px) !default; // 分段器padding
|
|
794
1242
|
$-segmented-item-bg-color: var(--wot-segmented-item-bg-color, #eeeeee) !default;
|
|
795
|
-
$-segmented-item-color: var(
|
|
1243
|
+
$-segmented-item-color: var(
|
|
1244
|
+
--wot-segmented-item-color,
|
|
1245
|
+
rgba(0, 0, 0, 0.85)
|
|
1246
|
+
) !default; // 标题文字颜色
|
|
796
1247
|
$-segmented-item-acitve-bg: var(--wot-segmented-item-acitve-bg, #ffffff) !default; // 标题文字颜色
|
|
797
|
-
$-segmented-item-disabled-color: var(
|
|
1248
|
+
$-segmented-item-disabled-color: var(
|
|
1249
|
+
--wot-segmented-item-disabled-color,
|
|
1250
|
+
rgba(0, 0, 0, 0.25)
|
|
1251
|
+
) !default; // 标题文字禁用颜色
|
|
798
1252
|
|
|
799
1253
|
/* tabbar */
|
|
800
1254
|
$-tabbar-height: var(--wot-tabbar-height, 50px) !default;
|
|
@@ -806,9 +1260,18 @@ $-tabbar-box-shadow: var(
|
|
|
806
1260
|
) !default; // round类型tabbar阴影
|
|
807
1261
|
|
|
808
1262
|
/* tabbar-item */
|
|
809
|
-
$-tabbar-item-title-font-size: var(
|
|
810
|
-
|
|
811
|
-
|
|
1263
|
+
$-tabbar-item-title-font-size: var(
|
|
1264
|
+
--wot-tabbar-item-title-font-size,
|
|
1265
|
+
10px
|
|
1266
|
+
) !default; // tabbar选项文字大小
|
|
1267
|
+
$-tabbar-item-title-line-height: var(
|
|
1268
|
+
--wot-tabbar-item-title-line-height,
|
|
1269
|
+
initial
|
|
1270
|
+
) !default; // tabbar选项标题文字行高
|
|
1271
|
+
$-tabbar-inactive-color: var(
|
|
1272
|
+
--wot-tabbar-inactive-color,
|
|
1273
|
+
$-color-title
|
|
1274
|
+
) !default; // 标题文字和图标颜色
|
|
812
1275
|
$-tabbar-active-color: var(--wot-tabbar-active-color, $-color-theme) !default; // 选中文字和图标颜色
|
|
813
1276
|
$-tabbar-item-icon-size: var(--wot-tabbar-item-icon-size, 20px) !default; // tabbar选项图标大小
|
|
814
1277
|
|
|
@@ -818,10 +1281,16 @@ $-navbar-color: var(--wot-navbar-color, $-font-gray-1) !default; // navbar字体
|
|
|
818
1281
|
$-navbar-background: var(--wot-navbar-background, $-color-white) !default; // navbar背景颜色
|
|
819
1282
|
$-navbar-arrow-size: var(--wot-navbar-arrow-size, 24px) !default; // navbar左箭头图标大小
|
|
820
1283
|
$-navbar-desc-font-size: var(--wot-navbar-desc-font-size, 16px); // navbar 左箭头字体大小
|
|
821
|
-
$-navbar-desc-font-color: var(
|
|
1284
|
+
$-navbar-desc-font-color: var(
|
|
1285
|
+
--wot-navbar-desc-font-color,
|
|
1286
|
+
$-font-gray-1
|
|
1287
|
+
) !default; // navbar左右两侧字体颜色
|
|
822
1288
|
$-navbar-title-font-size: var(--wot-navbar-title-font-size, 18px); // navbar title字体大小
|
|
823
1289
|
$-navbar-title-font-weight: var(--wot-navbar-title-font-weight, 600); // navbar title字重
|
|
824
|
-
$-navbar-disabled-opacity: var(
|
|
1290
|
+
$-navbar-disabled-opacity: var(
|
|
1291
|
+
--wot-navbar-disabled-opacity,
|
|
1292
|
+
0.6
|
|
1293
|
+
) !default; // navbar左右两侧字体禁用
|
|
825
1294
|
$-navbar-hover-color: var(--wot-navbar-hover-color, #eee) !default; // navbar hover样式
|
|
826
1295
|
|
|
827
1296
|
/* navbar-capsule */
|
|
@@ -829,7 +1298,10 @@ $-navbar-capsule-border-color: var(--wot-navbar-capsule-border-color, #e7e7e7) !
|
|
|
829
1298
|
$-navbar-capsule-border-radius: var(--wot-navbar-capsule-border-radius, 16px) !default;
|
|
830
1299
|
$-navbar-capsule-width: var(--wot-navbar-capsule-width, 88px) !default;
|
|
831
1300
|
$-navbar-capsule-height: var(--wot-navbar-capsule-height, 32px) !default;
|
|
832
|
-
$-navbar-capsule-icon-size: var(
|
|
1301
|
+
$-navbar-capsule-icon-size: var(
|
|
1302
|
+
--wot-navbar-capsule-icon-size,
|
|
1303
|
+
20px
|
|
1304
|
+
) !default; // navbar capsule图标大小
|
|
833
1305
|
|
|
834
1306
|
/* table */
|
|
835
1307
|
$-table-color: var(--wot-table-color, $-font-gray-1) !default; // 表格字体颜色
|
|
@@ -893,10 +1365,22 @@ $-number-keyboard-key-font-size: var(--wot-number-keyboard-key-font-size, 28px)
|
|
|
893
1365
|
$-number-keyboard-key-background: var(--wot-number-keyboard-key-background, $-color-white) !default;
|
|
894
1366
|
$-number-keyboard-key-border-radius: var(--wot-number-keyboard-key-border-radius, 8px) !default;
|
|
895
1367
|
$-number-keyboard-delete-font-size: var(--wot-number-keyboard-delete-font-size, 16px) !default;
|
|
896
|
-
$-number-keyboard-key-active-color: var(
|
|
897
|
-
|
|
898
|
-
$-
|
|
899
|
-
|
|
1368
|
+
$-number-keyboard-key-active-color: var(
|
|
1369
|
+
--wot-number-keyboard-key-active-color,
|
|
1370
|
+
$-color-gray-3
|
|
1371
|
+
) !default;
|
|
1372
|
+
$-number-keyboard-button-text-color: var(
|
|
1373
|
+
--wot-number-keyboard-button-text-color,
|
|
1374
|
+
$-color-white
|
|
1375
|
+
) !default;
|
|
1376
|
+
$-number-keyboard-button-background: var(
|
|
1377
|
+
--wot-number-keyboard--button-background,
|
|
1378
|
+
$-color-theme
|
|
1379
|
+
) !default;
|
|
1380
|
+
$-number-keyboard-button-active-opacity: var(
|
|
1381
|
+
--wot-number-keyboard-button-active-opacity,
|
|
1382
|
+
0.6
|
|
1383
|
+
) !default;
|
|
900
1384
|
$-number-keyboard-background: var(--wot-number-keyboard-background, $-color-gray-2) !default;
|
|
901
1385
|
$-number-keyboard-title-height: var(--wot-number-keyboard-title-height, 34px) !default;
|
|
902
1386
|
$-number-keyboard-title-color: var(--wot-number-keyboard-title-color, $-color-gray-7) !default;
|
|
@@ -926,8 +1410,14 @@ $-password-input-cursor-duration: var(--wot-password-input-cursor-duration, 1s);
|
|
|
926
1410
|
|
|
927
1411
|
/* form-item */
|
|
928
1412
|
$-form-item-error-message-color: var(--wot-form-item-error-message-color, $-color-danger) !default;
|
|
929
|
-
$-form-item-error-message-font-size: var(
|
|
930
|
-
|
|
1413
|
+
$-form-item-error-message-font-size: var(
|
|
1414
|
+
--wot-form-item-error-message-font-size,
|
|
1415
|
+
$-fs-secondary
|
|
1416
|
+
) !default;
|
|
1417
|
+
$-form-item-error-message-line-height: var(
|
|
1418
|
+
--wot-form-item-error-message-line-height,
|
|
1419
|
+
24px
|
|
1420
|
+
) !default;
|
|
931
1421
|
|
|
932
1422
|
/* backtop */
|
|
933
1423
|
$-backtop-bg: var(--wot-backtop-bg, #e1e1e1) !default;
|
|
@@ -946,7 +1436,10 @@ $-text-success-color: var(--wot-text-success-color, $-color-success) !default;
|
|
|
946
1436
|
/* video-preview */
|
|
947
1437
|
$-video-preview-bg: var(--wot-video-preview-bg, rgba(0, 0, 0, 0.8)) !default; // 背景色
|
|
948
1438
|
$-video-preview-close-color: var(--wot-video-preview-close-color, #fff) !default; // 图标颜色
|
|
949
|
-
$-video-preview-close-font-size: var(
|
|
1439
|
+
$-video-preview-close-font-size: var(
|
|
1440
|
+
--wot-video-preview-close-font-size,
|
|
1441
|
+
20px
|
|
1442
|
+
) !default; // 图标大小
|
|
950
1443
|
|
|
951
1444
|
/* img-cropper */
|
|
952
1445
|
$-img-cropper-icon-size: var(--wot-img-cropper-icon-size, $-fs-big) !default; // 图标大小
|
|
@@ -961,14 +1454,20 @@ $-floating-panel-bar-width: var(--wot-floating-panel-bar-width, 20px) !default;
|
|
|
961
1454
|
$-floating-panel-bar-height: var(--wot-floating-panel-bar-height, 3px) !default; // bar 高度
|
|
962
1455
|
$-floating-panel-bar-bg: var(--wot-floating-panel-bar-bg, $-color-gray-5) !default; // bar 背景色
|
|
963
1456
|
$-floating-panel-bar-radius: var(--wot-floating-panel-bar-radius, 4px) !default; // bar 圆角
|
|
964
|
-
$-floating-panel-content-bg: var(
|
|
1457
|
+
$-floating-panel-content-bg: var(
|
|
1458
|
+
--wot-floating-panel-content-bg,
|
|
1459
|
+
$-color-white
|
|
1460
|
+
) !default; // 内容背景色
|
|
965
1461
|
|
|
966
1462
|
/* signature */
|
|
967
1463
|
$-signature-bg: var(--wot-signature-bg, $-color-white) !default; // 背景色
|
|
968
1464
|
$-signature-radius: var(--wot-signature-radius, 4px) !default; // 圆角
|
|
969
1465
|
$-signature-border: var(--wot-signature-border, 1px solid $-color-gray-5) !default; // 边框圆角
|
|
970
|
-
$-signature-footer-margin-top: var(
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
1466
|
+
$-signature-footer-margin-top: var(
|
|
1467
|
+
--wot-signature-footer-margin-top,
|
|
1468
|
+
8px
|
|
1469
|
+
) !default; // 底部按钮上边距
|
|
1470
|
+
$-signature-button-margin-left: var(
|
|
1471
|
+
--wot-signature-button-margin-left,
|
|
1472
|
+
8px
|
|
1473
|
+
) !default; // 底部按钮左边距
|