@lambo-design/shared 1.0.0-beta.9 → 1.0.0-beta.91
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/config/config.js +2 -2
- package/config/themes/atrovirens/atrovirens.css +533 -0
- package/config/themes/atrovirens/atrovirens.css.map +1 -0
- package/config/themes/atrovirens/atrovirens.less +624 -0
- package/config/themes/atrovirens/var.less +627 -0
- package/config/themes/blue/blue.css +533 -0
- package/config/themes/blue/blue.css.map +1 -0
- package/config/themes/blue/blue.less +624 -0
- package/config/themes/blue/var.less +637 -0
- package/config/themes/default/default.css +300 -8
- package/config/themes/default/default.css.map +1 -0
- package/config/themes/default/default.less +378 -74
- package/config/themes/default/var.less +320 -6
- package/config/themes/eap/eap.css +533 -0
- package/config/themes/eap/eap.css.map +1 -0
- package/config/themes/eap/eap.less +624 -0
- package/config/themes/eap/var.less +628 -0
- package/config/themes/gold/gold.css +533 -0
- package/config/themes/gold/gold.css.map +1 -0
- package/config/themes/gold/gold.less +624 -0
- package/config/themes/gold/var.less +321 -6
- package/config/themes/index.js +12 -3
- package/config/themes/lime/lime.css +533 -0
- package/config/themes/lime/lime.css.map +1 -0
- package/config/themes/lime/lime.less +624 -0
- package/config/themes/lime/var.less +321 -6
- package/config/themes/orange/orange.css +533 -0
- package/config/themes/orange/orange.css.map +1 -0
- package/config/themes/orange/orange.less +624 -0
- package/config/themes/orange/var.less +629 -0
- package/config/themes/red/red.css +533 -0
- package/config/themes/red/red.css.map +1 -0
- package/config/themes/red/red.less +624 -0
- package/config/themes/red/var.less +628 -0
- package/config/themes/theme-atrovirens.js +515 -0
- package/config/themes/theme-blue.js +521 -0
- package/config/themes/theme-default.js +272 -9
- package/config/themes/theme-eap.js +515 -0
- package/config/themes/theme-gold.js +273 -10
- package/config/themes/theme-lime.js +273 -10
- package/config/themes/theme-orange.js +516 -0
- package/config/themes/theme-red.js +515 -0
- package/directives/index.js +23 -0
- package/directives/module/draggable.js +56 -0
- package/directives/module/permission.js +49 -0
- package/index.js +3 -1
- package/package.json +23 -20
- package/plugin/index.js +12 -0
- package/plugin/module/date-format.js +30 -0
- package/plugin/module/loading.js +26 -0
- package/plugin/module/warn-handler.js +11 -0
- package/utils/ajax/interceptors.js +13 -6
- package/utils/assist.js +179 -9
- package/utils/base64.js +126 -0
- package/utils/date.js +343 -300
- package/utils/dict/built-in-dict.js +20 -0
- package/utils/dict/index.js +75 -0
- package/utils/excel.js +122 -21
- package/utils/form/validate.js +30 -0
- package/utils/lodop.js +5 -0
- package/utils/menu/index.js +25 -2
- package/utils/modelerUtil.js +4 -1
- package/utils/number.js +72 -0
- package/utils/platform.js +120 -7
- package/utils/theme.js +5 -0
- package/config/themes/gold/default.css +0 -241
- package/config/themes/gold/default.less +0 -319
- package/config/themes/lime/default.css +0 -241
- package/config/themes/lime/default.less +0 -319
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
@info-color-tint-5 : tint(@info-color,5%);
|
|
16
16
|
@info-color-tint-95-fade-50 : fade(tint(@info-color,95%),50%);
|
|
17
17
|
@info-color-fade-20 : fade(@info-color, 20%);
|
|
18
|
-
@info-color-shade-5 :
|
|
18
|
+
@info-color-shade-5 : shade(@info-color, 5%);
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
@success-color : #19be6b;
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
|
|
56
56
|
|
|
57
57
|
@normal-color : #e6ebf1;
|
|
58
|
-
@link-color : #
|
|
58
|
+
@link-color : #52c41a;
|
|
59
59
|
@link-hover-color : tint(@link-color, 20%);
|
|
60
60
|
@link-active-color : shade(@link-color, 5%);
|
|
61
61
|
@selected-color : fade(@primary-color, 90%);
|
|
@@ -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 :
|
|
75
|
+
@title-color : fade(@black, 85%);
|
|
76
76
|
@text-color : #515a6e;
|
|
77
77
|
@text-color-secondary: fade(@black, 45%);
|
|
78
78
|
@heading-color: fade(#000, 85%);
|
|
@@ -107,8 +107,8 @@
|
|
|
107
107
|
@table-td-stripe-bg : #f8f8f9;
|
|
108
108
|
@table-td-hover-bg : #ebf7ff;
|
|
109
109
|
@table-td-highlight-bg : #ebf7ff;
|
|
110
|
-
@menu-dark-title : #
|
|
111
|
-
@menu-dark-active-bg : #
|
|
110
|
+
@menu-dark-title : #333333;
|
|
111
|
+
@menu-dark-active-bg : #333333;
|
|
112
112
|
@menu-dark-subsidiary-color : rgba(255,255,255,.7);
|
|
113
113
|
@menu-dark-group-title-color : rgba(255,255,255,.36);
|
|
114
114
|
@date-picker-cell-hover-bg : #e1f0fe;
|
|
@@ -189,7 +189,7 @@
|
|
|
189
189
|
@grid-columns : 24;
|
|
190
190
|
@grid-gutter-width : 0;
|
|
191
191
|
@layout-body-background : #f5f7f9;
|
|
192
|
-
@layout-header-background : #
|
|
192
|
+
@layout-header-background : #333333;
|
|
193
193
|
@layout-header-height : 64px;
|
|
194
194
|
@layout-header-padding : 0 50px;
|
|
195
195
|
@layout-footer-padding : 24px 50px;
|
|
@@ -218,6 +218,8 @@
|
|
|
218
218
|
@input-color : @text-color;
|
|
219
219
|
@input-border-color : @border-color-base;
|
|
220
220
|
@input-border-color-tint-20 : tint(@input-border-color, 20%);
|
|
221
|
+
@input-border-radius : @btn-border-radius;
|
|
222
|
+
@input-border-radius-small : @btn-border-radius-small;
|
|
221
223
|
@input-bg : #fff;
|
|
222
224
|
@input-group-bg : #f8f8f9;
|
|
223
225
|
|
|
@@ -312,3 +314,316 @@
|
|
|
312
314
|
@list-item-meta-margin-bottom: @padding-md;
|
|
313
315
|
@list-item-meta-avatar-margin-right: @padding-md;
|
|
314
316
|
@list-item-meta-title-margin-bottom: @padding-sm;
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
// Table
|
|
320
|
+
@table-border-style-base : solid; // style of a table border
|
|
321
|
+
@table-header-color : @text-color;
|
|
322
|
+
@table-header-font-weight : bold;
|
|
323
|
+
@table-header-padding-horizontal : 8px;
|
|
324
|
+
@table-header-padding-vertical : 0;
|
|
325
|
+
@table-cell-height : 48px;
|
|
326
|
+
@table-cell-white-space : normal;
|
|
327
|
+
@table-cell-padding-left : 9px;
|
|
328
|
+
@table-cell-padding-right : 9px;
|
|
329
|
+
@table-header-text-align : center;
|
|
330
|
+
@table-data-text-align : left;
|
|
331
|
+
|
|
332
|
+
|
|
333
|
+
// Select-DropDown
|
|
334
|
+
@select-dropdown-max-height : 400px;
|
|
335
|
+
|
|
336
|
+
// Tab
|
|
337
|
+
@tab-card-bg : @table-thead-bg;
|
|
338
|
+
|
|
339
|
+
@form-item-label-font-weight : normal;
|
|
340
|
+
|
|
341
|
+
@input-wrapper-width : 95%;
|
|
342
|
+
@select-width : 95%;
|
|
343
|
+
@date-picker-width : 95%;
|
|
344
|
+
|
|
345
|
+
|
|
346
|
+
|
|
347
|
+
|
|
348
|
+
/*
|
|
349
|
+
vxe-table
|
|
350
|
+
*/
|
|
351
|
+
/*font*/
|
|
352
|
+
@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;
|
|
353
|
+
@vxe-font-size : @font-size-base;
|
|
354
|
+
@vxe-font-size-medium : @font-size-base;
|
|
355
|
+
@vxe-font-size-small : @font-size-base - 1px;
|
|
356
|
+
@vxe-font-size-mini : @font-size-base - 2px;
|
|
357
|
+
|
|
358
|
+
/*size*/
|
|
359
|
+
@vxe-border-radius : @border-radius-base;
|
|
360
|
+
@vxe-border-width : @border-width-base;
|
|
361
|
+
@vxe-border-style : @border-style-base;
|
|
362
|
+
@vxe-border-color : @border-color-base;
|
|
363
|
+
|
|
364
|
+
/*icon*/
|
|
365
|
+
@vxe-icon-font-family : Verdana, Arial, Tahoma;
|
|
366
|
+
@vxe-icon-background-color : #fff;
|
|
367
|
+
|
|
368
|
+
/*color*/
|
|
369
|
+
@vxe-font-color : @text-color;
|
|
370
|
+
@vxe-primary-color : @primary-color;
|
|
371
|
+
@vxe-success-color : @success-color;
|
|
372
|
+
@vxe-info-color : @info-color;
|
|
373
|
+
@vxe-warning-color : @warning-color;
|
|
374
|
+
@vxe-danger-color : @error-color;
|
|
375
|
+
|
|
376
|
+
@vxe-font-lighten-color : lighten(@vxe-font-color, 10%);
|
|
377
|
+
@vxe-font-lighten-color-20 : lighten(@vxe-font-color, 20%);
|
|
378
|
+
@vxe-primary-lighten-color : lighten(@vxe-primary-color, 10%);
|
|
379
|
+
@vxe-success-lighten-color : lighten(@vxe-success-color, 10%);
|
|
380
|
+
@vxe-info-lighten-color : lighten(@vxe-info-color, 10%);
|
|
381
|
+
@vxe-warning-lighten-color : lighten(@vxe-warning-color, 10%);
|
|
382
|
+
@vxe-danger-lighten-color : lighten(@vxe-danger-color, 10%);
|
|
383
|
+
|
|
384
|
+
@vxe-font-darken-color : darken(@vxe-font-color, 10%);
|
|
385
|
+
@vxe-primary-darken-color : darken(@vxe-primary-color, 10%);
|
|
386
|
+
@vxe-success-darken-color : darken(@vxe-success-color, 10%);
|
|
387
|
+
@vxe-info-darken-color : darken(@vxe-info-color, 10%);
|
|
388
|
+
@vxe-warning-darken-color : darken(@vxe-warning-color, 10%);
|
|
389
|
+
@vxe-danger-darken-color : darken(@vxe-danger-color, 10%);
|
|
390
|
+
|
|
391
|
+
@vxe-font-disabled-color : @btn-disable-color;
|
|
392
|
+
@vxe-primary-disabled-color : lighten(@vxe-primary-color, 20%);
|
|
393
|
+
@vxe-success-disabled-color : lighten(@vxe-success-color, 20%);
|
|
394
|
+
@vxe-info-disabled-color : lighten(@vxe-info-color, 20%);
|
|
395
|
+
@vxe-warning-disabled-color : lighten(@vxe-warning-color, 20%);
|
|
396
|
+
@vxe-danger-disabled-color : lighten(@vxe-danger-color, 20%);
|
|
397
|
+
|
|
398
|
+
/*input/radio/checkbox*/
|
|
399
|
+
@vxe-input-border-color : @input-border-color;
|
|
400
|
+
@vxe-input-disabled-color : @btn-disable-color;
|
|
401
|
+
@vxe-input-disabled-background-color : @input-disabled-bg;
|
|
402
|
+
@vxe-input-placeholder-color : @input-placeholder-color;
|
|
403
|
+
|
|
404
|
+
/*popup*/
|
|
405
|
+
@vxe-table-popup-border-color : @border-color-base;
|
|
406
|
+
|
|
407
|
+
/*table*/
|
|
408
|
+
@vxe-table-font-color : @vxe-font-color;
|
|
409
|
+
@vxe-table-font-lighten-color-20 : @vxe-font-lighten-color-20;
|
|
410
|
+
@vxe-table-header-font-color : @table-header-color;
|
|
411
|
+
@vxe-table-footer-font-color : @vxe-font-color;
|
|
412
|
+
@vxe-table-border-radius : @vxe-border-radius;
|
|
413
|
+
@vxe-table-border-width : @border-width-base;
|
|
414
|
+
@vxe-table-border-style : @table-border-style-base;
|
|
415
|
+
@vxe-table-border-color : @border-color-base;
|
|
416
|
+
@vxe-table-resizable-line-color : @border-color-split;
|
|
417
|
+
@vxe-table-resizable-drag-line-color : @vxe-primary-color;
|
|
418
|
+
@vxe-table-header-background-color : @table-thead-bg;
|
|
419
|
+
@vxe-table-body-background-color : @body-background;
|
|
420
|
+
@vxe-table-footer-background-color : @body-background;
|
|
421
|
+
@vxe-table-tree-node-line-color : #909399;
|
|
422
|
+
@vxe-table-tree-node-line-style : dotted;
|
|
423
|
+
@vxe-table-header-font-weight : @table-header-font-weight;
|
|
424
|
+
|
|
425
|
+
@vxe-table-row-height-default : @table-cell-height;
|
|
426
|
+
@vxe-table-row-height-medium : @table-cell-height - 4px;
|
|
427
|
+
@vxe-table-row-height-small : @table-cell-height - 8px;
|
|
428
|
+
@vxe-table-row-height-mini : @table-cell-height - 12px;
|
|
429
|
+
@vxe-table-row-line-height : @line-height-base;
|
|
430
|
+
@vxe-table-row-hover-background-color : @table-td-hover-bg;
|
|
431
|
+
@vxe-table-row-striped-background-color : @table-td-stripe-bg;
|
|
432
|
+
@vxe-table-row-hover-striped-background-color : @table-td-hover-bg;
|
|
433
|
+
@vxe-table-row-radio-checked-background-color : @table-td-highlight-bg;
|
|
434
|
+
@vxe-table-row-hover-radio-checked-background-color : @table-td-hover-bg;
|
|
435
|
+
@vxe-table-row-checkbox-checked-background-color : @table-td-highlight-bg;
|
|
436
|
+
@vxe-table-row-hover-checkbox-checked-background-color : @table-td-hover-bg;
|
|
437
|
+
@vxe-table-row-current-background-color : @table-td-highlight-bg;
|
|
438
|
+
@vxe-table-row-hover-current-background-color : @table-td-hover-bg;
|
|
439
|
+
|
|
440
|
+
@vxe-table-column-padding-default : @table-header-padding-horizontal @table-header-padding-vertical;
|
|
441
|
+
@vxe-table-column-padding-medium : @table-header-padding-horizontal - 2px @table-header-padding-vertical;
|
|
442
|
+
@vxe-table-column-padding-small : @table-header-padding-horizontal - 4px @table-header-padding-vertical;
|
|
443
|
+
@vxe-table-column-padding-mini : @table-header-padding-horizontal - 6px @table-header-padding-vertical;
|
|
444
|
+
@vxe-table-column-hover-background-color : @table-td-hover-bg;
|
|
445
|
+
@vxe-table-column-current-background-color : @table-td-highlight-bg;
|
|
446
|
+
@vxe-table-column-icon-border-color : #c0c4cc;
|
|
447
|
+
@vxe-table-column-icon-border-hover-color : #515A6E;
|
|
448
|
+
@vxe-table-column-background-image : linear-gradient(@vxe-table-border-color, @vxe-table-border-color), linear-gradient(@vxe-table-border-color, @vxe-table-border-color);
|
|
449
|
+
|
|
450
|
+
|
|
451
|
+
@vxe-table-cell-placeholder-color : @input-placeholder-color;
|
|
452
|
+
@vxe-table-cell-padding-left : @table-cell-padding-left;
|
|
453
|
+
@vxe-table-cell-padding-right : @table-cell-padding-right;
|
|
454
|
+
@vxe-table-cell-input-height-default : @vxe-table-row-height-default - 6px;
|
|
455
|
+
@vxe-table-cell-input-height-medium : @vxe-table-row-height-medium - 6px;
|
|
456
|
+
@vxe-table-cell-input-height-small : @vxe-table-row-height-small - 6px;
|
|
457
|
+
@vxe-table-cell-input-height-mini : @vxe-table-row-height-mini - 6px;
|
|
458
|
+
@vxe-table-cell-dirty-width : 5px;
|
|
459
|
+
@vxe-table-cell-dirty-update-color : #f56c6c;
|
|
460
|
+
@vxe-table-cell-dirty-insert-color : #19A15F;
|
|
461
|
+
@vxe-table-cell-area-border-color : @vxe-primary-color;
|
|
462
|
+
@vxe-table-cell-area-border-width : 1px;
|
|
463
|
+
@vxe-table-cell-main-area-extension-border-color : #fff;
|
|
464
|
+
@vxe-table-cell-main-area-extension-background-color : @vxe-primary-color;
|
|
465
|
+
@vxe-table-cell-extend-area-border-width : 2px;
|
|
466
|
+
@vxe-table-cell-copy-area-border-width : 3px;
|
|
467
|
+
@vxe-table-cell-active-area-border-width : 2px;
|
|
468
|
+
@vxe-table-cell-copy-area-border-color : @vxe-table-cell-area-border-color;
|
|
469
|
+
@vxe-table-cell-extend-area-border-color : @vxe-table-cell-area-border-color;
|
|
470
|
+
@vxe-table-cell-active-area-border-color : @vxe-table-cell-area-border-color;
|
|
471
|
+
@vxe-table-cell-area-background-color : rgba(64, 158, 255, 0.2);
|
|
472
|
+
|
|
473
|
+
@vxe-table-checkbox-range-border-width : 1px;
|
|
474
|
+
@vxe-table-checkbox-range-border-color : #006af1;
|
|
475
|
+
@vxe-table-checkbox-range-background-color : rgba(50, 128, 252, 0.2);
|
|
476
|
+
|
|
477
|
+
@vxe-table-fixed-left-scrolling-box-shadow : 8px 0px 10px -5px rgba(0, 0, 0, 0.12);
|
|
478
|
+
@vxe-table-fixed-right-scrolling-box-shadow : -8px 0px 10px -5px rgba(0, 0, 0, 0.12);
|
|
479
|
+
|
|
480
|
+
/*filter*/
|
|
481
|
+
@vxe-table-filter-panel-background-color : #fff;
|
|
482
|
+
|
|
483
|
+
/*menu*/
|
|
484
|
+
@vxe-table-menu-item-width : 178px;
|
|
485
|
+
@vxe-table-menu-background-color : #fff;
|
|
486
|
+
|
|
487
|
+
/*loading*/
|
|
488
|
+
@vxe-loading-color : @vxe-primary-color;
|
|
489
|
+
@vxe-loading-background-color : rgba(255, 255, 255, 0.5);
|
|
490
|
+
@vxe-loading-z-index : 999;
|
|
491
|
+
|
|
492
|
+
/*validate*/
|
|
493
|
+
@vxe-table-validate-error-color : #f56c6c;
|
|
494
|
+
@vxe-table-validate-tooltip-error-color : #fff;
|
|
495
|
+
@vxe-table-validate-tooltip-error-background-color : @vxe-table-validate-error-color;
|
|
496
|
+
|
|
497
|
+
/*grid*/
|
|
498
|
+
@vxe-grid-maximize-background-color : #fff;
|
|
499
|
+
|
|
500
|
+
/*toolbar*/
|
|
501
|
+
@vxe-toolbar-background-color : #fff;
|
|
502
|
+
@vxe-toolbar-custom-active-background-color : #D9DADB;
|
|
503
|
+
@vxe-toolbar-panel-background-color : #fff;
|
|
504
|
+
|
|
505
|
+
/*tooltip*/
|
|
506
|
+
@vxe-tooltip-dark-color : #fff;
|
|
507
|
+
@vxe-tooltip-dark-background-color : #303133;
|
|
508
|
+
@vxe-tooltip-light-background-color : #fff;
|
|
509
|
+
|
|
510
|
+
/*pager*/
|
|
511
|
+
@vxe-pager-background-color : #fff;
|
|
512
|
+
@vxe-pager-perfect-background-color : #fff;
|
|
513
|
+
@vxe-pager-perfect-button-background-color : #f4f4f5;
|
|
514
|
+
|
|
515
|
+
/*modal*/
|
|
516
|
+
@vxe-modal-header-background-color : #F8F8F8;
|
|
517
|
+
@vxe-modal-body-background-color : #fff;
|
|
518
|
+
@vxe-modal-border-color : #ebeef5;
|
|
519
|
+
|
|
520
|
+
/*checkbox*/
|
|
521
|
+
@vxe-checkbox-font-size-default : 15px;
|
|
522
|
+
@vxe-checkbox-font-size-medium : 14px;
|
|
523
|
+
@vxe-checkbox-font-size-small : 13px;
|
|
524
|
+
@vxe-checkbox-font-size-mini : 12px;
|
|
525
|
+
@vxe-checkbox-checked-width : 0.32em;
|
|
526
|
+
@vxe-checkbox-checked-height : 0.64em;
|
|
527
|
+
@vxe-checkbox-indeterminate-width : 0.6em;
|
|
528
|
+
@vxe-checkbox-indeterminate-height : 2px;
|
|
529
|
+
@vxe-checkbox-border-width : 2px;
|
|
530
|
+
@vxe-checkbox-border-radius : 2px;
|
|
531
|
+
@vxe-checkbox-icon-background-color : #fff;
|
|
532
|
+
@vxe-checkbox-checked-icon-border-color : #fff;
|
|
533
|
+
@vxe-checkbox-indeterminate-icon-background-color : #fff;
|
|
534
|
+
|
|
535
|
+
/*radio*/
|
|
536
|
+
@vxe-radio-font-size-default : @vxe-checkbox-font-size-default;
|
|
537
|
+
@vxe-radio-font-size-medium : @vxe-checkbox-font-size-medium;
|
|
538
|
+
@vxe-radio-font-size-small : @vxe-checkbox-font-size-small;
|
|
539
|
+
@vxe-radio-font-size-mini : @vxe-checkbox-font-size-mini;
|
|
540
|
+
@vxe-radio-border-width : @vxe-checkbox-border-width;
|
|
541
|
+
@vxe-radio-icon-background-color : #fff;
|
|
542
|
+
@vxe-radio-checked-icon-background-color : #fff;
|
|
543
|
+
@vxe-radio-indeterminate-icon-background-color : #fff;
|
|
544
|
+
@vxe-radio-button-default-background-color : #fff;
|
|
545
|
+
|
|
546
|
+
/*button*/
|
|
547
|
+
@vxe-button-max-width : 500px;
|
|
548
|
+
@vxe-button-default-background-color : #fff;
|
|
549
|
+
@vxe-button-dropdown-panel-background-color : #fff;
|
|
550
|
+
@vxe-button-height-default : 34px;
|
|
551
|
+
@vxe-button-height-medium : 32px;
|
|
552
|
+
@vxe-button-height-small : 30px;
|
|
553
|
+
@vxe-button-height-mini : 28px;
|
|
554
|
+
@vxe-button-round-border-radius-default : 17px;
|
|
555
|
+
@vxe-button-round-border-radius-medium : 16px;
|
|
556
|
+
@vxe-button-round-border-radius-small : 15px;
|
|
557
|
+
@vxe-button-round-border-radius-mini : 14px;
|
|
558
|
+
|
|
559
|
+
/*input*/
|
|
560
|
+
@vxe-input-background-color : #fff;
|
|
561
|
+
@vxe-input-panel-background-color : @vxe-input-background-color;
|
|
562
|
+
@vxe-input-number-disabled-color : #e4e7ed;
|
|
563
|
+
@vxe-input-date-festival-color : #999999;
|
|
564
|
+
@vxe-input-date-festival-important-color : @vxe-primary-color;
|
|
565
|
+
@vxe-input-date-notice-background-color : #FF0000;
|
|
566
|
+
@vxe-input-date-picker-hover-background-color : #f2f6fc;
|
|
567
|
+
@vxe-input-date-picker-selected-color : #fff;
|
|
568
|
+
@vxe-input-date-time-confirm-button-color : #fff;
|
|
569
|
+
@vxe-input-date-picker-festival-selected-color : @vxe-input-date-picker-selected-color;
|
|
570
|
+
@vxe-input-date-picker-notice-selected-background-color : @vxe-input-date-picker-selected-color;
|
|
571
|
+
@vxe-input-date-extra-color : #67c23a;
|
|
572
|
+
@vxe-input-date-extra-important-color : #fd2222;
|
|
573
|
+
@vxe-input-date-title-height-default : 30px;
|
|
574
|
+
@vxe-input-date-title-height-medium : 29px;
|
|
575
|
+
@vxe-input-date-title-height-small : 28px;
|
|
576
|
+
@vxe-input-date-title-height-mini : 26px;
|
|
577
|
+
@vxe-input-date-time-week-row-height-default : 38px;
|
|
578
|
+
@vxe-input-date-time-week-row-height-medium : 36px;
|
|
579
|
+
@vxe-input-date-time-week-row-height-small : 34px;
|
|
580
|
+
@vxe-input-date-time-week-row-height-mini : 32px;
|
|
581
|
+
@vxe-input-date-month-year-row-height-default : 48px;
|
|
582
|
+
@vxe-input-date-month-year-row-height-medium : 46px;
|
|
583
|
+
@vxe-input-date-month-year-row-height-small : 44px;
|
|
584
|
+
@vxe-input-date-month-year-row-height-mini : 42px;
|
|
585
|
+
@vxe-input-date-quarter-row-height-default : 60px;
|
|
586
|
+
@vxe-input-date-quarter-row-height-medium : 58px;
|
|
587
|
+
@vxe-input-date-quarter-row-height-small : 56px;
|
|
588
|
+
@vxe-input-date-quarter-row-height-mini : 54px;
|
|
589
|
+
@vxe-input-height-default : @vxe-button-height-default;
|
|
590
|
+
@vxe-input-height-medium : @vxe-button-height-medium;
|
|
591
|
+
@vxe-input-height-small : @vxe-button-height-small;
|
|
592
|
+
@vxe-input-height-mini : @vxe-button-height-mini;
|
|
593
|
+
@vxe-input-count-color : #999;
|
|
594
|
+
@vxe-input-count-background-color : #fff;
|
|
595
|
+
@vxe-input-count-error-color : @vxe-table-validate-error-color;
|
|
596
|
+
|
|
597
|
+
/*textarea*/
|
|
598
|
+
@vxe-textarea-line-height : 1.5715;
|
|
599
|
+
@vxe-textarea-background-color : #fff;
|
|
600
|
+
|
|
601
|
+
/*form*/
|
|
602
|
+
@vxe-form-item-min-height-default : 36px;
|
|
603
|
+
@vxe-form-item-min-height-medium : 34px;
|
|
604
|
+
@vxe-form-item-min-height-small : 32px;
|
|
605
|
+
@vxe-form-item-min-height-mini : 30px;
|
|
606
|
+
@vxe-form-background-color : #fff;
|
|
607
|
+
@vxe-form-validate-error-color : @vxe-table-validate-error-color;
|
|
608
|
+
@vxe-form-validate-error-background-color : inherit;
|
|
609
|
+
|
|
610
|
+
/*select*/
|
|
611
|
+
@vxe-select-option-height-default : 30px;
|
|
612
|
+
@vxe-select-option-height-medium : 28px;
|
|
613
|
+
@vxe-select-option-height-small : 26px;
|
|
614
|
+
@vxe-select-option-height-mini : 24px;
|
|
615
|
+
@vxe-select-option-hover-background-color : #f5f7fa;
|
|
616
|
+
@vxe-select-panel-background-color : #fff;
|
|
617
|
+
@vxe-select-empty-color : #C0C4CC;
|
|
618
|
+
@vxe-optgroup-title-color : #909399;
|
|
619
|
+
|
|
620
|
+
/*switch*/
|
|
621
|
+
@vxe-switch-font-color : #fff;
|
|
622
|
+
@vxe-switch-icon-background-color : #fff;
|
|
623
|
+
@vxe-switch-open-background-color : @vxe-primary-color;
|
|
624
|
+
@vxe-switch-close-background-color : rgba(0, 0, 0, 0.35);
|
|
625
|
+
@vxe-switch-disabled-background-color : rgba(0, 0, 0, 0.15);
|
|
626
|
+
|
|
627
|
+
/*pulldown*/
|
|
628
|
+
@vxe-pulldown-panel-background-color : #fff;
|
|
629
|
+
|