@lambo-design/shared 1.0.0-beta.84 → 1.0.0-beta.86

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.
@@ -0,0 +1,638 @@
1
+ @primary-color :#306BE3;
2
+ @primary-color-tint-20 : tint(@primary-color,20%);
3
+ @primary-color-tint-90 : tint(@primary-color,90%);
4
+ @primary-color-tint-80 : tint(@primary-color,80%);
5
+ @primary-color-tint-5 : tint(@primary-color,5%);
6
+ @primary-color-tint-95-fade-50 : fade(tint(@primary-color, 95%), 50%);
7
+ @primary-color-fade-20 : fade(@primary-color, 20%);
8
+ @primary-color-shade-5 : shade(@primary-color, 5%);
9
+
10
+
11
+ @info-color : #2db7f5;
12
+ @info-color-tint-20 : tint(@info-color,20%);
13
+ @info-color-tint-90 : tint(@info-color,90%);
14
+ @info-color-tint-80 : tint(@info-color,80%);
15
+ @info-color-tint-5 : tint(@info-color,5%);
16
+ @info-color-tint-95-fade-50 : fade(tint(@info-color,95%),50%);
17
+ @info-color-fade-20 : fade(@info-color, 20%);
18
+ @info-color-shade-5 : shade(@info-color, 5%);
19
+
20
+
21
+ @success-color : #19be6b;
22
+ @success-color-tint-20 : tint(@success-color,20%);
23
+ @success-color-tint-90 : tint(@success-color,90%);
24
+ @success-color-tint-80 : tint(@success-color,80%);
25
+ @success-color-tint-5 : tint(@success-color, 5%);
26
+ @success-color-tint-95-fade-50 : fade(tint(@success-color, 95%), 50%);
27
+ @success-color-fade-20 : fade(@success-color, 20%);
28
+ @success-color-shade-5 : shade(@success-color, 5%);
29
+
30
+
31
+ @processing-color : @primary-color;
32
+
33
+
34
+ @warning-color : #ff9900;
35
+ @warning-color-tint-20 : tint(@warning-color,20%);
36
+ @warning-color-tint-90 : tint(@warning-color,90%);
37
+ @warning-color-tint-5 : tint(@warning-color, 5%);
38
+ @warning-color-tint-80 : tint(@warning-color,80%);
39
+ @warning-color-tint-95-fade-50 : fade(tint(@warning-color, 95%), 50%);
40
+ @warning-color-fade-20 : fade(@warning-color, 20%);
41
+ @warning-color-shade-5 : shade(@warning-color, 5%);
42
+
43
+
44
+
45
+ @error-color : #ed4014;
46
+ @error-color-tint-20 : tint(@error-color,20%);
47
+ @error-color-tint-90 : tint(@error-color, 90%);
48
+ @error-color-tint-5 : tint(@error-color, 5%);
49
+ @error-color-tint-80 : tint(@error-color,80%);
50
+ @error-color-tint-95-fade-50 : fade(tint(@error-color, 95%), 50%);
51
+ @error-color-fade-20 : fade(@error-color, 20%);
52
+ @error-color-shade-5 : shade(@error-color, 5%);
53
+
54
+
55
+
56
+
57
+ @normal-color : #e6ebf1;
58
+ @link-color : #2d8cf0;
59
+ @link-hover-color : tint(@link-color, 20%);
60
+ @link-active-color : shade(@link-color, 5%);
61
+ @selected-color : fade(@primary-color, 90%);
62
+ @selected-color-shade-10: shade(@selected-color, 10%);
63
+ @tooltip-color : #fff;
64
+ @subsidiary-color : #808695;
65
+ @rate-star-color : #f5a623;
66
+ @rate-star-color-tint-20: tint(@rate-star-color, 20%);
67
+ @white: #fff;
68
+ @black: #000;
69
+
70
+ // Base
71
+ @body-background : #fff;
72
+ @component-background : #fff;
73
+ @font-family : "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
74
+ @code-family : Consolas,Menlo,Courier,monospace;
75
+ @title-color : rgb(2, 35, 76);
76
+ @text-color : #666666;
77
+ @text-color-secondary: fade(@black, 45%);
78
+ @heading-color: fade(#000, 85%);
79
+ @heading-color-dark: fade(@white, 100%);
80
+ @font-size-base : 14px;
81
+ @font-size-small : 12px;
82
+ @font-size-large : @font-size-base + 2px;
83
+ @line-height-base : 1.5;
84
+ @line-height-computed : floor((@font-size-base * @line-height-base));
85
+ @border-radius-base : 6px;
86
+ @border-radius-small : 2px;
87
+ @cursor-disabled : not-allowed;
88
+
89
+ // vertical paddings
90
+ @padding-lg: 24px; // containers
91
+ @padding-md: 16px; // small containers and buttons
92
+ @padding-sm: 12px; // Form controls and items
93
+ @padding-xs: 8px; // small items
94
+
95
+ // Border color
96
+ @border-color-base : #e0e0e0; // outside
97
+ @border-color-split : #e0e0e0; // inside
98
+ @border-width-base : 1px; // width of the border for a component
99
+ @border-style-base : solid; // style of a components border
100
+
101
+ // Background color
102
+ @background-color-base : #f7f7f7; // base
103
+ @background-color-select-hover: @input-disabled-bg;
104
+ @tooltip-bg : rgba(70, 76, 91, .9);
105
+ @head-bg : #f9fafc;
106
+ @table-thead-bg : #41a5fa;
107
+ @table-td-stripe-bg : #f2fafe;
108
+ @table-td-hover-bg : #eaf4fe;
109
+ @table-td-highlight-bg : #b5def3;
110
+ @menu-dark-title : #306BE3;
111
+ @menu-dark-active-bg : rgb(0, 44, 107);
112
+ @menu-dark-subsidiary-color : rgba(255,255,255,.7);
113
+ @menu-dark-group-title-color : rgba(255,255,255,.36);
114
+ @menu-dark-item-selected-bg: rgb(2, 35, 76);
115
+ @menu-dark-bg: @menu-dark-active-bg ; // 侧边栏背景色
116
+ @menu-dark-item-active-bg: @menu-dark-bg; // 激活的一级菜单背景色
117
+ @menu-dark-submenu-bg: #0E356E; // 二级菜单背景色
118
+ @menu-dark-item-selected-bg: @menu-dark-bg; // 最内部的菜单背景色
119
+ @date-picker-cell-hover-bg : #e1f0fe;
120
+ @menu-item-hover-bg: darken(@menu-dark-bg, 5%); // 鼠标悬停时稍暗一些的颜色
121
+
122
+ // Shadow
123
+ @shadow-color : rgb(2, 35, 76);
124
+ @shadow-base : @shadow-down;
125
+ @shadow-card : 0 1px 1px 0 rgb(14, 53, 110);
126
+ @shadow-up : 0 -1px 6px @shadow-color;
127
+ @shadow-down : 0 1px 6px @shadow-color;
128
+ @shadow-left : -1px 0 6px rgb(2, 35, 76);
129
+ @shadow-right : 1px 0 6px @shadow-color;
130
+
131
+ // Button
132
+ @btn-height-base : 26px;
133
+ @btn-height-large : 32px;
134
+ @btn-height-small : 20px;
135
+
136
+ @btn-padding-base : 0 @padding-md - 1px;
137
+ @btn-padding-large : @btn-padding-base;
138
+ @btn-padding-small : 0 @padding-xs - 1px;
139
+
140
+ @btn-font-weight : normal;
141
+ @btn-padding-base-icon : 5px 15px 6px;
142
+ @btn-padding-large-icon : 6px 15px 6px 15px;
143
+ @btn-padding-small-icon : 1px 7px 2px;
144
+ @btn-font-size : @font-size-base;
145
+ @btn-font-size-large : @font-size-large;
146
+ @btn-font-size-small : @font-size-base;
147
+ @btn-border-radius : 20px;
148
+ @btn-border-radius-small: 10px;
149
+ @btn-group-border : shade(@primary-color, 5%);
150
+
151
+ @btn-disable-color : #999999;
152
+ @btn-disable-bg : @background-color-base;
153
+ @btn-disable-border : @border-color-base;
154
+
155
+ @btn-default-color : @text-color;
156
+ @btn-default-color-tint-20: tint(@btn-default-color, 20%);
157
+ @btn-default-color-shade-5: shade(@btn-default-color, 5%);
158
+ @btn-default-bg : #fff;
159
+ @btn-default-bg-tint-20 : tint(@btn-default-bg, 20%);
160
+ @btn-default-bg-shade-5 : shade(@btn-default-bg, 5%);
161
+ @btn-default-border : @border-color-base;
162
+ @btn-default-border-tint-20 : tint(@btn-default-border, 20%);
163
+ @btn-default-border-shade-5 : shade(@btn-default-border, 5%);
164
+
165
+ @btn-primary-color : #fff;
166
+ @btn-primary-color-tint-20 : tint(@btn-primary-color, 20%);
167
+ @btn-primary-color-tint-5 : tint(@btn-primary-color, 5%);
168
+ @btn-primary-color-shade-5 : shade(@btn-primary-color, 5%);
169
+
170
+ @btn-primary-bg : @primary-color;
171
+ @btn-primary-bg-tint-20 : tint(@btn-primary-bg, 20%);
172
+ @btn-primary-bg-tint-5 : tint(@btn-primary-bg, 5%);
173
+ @btn-primary-bg-shade-5 : shade(@btn-primary-bg, 5%);
174
+
175
+ @btn-ghost-color : @text-color;
176
+ @btn-ghost-color-tint-20: tint(@btn-ghost-color, 20%);
177
+ @btn-ghost-color-shade-5 : shade(@btn-ghost-color, 5%);
178
+
179
+ @btn-ghost-bg : #fff;
180
+ @btn-ghost-bg-tint-20 : tint(@btn-ghost-bg, 20%);
181
+ @btn-ghost-bg-shade-5 : shade(@btn-ghost-bg, 5%);
182
+ @btn-ghost-border : @border-color-base;
183
+ @btn-ghost-border-tint-20:tint(@btn-ghost-border, 20%);
184
+ @btn-ghost-border-shade-5:shade(@btn-ghost-border, 5%);
185
+
186
+ @btn-circle-size : @btn-height-base;
187
+ @btn-circle-size-large : @btn-height-large;
188
+ @btn-circle-size-small : @btn-height-small;
189
+
190
+ @btn-square-size : @btn-height-base;
191
+ @btn-square-size-large : @btn-height-large;
192
+ @btn-square-size-small : @btn-height-small;
193
+
194
+ // Layout and Grid
195
+ @grid-columns : 24;
196
+ @grid-gutter-width : 0;
197
+ @layout-body-background : #f5f7f9;
198
+ @layout-header-background : @primary-color;
199
+ @layout-header-selected-background: @primary-color; // 选中的顶部菜单背景颜色稍亮
200
+ @layout-header-height : 64px;
201
+ @layout-header-padding : 0 50px;
202
+ @layout-footer-padding : 24px 50px;
203
+ @layout-footer-background : @layout-body-background;
204
+ @layout-sider-background : #002C6B;
205
+ @layout-sider-background-tint-10 : tint(@layout-sider-background, 10%);
206
+ @layout-trigger-height : 48px;
207
+ @layout-trigger-color : #fff;
208
+ @layout-zero-trigger-width : 36px;
209
+ @layout-zero-trigger-height : 42px;
210
+
211
+ // Legend
212
+ @legend-color : #999;
213
+
214
+ // Input
215
+ @input-height-base : 26px;
216
+ @input-height-large : 32px;
217
+ @input-height-small : 20px;
218
+
219
+ @input-padding-horizontal : 7px;
220
+ @input-padding-vertical-base : 4px;
221
+ @input-padding-vertical-small: 1px;
222
+ @input-padding-vertical-large: 6px;
223
+
224
+ @input-placeholder-color : @btn-disable-color;
225
+ @input-color : @text-color;
226
+ @input-border-color : @border-color-base;
227
+ @input-border-color-tint-20 : tint(@input-border-color, 20%);
228
+ @input-border-radius : 2px;
229
+ @input-border-radius-small : 1px;
230
+ @input-bg : #fff;
231
+ @input-group-bg : #f8f8f9;
232
+
233
+ @input-hover-border-color : @primary-color;
234
+ @input-hover-border-color-tint-20 : tint(@input-hover-border-color, 20%);
235
+ @input-hover-border-color-fade-20 : fade(@input-hover-border-color, 20%);
236
+ @input-focus-border-color : @primary-color;
237
+ @input-disabled-bg : #f8f8f8;
238
+
239
+ // Tag
240
+ @tag-font-size : 12px;
241
+
242
+ // Media queries breakpoints
243
+ // Extra small screen / phone
244
+ @screen-xs : 480px;
245
+ @screen-xs-min : @screen-xs;
246
+ @screen-xs-max : (@screen-xs-min - 1);
247
+
248
+ // Small screen / tablet
249
+ @screen-sm : 576px;
250
+ @screen-sm-min : @screen-sm;
251
+ @screen-sm-max : (@screen-sm-min - 1);
252
+
253
+ // Medium screen / desktop
254
+ @screen-md : 768px;
255
+ @screen-md-min : @screen-md;
256
+ @screen-md-max : (@screen-md-min - 1);
257
+
258
+ // Large screen / wide desktop
259
+ @screen-lg : 992px;
260
+ @screen-lg-min : @screen-lg;
261
+ @screen-lg-max : (@screen-lg-min - 1);
262
+
263
+ // Extra large screen / full hd
264
+ @screen-xl : 1200px;
265
+ @screen-xl-min : @screen-xl;
266
+ @screen-xl-max : (@screen-xl-min - 1);
267
+
268
+ // Extra extra large screen / large descktop
269
+ @screen-xxl : 1600px;
270
+ @screen-xxl-min : @screen-xxl;
271
+ @screen-xxl-max : (@screen-xxl-min - 1);
272
+
273
+ // Z-index
274
+ @zindex-spin : 8;
275
+ @zindex-affix : 10;
276
+ @zindex-back-top : 10;
277
+ @zindex-select : 900;
278
+ @zindex-modal : 1000;
279
+ @zindex-drawer : 1000;
280
+ @zindex-message : 1010;
281
+ @zindex-notification : 1010;
282
+ @zindex-tooltip : 1060;
283
+ @zindex-transfer : 1060;
284
+ @zindex-loading-bar : 2000;
285
+ @zindex-spin-fullscreen : 2010;
286
+
287
+ // Animation
288
+ @animation-time : .3s;
289
+ @animation-time-quick : .15s;
290
+ @transition-time : .2s;
291
+ @ease-in-out : ease-in-out;
292
+
293
+ // Slider
294
+ @slider-color : @primary-color-tint-20;
295
+ @slider-height : 4px;
296
+ @slider-margin : 16px 0;
297
+ @slider-button-wrap-size : 18px;
298
+ @slider-button-wrap-offset : -5px;
299
+ @slider-disabled-color : #ccc;
300
+
301
+ // Avatar
302
+ @avatar-size-base: 32px;
303
+ @avatar-size-lg: 40px;
304
+ @avatar-size-sm: 24px;
305
+ @avatar-font-size-base: 18px;
306
+ @avatar-font-size-lg: 24px;
307
+ @avatar-font-size-sm: 14px;
308
+ @avatar-bg: #ccc;
309
+ @avatar-color: #fff;
310
+ @avatar-border-radius: @border-radius-small;
311
+
312
+ // Anchor
313
+ @anchor-border-width: 2px;
314
+
315
+ // List
316
+ // ---
317
+ @list-header-background: transparent;
318
+ @list-footer-background: transparent;
319
+ @list-empty-text-padding: @padding-md;
320
+ @list-item-padding: @padding-sm 0;
321
+ @list-item-meta-margin-bottom: @padding-md;
322
+ @list-item-meta-avatar-margin-right: @padding-md;
323
+ @list-item-meta-title-margin-bottom: @padding-sm;
324
+
325
+
326
+ // Table
327
+ @table-border-style-base : dashed; // style of a table border
328
+ @table-header-color : #ffffff;
329
+ @table-header-font-weight : normal;
330
+ @table-header-padding-horizontal : 8px;
331
+ @table-header-padding-vertical : 0;
332
+ @table-cell-height : 30px;
333
+ @table-cell-white-space : normal;
334
+ @table-cell-padding-left : 9px;
335
+ @table-cell-padding-right : 9px;
336
+ @table-header-text-align : center;
337
+ @table-data-text-align : left;
338
+
339
+
340
+ // Select-DropDown
341
+ @select-dropdown-max-height : 200px;
342
+
343
+ // Tab
344
+ @tab-card-bg : #ffffff;
345
+
346
+ @form-item-label-font-weight : bold;
347
+
348
+ @date-picker-width : 200px;
349
+ @input-wrapper-width : 95%;
350
+ @select-width : 95%;
351
+
352
+
353
+
354
+
355
+ /*
356
+ vxe-table
357
+ */
358
+ /*font*/
359
+ @vxe-font-family : -apple-system, BlinkMacSystemFont, Segoe UI, PingFang SC, Hiragino Sans GB, Microsoft YaHei, Helvetica Neue, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
360
+ @vxe-font-size : @font-size-base;
361
+ @vxe-font-size-medium : @font-size-base;
362
+ @vxe-font-size-small : @font-size-base - 1px;
363
+ @vxe-font-size-mini : @font-size-base - 2px;
364
+
365
+ /*size*/
366
+ @vxe-border-radius : @border-radius-base;
367
+ @vxe-border-width : @border-width-base;
368
+ @vxe-border-style : @border-style-base;
369
+ @vxe-border-color : @border-color-base;
370
+
371
+ /*icon*/
372
+ @vxe-icon-font-family : Verdana, Arial, Tahoma;
373
+ @vxe-icon-background-color : #fff;
374
+
375
+ /*color*/
376
+ @vxe-font-color : @text-color;
377
+ @vxe-primary-color : @primary-color;
378
+ @vxe-success-color : @success-color;
379
+ @vxe-info-color : @info-color;
380
+ @vxe-warning-color : @warning-color;
381
+ @vxe-danger-color : @error-color;
382
+
383
+ @vxe-font-lighten-color : lighten(@vxe-font-color, 10%);
384
+ @vxe-font-lighten-color-20 : lighten(@vxe-font-color, 20%);
385
+ @vxe-primary-lighten-color : lighten(@vxe-primary-color, 10%);
386
+ @vxe-success-lighten-color : lighten(@vxe-success-color, 10%);
387
+ @vxe-info-lighten-color : lighten(@vxe-info-color, 10%);
388
+ @vxe-warning-lighten-color : lighten(@vxe-warning-color, 10%);
389
+ @vxe-danger-lighten-color : lighten(@vxe-danger-color, 10%);
390
+
391
+ @vxe-font-darken-color : darken(@vxe-font-color, 10%);
392
+ @vxe-primary-darken-color : darken(@vxe-primary-color, 10%);
393
+ @vxe-success-darken-color : darken(@vxe-success-color, 10%);
394
+ @vxe-info-darken-color : darken(@vxe-info-color, 10%);
395
+ @vxe-warning-darken-color : darken(@vxe-warning-color, 10%);
396
+ @vxe-danger-darken-color : darken(@vxe-danger-color, 10%);
397
+
398
+ @vxe-font-disabled-color : @btn-disable-color;
399
+ @vxe-primary-disabled-color : lighten(@vxe-primary-color, 20%);
400
+ @vxe-success-disabled-color : lighten(@vxe-success-color, 20%);
401
+ @vxe-info-disabled-color : lighten(@vxe-info-color, 20%);
402
+ @vxe-warning-disabled-color : lighten(@vxe-warning-color, 20%);
403
+ @vxe-danger-disabled-color : lighten(@vxe-danger-color, 20%);
404
+
405
+ /*input/radio/checkbox*/
406
+ @vxe-input-border-color : @input-border-color;
407
+ @vxe-input-disabled-color : @btn-disable-color;
408
+ @vxe-input-disabled-background-color : @input-disabled-bg;
409
+ @vxe-input-placeholder-color : @input-placeholder-color;
410
+
411
+ /*popup*/
412
+ @vxe-table-popup-border-color : @border-color-base;
413
+
414
+ /*table*/
415
+ @vxe-table-font-color : @vxe-font-color;
416
+ @vxe-table-font-lighten-color-20 : @vxe-font-lighten-color-20;
417
+ @vxe-table-header-font-color : @table-header-color;
418
+ @vxe-table-footer-font-color : @vxe-font-color;
419
+ @vxe-table-border-radius : @vxe-border-radius;
420
+ @vxe-table-border-width : @border-width-base;
421
+ @vxe-table-border-style : @table-border-style-base;
422
+ @vxe-table-border-color : @border-color-base;
423
+ @vxe-table-resizable-line-color : @border-color-split;
424
+ @vxe-table-resizable-drag-line-color : @vxe-primary-color;
425
+ @vxe-table-header-background-color : @table-thead-bg;
426
+ @vxe-table-body-background-color : @body-background;
427
+ @vxe-table-footer-background-color : @body-background;
428
+ @vxe-table-tree-node-line-color : #909399;
429
+ @vxe-table-tree-node-line-style : dotted;
430
+ @vxe-table-header-font-weight : @table-header-font-weight;
431
+
432
+ @vxe-table-row-height-default : @table-cell-height;
433
+ @vxe-table-row-height-medium : @table-cell-height - 4px;
434
+ @vxe-table-row-height-small : @table-cell-height - 8px;
435
+ @vxe-table-row-height-mini : @table-cell-height - 12px;
436
+ @vxe-table-row-line-height : @line-height-base;
437
+ @vxe-table-row-hover-background-color : @table-td-hover-bg;
438
+ @vxe-table-row-striped-background-color : @table-td-stripe-bg;
439
+ @vxe-table-row-hover-striped-background-color : @table-td-hover-bg;
440
+ @vxe-table-row-radio-checked-background-color : @table-td-highlight-bg;
441
+ @vxe-table-row-hover-radio-checked-background-color : @table-td-hover-bg;
442
+ @vxe-table-row-checkbox-checked-background-color : @table-td-highlight-bg;
443
+ @vxe-table-row-hover-checkbox-checked-background-color : @table-td-hover-bg;
444
+ @vxe-table-row-current-background-color : @table-td-highlight-bg;
445
+ @vxe-table-row-hover-current-background-color : @table-td-hover-bg;
446
+
447
+ @vxe-table-column-padding-default : @table-header-padding-horizontal @table-header-padding-vertical;
448
+ @vxe-table-column-padding-medium : @table-header-padding-horizontal - 2px @table-header-padding-vertical;
449
+ @vxe-table-column-padding-small : @table-header-padding-horizontal - 4px @table-header-padding-vertical;
450
+ @vxe-table-column-padding-mini : @table-header-padding-horizontal - 6px @table-header-padding-vertical;
451
+ @vxe-table-column-hover-background-color : @table-td-hover-bg;
452
+ @vxe-table-column-current-background-color : @table-td-highlight-bg;
453
+ @vxe-table-column-icon-border-color : #c0c4cc;
454
+ @vxe-table-column-icon-border-hover-color : #515A6E;
455
+ @vxe-table-column-background-image : repeating-linear-gradient(@vxe-table-border-color, #fff 1%), repeating-linear-gradient(90deg,@vxe-table-border-color,#fff 1%);
456
+
457
+
458
+ @vxe-table-cell-placeholder-color : @input-placeholder-color;
459
+ @vxe-table-cell-padding-left : @table-cell-padding-left;
460
+ @vxe-table-cell-padding-right : @table-cell-padding-right;
461
+ @vxe-table-cell-input-height-default : @vxe-table-row-height-default - 6px;
462
+ @vxe-table-cell-input-height-medium : @vxe-table-row-height-medium - 6px;
463
+ @vxe-table-cell-input-height-small : @vxe-table-row-height-small - 6px;
464
+ @vxe-table-cell-input-height-mini : @vxe-table-row-height-mini - 6px;
465
+ @vxe-table-cell-dirty-width : 5px;
466
+ @vxe-table-cell-dirty-update-color : #f56c6c;
467
+ @vxe-table-cell-dirty-insert-color : #19A15F;
468
+ @vxe-table-cell-area-border-color : @vxe-primary-color;
469
+ @vxe-table-cell-area-border-width : 1px;
470
+ @vxe-table-cell-main-area-extension-border-color : #fff;
471
+ @vxe-table-cell-main-area-extension-background-color : @vxe-primary-color;
472
+ @vxe-table-cell-extend-area-border-width : 2px;
473
+ @vxe-table-cell-copy-area-border-width : 3px;
474
+ @vxe-table-cell-active-area-border-width : 2px;
475
+ @vxe-table-cell-copy-area-border-color : @vxe-table-cell-area-border-color;
476
+ @vxe-table-cell-extend-area-border-color : @vxe-table-cell-area-border-color;
477
+ @vxe-table-cell-active-area-border-color : @vxe-table-cell-area-border-color;
478
+ @vxe-table-cell-area-background-color : rgba(64, 158, 255, 0.2);
479
+
480
+ @vxe-table-checkbox-range-border-width : 1px;
481
+ @vxe-table-checkbox-range-border-color : #006af1;
482
+ @vxe-table-checkbox-range-background-color : rgba(50, 128, 252, 0.2);
483
+
484
+ @vxe-table-fixed-left-scrolling-box-shadow : 8px 0px 10px -5px rgb(14, 53, 110);
485
+ @vxe-table-fixed-right-scrolling-box-shadow : -8px 0px 10px -5px rgba(0, 0, 0, 0.12);
486
+
487
+ /*filter*/
488
+ @vxe-table-filter-panel-background-color : #fff;
489
+
490
+ /*menu*/
491
+ @vxe-table-menu-item-width : 178px;
492
+ @vxe-table-menu-background-color : #fff;
493
+
494
+ /*loading*/
495
+ @vxe-loading-color : @vxe-primary-color;
496
+ @vxe-loading-background-color : rgba(255, 255, 255, 0.5);
497
+ @vxe-loading-z-index : 999;
498
+
499
+ /*validate*/
500
+ @vxe-table-validate-error-color : #f56c6c;
501
+ @vxe-table-validate-tooltip-error-color : #fff;
502
+ @vxe-table-validate-tooltip-error-background-color : @vxe-table-validate-error-color;
503
+
504
+ /*grid*/
505
+ @vxe-grid-maximize-background-color : #fff;
506
+
507
+ /*toolbar*/
508
+ @vxe-toolbar-background-color : #fff;
509
+ @vxe-toolbar-custom-active-background-color : #D9DADB;
510
+ @vxe-toolbar-panel-background-color : #fff;
511
+
512
+ /*tooltip*/
513
+ @vxe-tooltip-dark-color : #fff;
514
+ @vxe-tooltip-dark-background-color : #303133;
515
+ @vxe-tooltip-light-background-color : #fff;
516
+
517
+ /*pager*/
518
+ @vxe-pager-background-color : #fff;
519
+ @vxe-pager-perfect-background-color : #fff;
520
+ @vxe-pager-perfect-button-background-color : #f4f4f5;
521
+
522
+ /*modal*/
523
+ @vxe-modal-header-background-color : #F8F8F8;
524
+ @vxe-modal-body-background-color : #fff;
525
+ @vxe-modal-border-color : #ebeef5;
526
+
527
+ /*checkbox*/
528
+ @vxe-checkbox-font-size-default : 15px;
529
+ @vxe-checkbox-font-size-medium : 14px;
530
+ @vxe-checkbox-font-size-small : 13px;
531
+ @vxe-checkbox-font-size-mini : 12px;
532
+ @vxe-checkbox-checked-width : 0.32em;
533
+ @vxe-checkbox-checked-height : 0.64em;
534
+ @vxe-checkbox-indeterminate-width : 0.6em;
535
+ @vxe-checkbox-indeterminate-height : 2px;
536
+ @vxe-checkbox-border-width : 2px;
537
+ @vxe-checkbox-border-radius : 2px;
538
+ @vxe-checkbox-icon-background-color : #fff;
539
+ @vxe-checkbox-checked-icon-border-color : #fff;
540
+ @vxe-checkbox-indeterminate-icon-background-color : #fff;
541
+
542
+ /*radio*/
543
+ @vxe-radio-font-size-default : @vxe-checkbox-font-size-default;
544
+ @vxe-radio-font-size-medium : @vxe-checkbox-font-size-medium;
545
+ @vxe-radio-font-size-small : @vxe-checkbox-font-size-small;
546
+ @vxe-radio-font-size-mini : @vxe-checkbox-font-size-mini;
547
+ @vxe-radio-border-width : @vxe-checkbox-border-width;
548
+ @vxe-radio-icon-background-color : #fff;
549
+ @vxe-radio-checked-icon-background-color : #fff;
550
+ @vxe-radio-indeterminate-icon-background-color : #fff;
551
+ @vxe-radio-button-default-background-color : #fff;
552
+
553
+ /*button*/
554
+ @vxe-button-max-width : 500px;
555
+ @vxe-button-default-background-color : #fff;
556
+ @vxe-button-dropdown-panel-background-color : #fff;
557
+ @vxe-button-height-default : 34px;
558
+ @vxe-button-height-medium : 32px;
559
+ @vxe-button-height-small : 30px;
560
+ @vxe-button-height-mini : 28px;
561
+ @vxe-button-round-border-radius-default : 17px;
562
+ @vxe-button-round-border-radius-medium : 16px;
563
+ @vxe-button-round-border-radius-small : 15px;
564
+ @vxe-button-round-border-radius-mini : 14px;
565
+
566
+ /*input*/
567
+ @vxe-input-background-color : #fff;
568
+ @vxe-input-panel-background-color : @vxe-input-background-color;
569
+ @vxe-input-number-disabled-color : #e4e7ed;
570
+ @vxe-input-date-festival-color : #999999;
571
+ @vxe-input-date-festival-important-color : @vxe-primary-color;
572
+ @vxe-input-date-notice-background-color : #FF0000;
573
+ @vxe-input-date-picker-hover-background-color : #f2f6fc;
574
+ @vxe-input-date-picker-selected-color : #fff;
575
+ @vxe-input-date-time-confirm-button-color : #fff;
576
+ @vxe-input-date-picker-festival-selected-color : @vxe-input-date-picker-selected-color;
577
+ @vxe-input-date-picker-notice-selected-background-color : @vxe-input-date-picker-selected-color;
578
+ @vxe-input-date-extra-color : #67c23a;
579
+ @vxe-input-date-extra-important-color : #fd2222;
580
+ @vxe-input-date-title-height-default : 30px;
581
+ @vxe-input-date-title-height-medium : 29px;
582
+ @vxe-input-date-title-height-small : 28px;
583
+ @vxe-input-date-title-height-mini : 26px;
584
+ @vxe-input-date-time-week-row-height-default : 38px;
585
+ @vxe-input-date-time-week-row-height-medium : 36px;
586
+ @vxe-input-date-time-week-row-height-small : 34px;
587
+ @vxe-input-date-time-week-row-height-mini : 32px;
588
+ @vxe-input-date-month-year-row-height-default : 48px;
589
+ @vxe-input-date-month-year-row-height-medium : 46px;
590
+ @vxe-input-date-month-year-row-height-small : 44px;
591
+ @vxe-input-date-month-year-row-height-mini : 42px;
592
+ @vxe-input-date-quarter-row-height-default : 60px;
593
+ @vxe-input-date-quarter-row-height-medium : 58px;
594
+ @vxe-input-date-quarter-row-height-small : 56px;
595
+ @vxe-input-date-quarter-row-height-mini : 54px;
596
+ @vxe-input-height-default : @vxe-button-height-default;
597
+ @vxe-input-height-medium : @vxe-button-height-medium;
598
+ @vxe-input-height-small : @vxe-button-height-small;
599
+ @vxe-input-height-mini : @vxe-button-height-mini;
600
+ @vxe-input-count-color : #999;
601
+ @vxe-input-count-background-color : #fff;
602
+ @vxe-input-count-error-color : @vxe-table-validate-error-color;
603
+
604
+ /*textarea*/
605
+ @vxe-textarea-line-height : 1.5715;
606
+ @vxe-textarea-background-color : #fff;
607
+
608
+ /*form*/
609
+ @vxe-form-item-min-height-default : 36px;
610
+ @vxe-form-item-min-height-medium : 34px;
611
+ @vxe-form-item-min-height-small : 32px;
612
+ @vxe-form-item-min-height-mini : 30px;
613
+ @vxe-form-background-color : #fff;
614
+ @vxe-form-validate-error-color : @vxe-table-validate-error-color;
615
+ @vxe-form-validate-error-background-color : inherit;
616
+
617
+ /*select*/
618
+ @vxe-select-option-height-default : 30px;
619
+ @vxe-select-option-height-medium : 28px;
620
+ @vxe-select-option-height-small : 26px;
621
+ @vxe-select-option-height-mini : 24px;
622
+ @vxe-select-option-hover-background-color : #f5f7fa;
623
+ @vxe-select-panel-background-color : #fff;
624
+ @vxe-select-empty-color : #C0C4CC;
625
+ @vxe-optgroup-title-color : #909399;
626
+
627
+ /*switch*/
628
+ @vxe-switch-font-color : #fff;
629
+ @vxe-switch-icon-background-color : #fff;
630
+ @vxe-switch-open-background-color : @vxe-primary-color;
631
+ @vxe-switch-close-background-color : rgb(14, 53, 110);
632
+ @vxe-switch-disabled-background-color : rgb(14, 53, 120);
633
+
634
+ /*pulldown*/
635
+ @vxe-pulldown-panel-background-color : #fff;
636
+
637
+
638
+
@@ -72,7 +72,7 @@
72
72
  @component-background : #fff;
73
73
  @font-family : "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
74
74
  @code-family : Consolas,Menlo,Courier,monospace;
75
- @title-color : #17233d;
75
+ @title-color : fade(@black, 45%);
76
76
  @text-color : #515a6e;
77
77
  @text-color-secondary: fade(@black, 45%);
78
78
  @heading-color: fade(#000, 85%);