@syncfusion/ej2-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 (74) hide show
  1. package/CHANGELOG.md +2 -13
  2. package/dist/ej2-splitbuttons.min.js +2 -2
  3. package/dist/ej2-splitbuttons.umd.min.js +2 -2
  4. package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-splitbuttons.es2015.js +20 -5
  6. package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
  7. package/dist/es6/ej2-splitbuttons.es5.js +20 -5
  8. package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
  9. package/dist/global/ej2-splitbuttons.min.js +2 -2
  10. package/dist/global/ej2-splitbuttons.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +9 -8
  13. package/src/drop-down-button/drop-down-button.js +6 -2
  14. package/src/progress-button/progress-button-model.d.ts +3 -1
  15. package/src/progress-button/progress-button.d.ts +19 -1
  16. package/src/split-button/split-button.js +14 -3
  17. package/styles/bootstrap-dark.css +44 -44
  18. package/styles/bootstrap.css +44 -44
  19. package/styles/bootstrap4.css +44 -44
  20. package/styles/bootstrap5-dark.css +48 -48
  21. package/styles/bootstrap5.css +48 -48
  22. package/styles/button-group/_bootstrap5-definition.scss +2 -2
  23. package/styles/button-group/_fluent-definition.scss +2 -2
  24. package/styles/button-group/_tailwind-definition.scss +1 -1
  25. package/styles/button-group/_theme.scss +4 -2
  26. package/styles/button-group/bootstrap-dark.css +30 -30
  27. package/styles/button-group/bootstrap.css +30 -30
  28. package/styles/button-group/bootstrap4.css +31 -31
  29. package/styles/button-group/bootstrap5-dark.css +30 -30
  30. package/styles/button-group/bootstrap5.css +30 -30
  31. package/styles/button-group/fabric-dark.css +30 -30
  32. package/styles/button-group/fabric.css +30 -30
  33. package/styles/button-group/fluent-dark.css +30 -30
  34. package/styles/button-group/fluent.css +30 -30
  35. package/styles/button-group/highcontrast-light.css +30 -30
  36. package/styles/button-group/highcontrast.css +30 -30
  37. package/styles/button-group/material-dark.css +30 -30
  38. package/styles/button-group/material.css +30 -30
  39. package/styles/button-group/tailwind-dark.css +30 -30
  40. package/styles/button-group/tailwind.css +30 -30
  41. package/styles/drop-down-button/_bootstrap5-definition.scss +5 -5
  42. package/styles/drop-down-button/_fluent-definition.scss +5 -5
  43. package/styles/drop-down-button/_layout.scss +12 -0
  44. package/styles/drop-down-button/_tailwind-definition.scss +4 -4
  45. package/styles/fabric-dark.css +44 -44
  46. package/styles/fabric.css +44 -44
  47. package/styles/fluent-dark.css +48 -48
  48. package/styles/fluent.css +48 -48
  49. package/styles/highcontrast-light.css +44 -44
  50. package/styles/highcontrast.css +44 -44
  51. package/styles/material-dark.css +43 -43
  52. package/styles/material.css +43 -43
  53. package/styles/progress-button/_theme.scss +45 -19
  54. package/styles/progress-button/bootstrap-dark.css +14 -14
  55. package/styles/progress-button/bootstrap.css +14 -14
  56. package/styles/progress-button/bootstrap4.css +13 -13
  57. package/styles/progress-button/bootstrap5-dark.css +18 -18
  58. package/styles/progress-button/bootstrap5.css +18 -18
  59. package/styles/progress-button/fabric-dark.css +14 -14
  60. package/styles/progress-button/fabric.css +14 -14
  61. package/styles/progress-button/fluent-dark.css +18 -18
  62. package/styles/progress-button/fluent.css +18 -18
  63. package/styles/progress-button/highcontrast-light.css +14 -14
  64. package/styles/progress-button/highcontrast.css +14 -14
  65. package/styles/progress-button/material-dark.css +13 -13
  66. package/styles/progress-button/material.css +13 -13
  67. package/styles/progress-button/tailwind-dark.css +18 -18
  68. package/styles/progress-button/tailwind.css +18 -18
  69. package/styles/tailwind-dark.css +48 -48
  70. package/styles/tailwind.css +48 -48
  71. package/styles/button-group/_material3-definition.scss +0 -31
  72. package/styles/drop-down-button/_material3-definition.scss +0 -50
  73. package/styles/progress-button/_material3-definition.scss +0 -21
  74. package/styles/split-button/_material3-definition.scss +0 -24
@@ -248,7 +248,7 @@
248
248
  .e-btn-group input:focus + label.e-btn,
249
249
  .e-css.e-btn-group .e-btn:focus,
250
250
  .e-css.e-btn-group input:focus + label.e-btn {
251
- background-color: #000;
251
+ background: #000;
252
252
  border-color: #fff;
253
253
  color: #fff;
254
254
  outline: #fff 1px solid;
@@ -262,7 +262,7 @@
262
262
  .e-btn-group input:focus + label.e-btn.e-primary,
263
263
  .e-css.e-btn-group .e-btn:focus.e-primary,
264
264
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
265
- background-color: #ffd939;
265
+ background: #ffd939;
266
266
  border-color: #ffd939;
267
267
  color: #000;
268
268
  outline: #ffd939 1px solid;
@@ -274,7 +274,7 @@
274
274
  .e-btn-group input:focus + label.e-btn.e-success,
275
275
  .e-css.e-btn-group .e-btn:focus.e-success,
276
276
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
277
- background-color: #166600;
277
+ background: #166600;
278
278
  border-color: #166600;
279
279
  color: #fff;
280
280
  box-shadow: none;
@@ -285,7 +285,7 @@
285
285
  .e-btn-group input:focus + label.e-btn.e-info,
286
286
  .e-css.e-btn-group .e-btn:focus.e-info,
287
287
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
288
- background-color: #0056b3;
288
+ background: #0056b3;
289
289
  border-color: #0056b3;
290
290
  color: #fff;
291
291
  box-shadow: none;
@@ -296,7 +296,7 @@
296
296
  .e-btn-group input:focus + label.e-btn.e-warning,
297
297
  .e-css.e-btn-group .e-btn:focus.e-warning,
298
298
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
299
- background-color: #944000;
299
+ background: #944000;
300
300
  border-color: #944000;
301
301
  color: #fff;
302
302
  box-shadow: none;
@@ -307,7 +307,7 @@
307
307
  .e-btn-group input:focus + label.e-btn.e-danger,
308
308
  .e-css.e-btn-group .e-btn:focus.e-danger,
309
309
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
310
- background-color: #b30900;
310
+ background: #b30900;
311
311
  border-color: #b30900;
312
312
  color: #fff;
313
313
  box-shadow: none;
@@ -369,7 +369,7 @@
369
369
  .e-css.e-btn-group .e-btn:active,
370
370
  .e-css.e-btn-group input:active + label.e-btn,
371
371
  .e-css.e-btn-group input:checked + label.e-btn {
372
- background-color: #ffd939;
372
+ background: #ffd939;
373
373
  border-color: #ffd939;
374
374
  color: #000;
375
375
  outline: #fff 0 solid;
@@ -382,7 +382,7 @@
382
382
  .e-css.e-btn-group .e-btn:active.e-primary,
383
383
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
384
384
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
385
- background-color: #ffd939;
385
+ background: #ffd939;
386
386
  border-color: #ffd939;
387
387
  color: #000;
388
388
  outline: #fff 0 solid;
@@ -394,7 +394,7 @@
394
394
  .e-css.e-btn-group .e-btn:active.e-success,
395
395
  .e-css.e-btn-group input:active + label.e-btn.e-success,
396
396
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
397
- background-color: #fff;
397
+ background: #fff;
398
398
  border-color: #fff;
399
399
  color: #166600;
400
400
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -405,7 +405,7 @@
405
405
  .e-css.e-btn-group .e-btn:active.e-info,
406
406
  .e-css.e-btn-group input:active + label.e-btn.e-info,
407
407
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
408
- background-color: #fff;
408
+ background: #fff;
409
409
  color: #0056b3;
410
410
  border-color: #fff;
411
411
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -416,7 +416,7 @@
416
416
  .e-css.e-btn-group .e-btn:active.e-warning,
417
417
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
418
418
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
419
- background-color: #fff;
419
+ background: #fff;
420
420
  border-color: #fff;
421
421
  color: #944000;
422
422
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -427,7 +427,7 @@
427
427
  .e-css.e-btn-group .e-btn:active.e-danger,
428
428
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
429
429
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
430
- background-color: #fff;
430
+ background: #fff;
431
431
  border-color: #fff;
432
432
  color: #b30900;
433
433
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -438,7 +438,7 @@
438
438
  .e-css.e-btn-group .e-btn:active.e-outline,
439
439
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
440
440
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
441
- background-color: #ffd939;
441
+ background: #ffd939;
442
442
  border-color: #ffd939;
443
443
  box-shadow: none;
444
444
  color: #000;
@@ -449,7 +449,7 @@
449
449
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
450
450
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
451
451
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
452
- background-color: #ffd939;
452
+ background: #ffd939;
453
453
  border-color: #ffd939;
454
454
  box-shadow: none;
455
455
  color: #000;
@@ -460,7 +460,7 @@
460
460
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
461
461
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
462
462
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
463
- background-color: #fff;
463
+ background: #fff;
464
464
  border-color: #fff;
465
465
  box-shadow: none;
466
466
  color: #166600;
@@ -471,7 +471,7 @@
471
471
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
472
472
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
473
473
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
474
- background-color: #fff;
474
+ background: #fff;
475
475
  border-color: #fff;
476
476
  box-shadow: none;
477
477
  color: #0056b3;
@@ -482,7 +482,7 @@
482
482
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
483
483
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
484
484
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
485
- background-color: #fff;
485
+ background: #fff;
486
486
  border-color: #fff;
487
487
  box-shadow: none;
488
488
  color: #944000;
@@ -493,7 +493,7 @@
493
493
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
494
494
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
495
495
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
496
- background-color: #fff;
496
+ background: #fff;
497
497
  border-color: #fff;
498
498
  box-shadow: none;
499
499
  color: #b30900;
@@ -512,7 +512,7 @@
512
512
  .e-btn-group input:disabled + label.e-btn.e-primary,
513
513
  .e-css.e-btn-group .e-btn:disabled.e-primary,
514
514
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
515
- background-color: #000;
515
+ background: #000;
516
516
  border-color: #757575;
517
517
  box-shadow: none;
518
518
  color: #757575;
@@ -522,7 +522,7 @@
522
522
  .e-btn-group input:disabled + label.e-btn.e-success,
523
523
  .e-css.e-btn-group .e-btn:disabled.e-success,
524
524
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
525
- background-color: #000;
525
+ background: #000;
526
526
  border-color: #757575;
527
527
  box-shadow: none;
528
528
  color: #757575;
@@ -532,7 +532,7 @@
532
532
  .e-btn-group input:disabled + label.e-btn.e-info,
533
533
  .e-css.e-btn-group .e-btn:disabled.e-info,
534
534
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
535
- background-color: #000;
535
+ background: #000;
536
536
  border-color: #757575;
537
537
  box-shadow: none;
538
538
  color: #757575;
@@ -542,7 +542,7 @@
542
542
  .e-btn-group input:disabled + label.e-btn.e-warning,
543
543
  .e-css.e-btn-group .e-btn:disabled.e-warning,
544
544
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
545
- background-color: #000;
545
+ background: #000;
546
546
  border-color: #757575;
547
547
  box-shadow: none;
548
548
  color: #757575;
@@ -552,7 +552,7 @@
552
552
  .e-btn-group input:disabled + label.e-btn.e-danger,
553
553
  .e-css.e-btn-group .e-btn:disabled.e-danger,
554
554
  .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
555
- background-color: #000;
555
+ background: #000;
556
556
  border-color: #757575;
557
557
  box-shadow: none;
558
558
  color: #757575;
@@ -563,7 +563,7 @@
563
563
  .e-css.e-btn-group .e-btn:disabled.e-link,
564
564
  .e-css.e-btn-group input:disabled + label.e-btn.e-link {
565
565
  color: #757575;
566
- background-color: transparent;
566
+ background: transparent;
567
567
  box-shadow: none;
568
568
  text-decoration: none;
569
569
  border-color: transparent;
@@ -572,7 +572,7 @@
572
572
  .e-btn-group input:disabled + label.e-btn.e-outline,
573
573
  .e-css.e-btn-group .e-btn:disabled.e-outline,
574
574
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
575
- background-color: #000;
575
+ background: #000;
576
576
  border-color: #757575;
577
577
  box-shadow: none;
578
578
  color: #757575;
@@ -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: #000;
585
+ background: #000;
586
586
  border-color: #757575;
587
587
  box-shadow: none;
588
588
  color: #757575;
@@ -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: #000;
595
+ background: #000;
596
596
  border-color: #757575;
597
597
  box-shadow: none;
598
598
  color: #757575;
@@ -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: #000;
605
+ background: #000;
606
606
  border-color: #757575;
607
607
  box-shadow: none;
608
608
  color: #757575;
@@ -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: #000;
615
+ background: #000;
616
616
  border-color: #757575;
617
617
  box-shadow: none;
618
618
  color: #757575;
@@ -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: #000;
625
+ background: #000;
626
626
  border-color: #757575;
627
627
  box-shadow: none;
628
628
  color: #757575;
@@ -249,7 +249,7 @@
249
249
  .e-btn-group input:focus + label.e-btn,
250
250
  .e-css.e-btn-group .e-btn:focus,
251
251
  .e-css.e-btn-group input:focus + label.e-btn {
252
- background-color: #878787;
252
+ background: #878787;
253
253
  border-color: transparent;
254
254
  color: #fff;
255
255
  outline: #616161 0 solid;
@@ -262,7 +262,7 @@
262
262
  .e-btn-group input:focus + label.e-btn.e-primary,
263
263
  .e-css.e-btn-group .e-btn:focus.e-primary,
264
264
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
265
- background-color: #0086c2;
265
+ background: #0086c2;
266
266
  border-color: transparent;
267
267
  color: #000;
268
268
  outline: #616161 0 solid;
@@ -274,7 +274,7 @@
274
274
  .e-btn-group input:focus + label.e-btn.e-success,
275
275
  .e-css.e-btn-group .e-btn:focus.e-success,
276
276
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
277
- background-color: #77c27a;
277
+ background: #77c27a;
278
278
  border-color: transparent;
279
279
  color: #fff;
280
280
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.26);
@@ -285,7 +285,7 @@
285
285
  .e-btn-group input:focus + label.e-btn.e-info,
286
286
  .e-css.e-btn-group .e-btn:focus.e-info,
287
287
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
288
- background-color: #3fbef7;
288
+ background: #3fbef7;
289
289
  border-color: transparent;
290
290
  color: #fff;
291
291
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.26);
@@ -296,7 +296,7 @@
296
296
  .e-btn-group input:focus + label.e-btn.e-warning,
297
297
  .e-css.e-btn-group .e-btn:focus.e-warning,
298
298
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
299
- background-color: #ffb13d;
299
+ background: #ffb13d;
300
300
  border-color: transparent;
301
301
  color: #fff;
302
302
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.26);
@@ -307,7 +307,7 @@
307
307
  .e-btn-group input:focus + label.e-btn.e-danger,
308
308
  .e-css.e-btn-group .e-btn:focus.e-danger,
309
309
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
310
- background-color: #ff8b7c;
310
+ background: #ff8b7c;
311
311
  border-color: transparent;
312
312
  color: #fff;
313
313
  box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.26);
@@ -369,7 +369,7 @@
369
369
  .e-css.e-btn-group .e-btn:active,
370
370
  .e-css.e-btn-group input:active + label.e-btn,
371
371
  .e-css.e-btn-group input:checked + label.e-btn {
372
- background-color: #7d7d7d;
372
+ background: #7d7d7d;
373
373
  border-color: transparent;
374
374
  color: #fff;
375
375
  outline: #616161 0 solid;
@@ -382,7 +382,7 @@
382
382
  .e-css.e-btn-group .e-btn:active.e-primary,
383
383
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
384
384
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
385
- background-color: #0078ad;
385
+ background: #0078ad;
386
386
  border-color: transparent;
387
387
  color: #000;
388
388
  outline: #616161 0 solid;
@@ -394,7 +394,7 @@
394
394
  .e-css.e-btn-group .e-btn:active.e-success,
395
395
  .e-css.e-btn-group input:active + label.e-btn.e-success,
396
396
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
397
- background-color: #85c988;
397
+ background: #85c988;
398
398
  border-color: transparent;
399
399
  color: #fff;
400
400
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -405,7 +405,7 @@
405
405
  .e-css.e-btn-group .e-btn:active.e-info,
406
406
  .e-css.e-btn-group input:active + label.e-btn.e-info,
407
407
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
408
- background-color: #54c5f8;
408
+ background: #54c5f8;
409
409
  color: #fff;
410
410
  border-color: transparent;
411
411
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -416,7 +416,7 @@
416
416
  .e-css.e-btn-group .e-btn:active.e-warning,
417
417
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
418
418
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
419
- background-color: #ffb952;
419
+ background: #ffb952;
420
420
  border-color: transparent;
421
421
  color: #fff;
422
422
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -427,7 +427,7 @@
427
427
  .e-css.e-btn-group .e-btn:active.e-danger,
428
428
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
429
429
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
430
- background-color: #ff9789;
430
+ background: #ff9789;
431
431
  border-color: transparent;
432
432
  color: #fff;
433
433
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -438,7 +438,7 @@
438
438
  .e-css.e-btn-group .e-btn:active.e-outline,
439
439
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
440
440
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
441
- background-color: rgba(255, 255, 255, 0.24);
441
+ background: rgba(255, 255, 255, 0.24);
442
442
  border-color: #616161;
443
443
  box-shadow: none;
444
444
  color: #fff;
@@ -449,7 +449,7 @@
449
449
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
450
450
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
451
451
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
452
- background-color: #0078ad;
452
+ background: #0078ad;
453
453
  border-color: transparent;
454
454
  box-shadow: none;
455
455
  color: #000;
@@ -460,7 +460,7 @@
460
460
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
461
461
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
462
462
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
463
- background-color: #85c988;
463
+ background: #85c988;
464
464
  border-color: transparent;
465
465
  box-shadow: none;
466
466
  color: #fff;
@@ -471,7 +471,7 @@
471
471
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
472
472
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
473
473
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
474
- background-color: #54c5f8;
474
+ background: #54c5f8;
475
475
  border-color: transparent;
476
476
  box-shadow: none;
477
477
  color: #fff;
@@ -482,7 +482,7 @@
482
482
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
483
483
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
484
484
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
485
- background-color: #ffb952;
485
+ background: #ffb952;
486
486
  border-color: transparent;
487
487
  box-shadow: none;
488
488
  color: #fff;
@@ -493,7 +493,7 @@
493
493
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
494
494
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
495
495
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
496
- background-color: #ff9789;
496
+ background: #ff9789;
497
497
  border-color: transparent;
498
498
  box-shadow: none;
499
499
  color: #fff;
@@ -512,7 +512,7 @@
512
512
  .e-btn-group input:disabled + label.e-btn.e-primary,
513
513
  .e-css.e-btn-group .e-btn:disabled.e-primary,
514
514
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
515
- background-color: rgba(255, 255, 255, 0.1);
515
+ background: rgba(255, 255, 255, 0.1);
516
516
  border-color: transparent;
517
517
  box-shadow: none;
518
518
  color: rgba(255, 255, 255, 0.3);
@@ -522,7 +522,7 @@
522
522
  .e-btn-group input:disabled + label.e-btn.e-success,
523
523
  .e-css.e-btn-group .e-btn:disabled.e-success,
524
524
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
525
- background-color: rgba(255, 255, 255, 0.1);
525
+ background: rgba(255, 255, 255, 0.1);
526
526
  border-color: transparent;
527
527
  box-shadow: none;
528
528
  color: rgba(255, 255, 255, 0.3);
@@ -532,7 +532,7 @@
532
532
  .e-btn-group input:disabled + label.e-btn.e-info,
533
533
  .e-css.e-btn-group .e-btn:disabled.e-info,
534
534
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
535
- background-color: rgba(255, 255, 255, 0.1);
535
+ background: rgba(255, 255, 255, 0.1);
536
536
  border-color: transparent;
537
537
  box-shadow: none;
538
538
  color: rgba(255, 255, 255, 0.3);
@@ -542,7 +542,7 @@
542
542
  .e-btn-group input:disabled + label.e-btn.e-warning,
543
543
  .e-css.e-btn-group .e-btn:disabled.e-warning,
544
544
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
545
- background-color: rgba(255, 255, 255, 0.1);
545
+ background: rgba(255, 255, 255, 0.1);
546
546
  border-color: transparent;
547
547
  box-shadow: none;
548
548
  color: rgba(255, 255, 255, 0.3);
@@ -552,7 +552,7 @@
552
552
  .e-btn-group input:disabled + label.e-btn.e-danger,
553
553
  .e-css.e-btn-group .e-btn:disabled.e-danger,
554
554
  .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
555
- background-color: rgba(255, 255, 255, 0.1);
555
+ background: rgba(255, 255, 255, 0.1);
556
556
  border-color: transparent;
557
557
  box-shadow: none;
558
558
  color: rgba(255, 255, 255, 0.3);
@@ -563,7 +563,7 @@
563
563
  .e-css.e-btn-group .e-btn:disabled.e-link,
564
564
  .e-css.e-btn-group input:disabled + label.e-btn.e-link {
565
565
  color: rgba(255, 255, 255, 0.3);
566
- background-color: transparent;
566
+ background: transparent;
567
567
  box-shadow: none;
568
568
  text-decoration: none;
569
569
  border-color: transparent;
@@ -572,7 +572,7 @@
572
572
  .e-btn-group input:disabled + label.e-btn.e-outline,
573
573
  .e-css.e-btn-group .e-btn:disabled.e-outline,
574
574
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
575
- background-color: transparent;
575
+ background: transparent;
576
576
  border-color: rgba(97, 97, 97, 0.3);
577
577
  box-shadow: none;
578
578
  color: rgba(255, 255, 255, 0.3);
@@ -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(97, 97, 97, 0.3);
587
587
  box-shadow: none;
588
588
  color: rgba(255, 255, 255, 0.3);
@@ -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(97, 97, 97, 0.3);
597
597
  box-shadow: none;
598
598
  color: rgba(255, 255, 255, 0.3);
@@ -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(97, 97, 97, 0.3);
607
607
  box-shadow: none;
608
608
  color: rgba(255, 255, 255, 0.3);
@@ -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(97, 97, 97, 0.3);
617
617
  box-shadow: none;
618
618
  color: rgba(255, 255, 255, 0.3);
@@ -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(97, 97, 97, 0.3);
627
627
  box-shadow: none;
628
628
  color: rgba(255, 255, 255, 0.3);