@syncfusion/ej2-vue-splitbuttons 20.4.50 → 21.1.35

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.
Files changed (64) hide show
  1. package/CHANGELOG.md +2 -26
  2. package/dist/ej2-vue-splitbuttons.umd.min.js +2 -2
  3. package/dist/ej2-vue-splitbuttons.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-vue-splitbuttons.es2015.js +303 -434
  5. package/dist/es6/ej2-vue-splitbuttons.es2015.js.map +1 -1
  6. package/dist/es6/ej2-vue-splitbuttons.es5.js +343 -513
  7. package/dist/es6/ej2-vue-splitbuttons.es5.js.map +1 -1
  8. package/dist/global/ej2-vue-splitbuttons.min.js +2 -2
  9. package/package.json +9 -9
  10. package/src/drop-down-button/dropdownbutton.component.d.ts +2 -26
  11. package/src/drop-down-button/dropdownbutton.component.js +95 -124
  12. package/src/drop-down-button/items.directive.d.ts +2 -12
  13. package/src/drop-down-button/items.directive.js +22 -71
  14. package/src/progress-button/progressbutton.component.d.ts +2 -27
  15. package/src/progress-button/progressbutton.component.js +98 -127
  16. package/src/split-button/items.directive.d.ts +2 -12
  17. package/src/split-button/items.directive.js +22 -71
  18. package/src/split-button/splitbutton.component.d.ts +2 -26
  19. package/src/split-button/splitbutton.component.js +95 -124
  20. package/styles/bootstrap-dark.css +44 -44
  21. package/styles/bootstrap.css +44 -44
  22. package/styles/bootstrap4.css +44 -44
  23. package/styles/bootstrap5-dark.css +48 -48
  24. package/styles/bootstrap5.css +48 -48
  25. package/styles/button-group/bootstrap-dark.css +30 -30
  26. package/styles/button-group/bootstrap.css +30 -30
  27. package/styles/button-group/bootstrap4.css +31 -31
  28. package/styles/button-group/bootstrap5-dark.css +30 -30
  29. package/styles/button-group/bootstrap5.css +30 -30
  30. package/styles/button-group/fabric-dark.css +30 -30
  31. package/styles/button-group/fabric.css +30 -30
  32. package/styles/button-group/fluent-dark.css +30 -30
  33. package/styles/button-group/fluent.css +30 -30
  34. package/styles/button-group/highcontrast-light.css +30 -30
  35. package/styles/button-group/highcontrast.css +30 -30
  36. package/styles/button-group/material-dark.css +30 -30
  37. package/styles/button-group/material.css +30 -30
  38. package/styles/button-group/tailwind-dark.css +30 -30
  39. package/styles/button-group/tailwind.css +30 -30
  40. package/styles/fabric-dark.css +44 -44
  41. package/styles/fabric.css +44 -44
  42. package/styles/fluent-dark.css +48 -48
  43. package/styles/fluent.css +48 -48
  44. package/styles/highcontrast-light.css +44 -44
  45. package/styles/highcontrast.css +44 -44
  46. package/styles/material-dark.css +43 -43
  47. package/styles/material.css +43 -43
  48. package/styles/progress-button/bootstrap-dark.css +14 -14
  49. package/styles/progress-button/bootstrap.css +14 -14
  50. package/styles/progress-button/bootstrap4.css +13 -13
  51. package/styles/progress-button/bootstrap5-dark.css +18 -18
  52. package/styles/progress-button/bootstrap5.css +18 -18
  53. package/styles/progress-button/fabric-dark.css +14 -14
  54. package/styles/progress-button/fabric.css +14 -14
  55. package/styles/progress-button/fluent-dark.css +18 -18
  56. package/styles/progress-button/fluent.css +18 -18
  57. package/styles/progress-button/highcontrast-light.css +14 -14
  58. package/styles/progress-button/highcontrast.css +14 -14
  59. package/styles/progress-button/material-dark.css +13 -13
  60. package/styles/progress-button/material.css +13 -13
  61. package/styles/progress-button/tailwind-dark.css +18 -18
  62. package/styles/progress-button/tailwind.css +18 -18
  63. package/styles/tailwind-dark.css +48 -48
  64. package/styles/tailwind.css +48 -48
@@ -257,7 +257,7 @@
257
257
  .e-btn-group input:focus + label.e-btn,
258
258
  .e-css.e-btn-group .e-btn:focus,
259
259
  .e-css.e-btn-group input:focus + label.e-btn {
260
- background-color: #f3f4f6;
260
+ background: #f3f4f6;
261
261
  border-color: #d1d5db;
262
262
  color: #374151;
263
263
  outline: #fff 0 solid;
@@ -269,7 +269,7 @@
269
269
  .e-btn-group input:focus + label.e-btn.e-primary,
270
270
  .e-css.e-btn-group .e-btn:focus.e-primary,
271
271
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
272
- background-color: #4338ca;
272
+ background: #4338ca;
273
273
  border-color: #4f46e5;
274
274
  color: #fff;
275
275
  outline: #fff 0 solid;
@@ -280,7 +280,7 @@
280
280
  .e-btn-group input:focus + label.e-btn.e-success,
281
281
  .e-css.e-btn-group .e-btn:focus.e-success,
282
282
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
283
- background-color: #166534;
283
+ background: #166534;
284
284
  border-color: #15803d;
285
285
  color: #fff;
286
286
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
@@ -290,7 +290,7 @@
290
290
  .e-btn-group input:focus + label.e-btn.e-info,
291
291
  .e-css.e-btn-group .e-btn:focus.e-info,
292
292
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
293
- background-color: #155e75;
293
+ background: #155e75;
294
294
  border-color: #0e7490;
295
295
  color: #fff;
296
296
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
@@ -300,7 +300,7 @@
300
300
  .e-btn-group input:focus + label.e-btn.e-warning,
301
301
  .e-css.e-btn-group .e-btn:focus.e-warning,
302
302
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
303
- background-color: #9a3412;
303
+ background: #9a3412;
304
304
  border-color: #c2410c;
305
305
  color: #fff;
306
306
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
@@ -310,7 +310,7 @@
310
310
  .e-btn-group input:focus + label.e-btn.e-danger,
311
311
  .e-css.e-btn-group .e-btn:focus.e-danger,
312
312
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
313
- background-color: #b91c1c;
313
+ background: #b91c1c;
314
314
  border-color: #dc2626;
315
315
  color: #fff;
316
316
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.95), 0 0 0 4px #4f46e5;
@@ -370,7 +370,7 @@
370
370
  .e-css.e-btn-group .e-btn:active,
371
371
  .e-css.e-btn-group input:active + label.e-btn,
372
372
  .e-css.e-btn-group input:checked + label.e-btn {
373
- background-color: #e5e7eb;
373
+ background: #e5e7eb;
374
374
  border-color: #d1d5db;
375
375
  color: #374151;
376
376
  outline: #fff 0 solid;
@@ -383,7 +383,7 @@
383
383
  .e-css.e-btn-group .e-btn:active.e-primary,
384
384
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
385
385
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
386
- background-color: #3730a3;
386
+ background: #3730a3;
387
387
  border-color: #3730a3;
388
388
  color: #fff;
389
389
  outline: #fff 0 solid;
@@ -395,7 +395,7 @@
395
395
  .e-css.e-btn-group .e-btn:active.e-success,
396
396
  .e-css.e-btn-group input:active + label.e-btn.e-success,
397
397
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
398
- background-color: #14532d;
398
+ background: #14532d;
399
399
  border-color: #14532d;
400
400
  color: #fff;
401
401
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
@@ -406,7 +406,7 @@
406
406
  .e-css.e-btn-group .e-btn:active.e-info,
407
407
  .e-css.e-btn-group input:active + label.e-btn.e-info,
408
408
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
409
- background-color: #164e63;
409
+ background: #164e63;
410
410
  color: #fff;
411
411
  border-color: #164e63;
412
412
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
@@ -417,7 +417,7 @@
417
417
  .e-css.e-btn-group .e-btn:active.e-warning,
418
418
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
419
419
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
420
- background-color: #7c2d12;
420
+ background: #7c2d12;
421
421
  border-color: #7c2d12;
422
422
  color: #fff;
423
423
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
@@ -428,7 +428,7 @@
428
428
  .e-css.e-btn-group .e-btn:active.e-danger,
429
429
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
430
430
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
431
- background-color: #991b1b;
431
+ background: #991b1b;
432
432
  border-color: #991b1b;
433
433
  color: #fff;
434
434
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
@@ -439,7 +439,7 @@
439
439
  .e-css.e-btn-group .e-btn:active.e-outline,
440
440
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
441
441
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
442
- background-color: #e5e7eb;
442
+ background: #e5e7eb;
443
443
  border-color: #d1d5db;
444
444
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
445
445
  color: #374151;
@@ -450,7 +450,7 @@
450
450
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
451
451
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
452
452
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
453
- background-color: #3730a3;
453
+ background: #3730a3;
454
454
  border-color: #4f46e5;
455
455
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
456
456
  color: #fff;
@@ -461,7 +461,7 @@
461
461
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
462
462
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
463
463
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
464
- background-color: #14532d;
464
+ background: #14532d;
465
465
  border-color: #14532d;
466
466
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
467
467
  color: #fff;
@@ -472,7 +472,7 @@
472
472
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
473
473
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
474
474
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
475
- background-color: #164e63;
475
+ background: #164e63;
476
476
  border-color: #164e63;
477
477
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
478
478
  color: #fff;
@@ -483,7 +483,7 @@
483
483
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
484
484
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
485
485
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
486
- background-color: #7c2d12;
486
+ background: #7c2d12;
487
487
  border-color: #7c2d12;
488
488
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
489
489
  color: #fff;
@@ -494,7 +494,7 @@
494
494
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
495
495
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
496
496
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
497
- background-color: #991b1b;
497
+ background: #991b1b;
498
498
  border-color: #991b1b;
499
499
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
500
500
  color: #fff;
@@ -513,7 +513,7 @@
513
513
  .e-btn-group input:disabled + label.e-btn.e-primary,
514
514
  .e-css.e-btn-group .e-btn:disabled.e-primary,
515
515
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
516
- background-color: #a5b4fc;
516
+ background: #a5b4fc;
517
517
  border-color: #a5b4fc;
518
518
  box-shadow: none;
519
519
  color: #fff;
@@ -523,7 +523,7 @@
523
523
  .e-btn-group input:disabled + label.e-btn.e-success,
524
524
  .e-css.e-btn-group .e-btn:disabled.e-success,
525
525
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
526
- background-color: #86efac;
526
+ background: #86efac;
527
527
  border-color: #86efac;
528
528
  box-shadow: none;
529
529
  color: #fff;
@@ -533,7 +533,7 @@
533
533
  .e-btn-group input:disabled + label.e-btn.e-info,
534
534
  .e-css.e-btn-group .e-btn:disabled.e-info,
535
535
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
536
- background-color: #67e8f9;
536
+ background: #67e8f9;
537
537
  border-color: #67e8f9;
538
538
  box-shadow: none;
539
539
  color: #fff;
@@ -543,7 +543,7 @@
543
543
  .e-btn-group input:disabled + label.e-btn.e-warning,
544
544
  .e-css.e-btn-group .e-btn:disabled.e-warning,
545
545
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
546
- background-color: #fdba74;
546
+ background: #fdba74;
547
547
  border-color: #fdba74;
548
548
  box-shadow: none;
549
549
  color: #fff;
@@ -553,7 +553,7 @@
553
553
  .e-btn-group input:disabled + label.e-btn.e-danger,
554
554
  .e-css.e-btn-group .e-btn:disabled.e-danger,
555
555
  .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
556
- background-color: #fca5a5;
556
+ background: #fca5a5;
557
557
  border-color: #fca5a5;
558
558
  box-shadow: none;
559
559
  color: #fff;
@@ -564,7 +564,7 @@
564
564
  .e-css.e-btn-group .e-btn:disabled.e-link,
565
565
  .e-css.e-btn-group input:disabled + label.e-btn.e-link {
566
566
  color: #9ca3af;
567
- background-color: transparent;
567
+ background: transparent;
568
568
  box-shadow: none;
569
569
  text-decoration: none;
570
570
  border-color: transparent;
@@ -573,7 +573,7 @@
573
573
  .e-btn-group input:disabled + label.e-btn.e-outline,
574
574
  .e-css.e-btn-group .e-btn:disabled.e-outline,
575
575
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
576
- background-color: transparent;
576
+ background: transparent;
577
577
  border-color: #e5e7eb;
578
578
  color: #9ca3af;
579
579
  border-color: #d1d5db;
@@ -582,7 +582,7 @@
582
582
  .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
583
583
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
584
584
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
585
- background-color: transparent;
585
+ background: transparent;
586
586
  border-color: rgba(79, 70, 229, 0.65);
587
587
  box-shadow: none;
588
588
  color: rgba(79, 70, 229, 0.65);
@@ -592,7 +592,7 @@
592
592
  .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
593
593
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
594
594
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
595
- background-color: transparent;
595
+ background: transparent;
596
596
  border-color: rgba(21, 128, 61, 0.65);
597
597
  box-shadow: none;
598
598
  color: rgba(21, 128, 61, 0.65);
@@ -602,7 +602,7 @@
602
602
  .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
603
603
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
604
604
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
605
- background-color: transparent;
605
+ background: transparent;
606
606
  border-color: rgba(14, 116, 144, 0.65);
607
607
  box-shadow: none;
608
608
  color: rgba(14, 116, 144, 0.65);
@@ -612,7 +612,7 @@
612
612
  .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
613
613
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
614
614
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
615
- background-color: transparent;
615
+ background: transparent;
616
616
  border-color: rgba(194, 65, 12, 0.65);
617
617
  box-shadow: none;
618
618
  color: rgba(194, 65, 12, 0.65);
@@ -622,7 +622,7 @@
622
622
  .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
623
623
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
624
624
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
625
- background-color: transparent;
625
+ background: transparent;
626
626
  border-color: rgba(220, 38, 38, 0.65);
627
627
  box-shadow: none;
628
628
  color: rgba(220, 38, 38, 0.65);
@@ -811,7 +811,7 @@
811
811
  .e-btn-group input:focus + label.e-btn,
812
812
  .e-css.e-btn-group .e-btn:focus,
813
813
  .e-css.e-btn-group input:focus + label.e-btn {
814
- background-color: #414040;
814
+ background: #414040;
815
815
  border-color: #201f1f;
816
816
  color: #fff;
817
817
  outline: #c8c8c8 1px solid;
@@ -824,7 +824,7 @@
824
824
  .e-btn-group input:focus + label.e-btn.e-primary,
825
825
  .e-css.e-btn-group .e-btn:focus.e-primary,
826
826
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
827
- background-color: #0074cc;
827
+ background: #0074cc;
828
828
  border-color: #201f1f;
829
829
  color: #fff;
830
830
  outline: #c8c8c8 1px solid;
@@ -836,7 +836,7 @@
836
836
  .e-btn-group input:focus + label.e-btn.e-success,
837
837
  .e-css.e-btn-group .e-btn:focus.e-success,
838
838
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
839
- background-color: #37844d;
839
+ background: #37844d;
840
840
  border-color: #201f1f;
841
841
  color: #fff;
842
842
  box-shadow: none;
@@ -847,7 +847,7 @@
847
847
  .e-btn-group input:focus + label.e-btn.e-info,
848
848
  .e-css.e-btn-group .e-btn:focus.e-info,
849
849
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
850
- background-color: #1e79cb;
850
+ background: #1e79cb;
851
851
  border-color: #201f1f;
852
852
  color: #fff;
853
853
  box-shadow: none;
@@ -858,7 +858,7 @@
858
858
  .e-btn-group input:focus + label.e-btn.e-warning,
859
859
  .e-css.e-btn-group .e-btn:focus.e-warning,
860
860
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
861
- background-color: #bf7500;
861
+ background: #bf7500;
862
862
  border-color: #201f1f;
863
863
  color: #fff;
864
864
  box-shadow: none;
@@ -869,7 +869,7 @@
869
869
  .e-btn-group input:focus + label.e-btn.e-danger,
870
870
  .e-css.e-btn-group .e-btn:focus.e-danger,
871
871
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
872
- background-color: #cd2a19;
872
+ background: #cd2a19;
873
873
  border-color: #201f1f;
874
874
  color: #fff;
875
875
  box-shadow: none;
@@ -931,7 +931,7 @@
931
931
  .e-css.e-btn-group .e-btn:active,
932
932
  .e-css.e-btn-group input:active + label.e-btn,
933
933
  .e-css.e-btn-group input:checked + label.e-btn {
934
- background-color: #6f6c6c;
934
+ background: #6f6c6c;
935
935
  border-color: #6f6c6c;
936
936
  color: #fff;
937
937
  outline: #414040 0 solid;
@@ -944,7 +944,7 @@
944
944
  .e-css.e-btn-group .e-btn:active.e-primary,
945
945
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
946
946
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
947
- background-color: #005799;
947
+ background: #005799;
948
948
  border-color: #005799;
949
949
  color: #fff;
950
950
  outline: #414040 0 solid;
@@ -956,7 +956,7 @@
956
956
  .e-css.e-btn-group .e-btn:active.e-success,
957
957
  .e-css.e-btn-group input:active + label.e-btn.e-success,
958
958
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
959
- background-color: #255934;
959
+ background: #255934;
960
960
  border-color: #255934;
961
961
  color: #fff;
962
962
  box-shadow: none;
@@ -967,7 +967,7 @@
967
967
  .e-css.e-btn-group .e-btn:active.e-info,
968
968
  .e-css.e-btn-group input:active + label.e-btn.e-info,
969
969
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
970
- background-color: #165996;
970
+ background: #165996;
971
971
  color: #fff;
972
972
  border-color: #165996;
973
973
  box-shadow: none;
@@ -978,7 +978,7 @@
978
978
  .e-css.e-btn-group .e-btn:active.e-warning,
979
979
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
980
980
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
981
- background-color: #825000;
981
+ background: #825000;
982
982
  border-color: #825000;
983
983
  color: #fff;
984
984
  box-shadow: none;
@@ -989,7 +989,7 @@
989
989
  .e-css.e-btn-group .e-btn:active.e-danger,
990
990
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
991
991
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
992
- background-color: #961f12;
992
+ background: #961f12;
993
993
  border-color: #961f12;
994
994
  color: #fff;
995
995
  box-shadow: none;
@@ -1000,7 +1000,7 @@
1000
1000
  .e-css.e-btn-group .e-btn:active.e-outline,
1001
1001
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
1002
1002
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
1003
- background-color: #6f6c6c;
1003
+ background: #6f6c6c;
1004
1004
  border-color: #6f6c6c;
1005
1005
  box-shadow: none;
1006
1006
  color: #fff;
@@ -1011,7 +1011,7 @@
1011
1011
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
1012
1012
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
1013
1013
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
1014
- background-color: #005799;
1014
+ background: #005799;
1015
1015
  border-color: #005799;
1016
1016
  box-shadow: none;
1017
1017
  color: #fff;
@@ -1022,7 +1022,7 @@
1022
1022
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
1023
1023
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
1024
1024
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
1025
- background-color: #255934;
1025
+ background: #255934;
1026
1026
  border-color: #255934;
1027
1027
  box-shadow: none;
1028
1028
  color: #fff;
@@ -1033,7 +1033,7 @@
1033
1033
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
1034
1034
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
1035
1035
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
1036
- background-color: #165996;
1036
+ background: #165996;
1037
1037
  border-color: #165996;
1038
1038
  box-shadow: none;
1039
1039
  color: #fff;
@@ -1044,7 +1044,7 @@
1044
1044
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
1045
1045
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
1046
1046
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
1047
- background-color: #825000;
1047
+ background: #825000;
1048
1048
  border-color: #825000;
1049
1049
  box-shadow: none;
1050
1050
  color: #fff;
@@ -1055,7 +1055,7 @@
1055
1055
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
1056
1056
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
1057
1057
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
1058
- background-color: #961f12;
1058
+ background: #961f12;
1059
1059
  border-color: #961f12;
1060
1060
  box-shadow: none;
1061
1061
  color: #fff;
@@ -1074,7 +1074,7 @@
1074
1074
  .e-btn-group input:disabled + label.e-btn.e-primary,
1075
1075
  .e-css.e-btn-group .e-btn:disabled.e-primary,
1076
1076
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
1077
- background-color: #414040;
1077
+ background: #414040;
1078
1078
  border-color: #414040;
1079
1079
  box-shadow: none;
1080
1080
  color: #6f6c6c;
@@ -1084,7 +1084,7 @@
1084
1084
  .e-btn-group input:disabled + label.e-btn.e-success,
1085
1085
  .e-css.e-btn-group .e-btn:disabled.e-success,
1086
1086
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
1087
- background-color: #414040;
1087
+ background: #414040;
1088
1088
  border-color: #414040;
1089
1089
  box-shadow: none;
1090
1090
  color: #6f6c6c;
@@ -1094,7 +1094,7 @@
1094
1094
  .e-btn-group input:disabled + label.e-btn.e-info,
1095
1095
  .e-css.e-btn-group .e-btn:disabled.e-info,
1096
1096
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
1097
- background-color: #414040;
1097
+ background: #414040;
1098
1098
  border-color: #414040;
1099
1099
  box-shadow: none;
1100
1100
  color: #6f6c6c;
@@ -1104,7 +1104,7 @@
1104
1104
  .e-btn-group input:disabled + label.e-btn.e-warning,
1105
1105
  .e-css.e-btn-group .e-btn:disabled.e-warning,
1106
1106
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
1107
- background-color: #414040;
1107
+ background: #414040;
1108
1108
  border-color: #414040;
1109
1109
  box-shadow: none;
1110
1110
  color: #6f6c6c;
@@ -1114,7 +1114,7 @@
1114
1114
  .e-btn-group input:disabled + label.e-btn.e-danger,
1115
1115
  .e-css.e-btn-group .e-btn:disabled.e-danger,
1116
1116
  .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
1117
- background-color: #414040;
1117
+ background: #414040;
1118
1118
  border-color: #414040;
1119
1119
  box-shadow: none;
1120
1120
  color: #6f6c6c;
@@ -1125,7 +1125,7 @@
1125
1125
  .e-css.e-btn-group .e-btn:disabled.e-link,
1126
1126
  .e-css.e-btn-group input:disabled + label.e-btn.e-link {
1127
1127
  color: #6f6c6c;
1128
- background-color: transparent;
1128
+ background: transparent;
1129
1129
  box-shadow: none;
1130
1130
  text-decoration: none;
1131
1131
  border-color: transparent;
@@ -1134,7 +1134,7 @@
1134
1134
  .e-btn-group input:disabled + label.e-btn.e-outline,
1135
1135
  .e-css.e-btn-group .e-btn:disabled.e-outline,
1136
1136
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
1137
- background-color: transparent;
1137
+ background: transparent;
1138
1138
  border-color: #414040;
1139
1139
  box-shadow: none;
1140
1140
  color: #6f6c6c;
@@ -1144,7 +1144,7 @@
1144
1144
  .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
1145
1145
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
1146
1146
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
1147
- background-color: transparent;
1147
+ background: transparent;
1148
1148
  border-color: #414040;
1149
1149
  box-shadow: none;
1150
1150
  color: #6f6c6c;
@@ -1154,7 +1154,7 @@
1154
1154
  .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
1155
1155
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
1156
1156
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
1157
- background-color: transparent;
1157
+ background: transparent;
1158
1158
  border-color: #414040;
1159
1159
  box-shadow: none;
1160
1160
  color: #6f6c6c;
@@ -1164,7 +1164,7 @@
1164
1164
  .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
1165
1165
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
1166
1166
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
1167
- background-color: transparent;
1167
+ background: transparent;
1168
1168
  border-color: #414040;
1169
1169
  box-shadow: none;
1170
1170
  color: #6f6c6c;
@@ -1174,7 +1174,7 @@
1174
1174
  .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
1175
1175
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
1176
1176
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
1177
- background-color: transparent;
1177
+ background: transparent;
1178
1178
  border-color: #414040;
1179
1179
  box-shadow: none;
1180
1180
  color: #6f6c6c;
@@ -1184,7 +1184,7 @@
1184
1184
  .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
1185
1185
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
1186
1186
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
1187
- background-color: transparent;
1187
+ background: transparent;
1188
1188
  border-color: #414040;
1189
1189
  box-shadow: none;
1190
1190
  color: #6f6c6c;
@@ -1711,7 +1711,7 @@
1711
1711
  stroke: #fff;
1712
1712
  }
1713
1713
  .e-progress-btn.e-warning.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-warning.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle {
1714
- stroke: rgba(255, 255, 255, 0.2);
1714
+ stroke: #fff;
1715
1715
  }
1716
1716
  .e-progress-btn.e-warning.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-flat:hover.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-warning.e-flat:focus.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc {
1717
1717
  stroke: #fff;
@@ -1798,48 +1798,48 @@
1798
1798
  }
1799
1799
 
1800
1800
  .e-progress {
1801
- background-color: rgba(218, 218, 218, 0.2);
1801
+ background: rgba(218, 218, 218, 0.2);
1802
1802
  }
1803
1803
 
1804
1804
  *.e-primary .e-progress,
1805
1805
  *.e-success .e-progress,
1806
1806
  *.e-danger .e-progress,
1807
1807
  *.e-info .e-progress {
1808
- background-color: rgba(218, 218, 218, 0.2);
1808
+ background: rgba(218, 218, 218, 0.2);
1809
1809
  }
1810
1810
 
1811
1811
  *.e-warning .e-progress {
1812
- background-color: rgba(218, 218, 218, 0.2);
1812
+ background: rgba(218, 218, 218, 0.2);
1813
1813
  }
1814
1814
 
1815
1815
  *.e-flat.e-primary .e-progress {
1816
- background-color: rgba(255, 64, 129, 0.2);
1816
+ background: rgba(255, 64, 129, 0.2);
1817
1817
  }
1818
1818
  *.e-flat.e-success .e-progress {
1819
- background-color: rgba(77, 132, 29, 0.2);
1819
+ background: rgba(77, 132, 29, 0.2);
1820
1820
  }
1821
1821
  *.e-flat.e-info .e-progress {
1822
- background-color: rgba(3, 120, 213, 0.2);
1822
+ background: rgba(3, 120, 213, 0.2);
1823
1823
  }
1824
1824
  *.e-flat.e-warning .e-progress {
1825
- background-color: rgba(193, 87, 0, 0.2);
1825
+ background: rgba(193, 87, 0, 0.2);
1826
1826
  }
1827
1827
  *.e-flat.e-danger .e-progress {
1828
- background-color: rgba(214, 65, 19, 0.2);
1828
+ background: rgba(214, 65, 19, 0.2);
1829
1829
  }
1830
1830
 
1831
1831
  *.e-outline:not(:focus).e-primary .e-progress {
1832
- background-color: rgba(0, 116, 204, 0.2);
1832
+ background: rgba(0, 116, 204, 0.2);
1833
1833
  }
1834
1834
  *.e-outline:not(:focus).e-success .e-progress {
1835
- background-color: rgba(55, 132, 77, 0.2);
1835
+ background: rgba(55, 132, 77, 0.2);
1836
1836
  }
1837
1837
  *.e-outline:not(:focus).e-info .e-progress {
1838
- background-color: rgba(30, 121, 203, 0.2);
1838
+ background: rgba(30, 121, 203, 0.2);
1839
1839
  }
1840
1840
  *.e-outline:not(:focus).e-warning .e-progress {
1841
- background-color: rgba(191, 117, 0, 0.2);
1841
+ background: rgba(191, 117, 0, 0.2);
1842
1842
  }
1843
1843
  *.e-outline:not(:focus).e-danger .e-progress {
1844
- background-color: rgba(205, 42, 25, 0.2);
1844
+ background: rgba(205, 42, 25, 0.2);
1845
1845
  }