@syncfusion/ej2-splitbuttons 20.4.50 → 21.1.37

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: #f3f2f1;
251
+ background: #f3f2f1;
252
252
  border-color: #8a8886;
253
253
  color: #323130;
254
254
  outline: 1px solid;
@@ -261,7 +261,7 @@
261
261
  .e-btn-group input:focus + label.e-btn.e-primary,
262
262
  .e-css.e-btn-group .e-btn:focus.e-primary,
263
263
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
264
- background-color: #006cbf;
264
+ background: #006cbf;
265
265
  border-color: #0078d4;
266
266
  color: #fff;
267
267
  outline: 1px solid;
@@ -273,7 +273,7 @@
273
273
  .e-btn-group input:focus + label.e-btn.e-success,
274
274
  .e-css.e-btn-group .e-btn:focus.e-success,
275
275
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
276
- background-color: #0a5f0a;
276
+ background: #0a5f0a;
277
277
  border-color: #0b6a0b;
278
278
  color: #fff;
279
279
  box-shadow: 0 0 rgba(0, 0, 0, 0);
@@ -284,7 +284,7 @@
284
284
  .e-btn-group input:focus + label.e-btn.e-info,
285
285
  .e-css.e-btn-group .e-btn:focus.e-info,
286
286
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
287
- background-color: #03767a;
287
+ background: #03767a;
288
288
  border-color: #038387;
289
289
  color: #fff;
290
290
  box-shadow: 0 0 rgba(0, 0, 0, 0);
@@ -295,7 +295,7 @@
295
295
  .e-btn-group input:focus + label.e-btn.e-warning,
296
296
  .e-css.e-btn-group .e-btn:focus.e-warning,
297
297
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
298
- background-color: #cf6228;
298
+ background: #cf6228;
299
299
  border-color: #ca5010;
300
300
  color: #fff;
301
301
  box-shadow: 0 0 rgba(0, 0, 0, 0);
@@ -306,7 +306,7 @@
306
306
  .e-btn-group input:focus + label.e-btn.e-danger,
307
307
  .e-css.e-btn-group .e-btn:focus.e-danger,
308
308
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
309
- background-color: #bc2f32;
309
+ background: #bc2f32;
310
310
  border-color: #d13438;
311
311
  color: #fff;
312
312
  box-shadow: 0 0 rgba(0, 0, 0, 0);
@@ -368,7 +368,7 @@
368
368
  .e-css.e-btn-group .e-btn:active,
369
369
  .e-css.e-btn-group input:active + label.e-btn,
370
370
  .e-css.e-btn-group input:checked + label.e-btn {
371
- background-color: #edebe9;
371
+ background: #edebe9;
372
372
  border-color: #8a8886;
373
373
  color: #323130;
374
374
  box-shadow: none;
@@ -379,7 +379,7 @@
379
379
  .e-css.e-btn-group .e-btn:active.e-primary,
380
380
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
381
381
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
382
- background-color: #0060aa;
382
+ background: #0060aa;
383
383
  border-color: #0060aa;
384
384
  color: #fff;
385
385
  box-shadow: none;
@@ -390,7 +390,7 @@
390
390
  .e-css.e-btn-group .e-btn:active.e-success,
391
391
  .e-css.e-btn-group input:active + label.e-btn.e-success,
392
392
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
393
- background-color: #095509;
393
+ background: #095509;
394
394
  border-color: #095509;
395
395
  color: #fff;
396
396
  box-shadow: none;
@@ -401,7 +401,7 @@
401
401
  .e-css.e-btn-group .e-btn:active.e-info,
402
402
  .e-css.e-btn-group input:active + label.e-btn.e-info,
403
403
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
404
- background-color: #359c9f;
404
+ background: #359c9f;
405
405
  color: #fff;
406
406
  border-color: #359c9f;
407
407
  box-shadow: none;
@@ -412,7 +412,7 @@
412
412
  .e-css.e-btn-group .e-btn:active.e-warning,
413
413
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
414
414
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
415
- background-color: #d57340;
415
+ background: #d57340;
416
416
  border-color: #d57340;
417
417
  color: #fff;
418
418
  box-shadow: none;
@@ -423,7 +423,7 @@
423
423
  .e-css.e-btn-group .e-btn:active.e-danger,
424
424
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
425
425
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
426
- background-color: #a72a2d;
426
+ background: #a72a2d;
427
427
  border-color: #a72a2d;
428
428
  color: #fff;
429
429
  box-shadow: none;
@@ -434,7 +434,7 @@
434
434
  .e-css.e-btn-group .e-btn:active.e-outline,
435
435
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
436
436
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
437
- background-color: #edebe9;
437
+ background: #edebe9;
438
438
  border-color: #8a8886;
439
439
  box-shadow: none;
440
440
  color: #323130;
@@ -445,7 +445,7 @@
445
445
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
446
446
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
447
447
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
448
- background-color: #0060aa;
448
+ background: #0060aa;
449
449
  border-color: #0078d4;
450
450
  box-shadow: none;
451
451
  color: #fff;
@@ -456,7 +456,7 @@
456
456
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
457
457
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
458
458
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
459
- background-color: #095509;
459
+ background: #095509;
460
460
  border-color: #095509;
461
461
  box-shadow: none;
462
462
  color: #fff;
@@ -467,7 +467,7 @@
467
467
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
468
468
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
469
469
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
470
- background-color: #359c9f;
470
+ background: #359c9f;
471
471
  border-color: #359c9f;
472
472
  box-shadow: none;
473
473
  color: #fff;
@@ -478,7 +478,7 @@
478
478
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
479
479
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
480
480
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
481
- background-color: #d57340;
481
+ background: #d57340;
482
482
  border-color: #d57340;
483
483
  box-shadow: none;
484
484
  color: #fff;
@@ -489,7 +489,7 @@
489
489
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
490
490
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
491
491
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
492
- background-color: #a72a2d;
492
+ background: #a72a2d;
493
493
  border-color: #a72a2d;
494
494
  box-shadow: none;
495
495
  color: #fff;
@@ -508,7 +508,7 @@
508
508
  .e-btn-group input:disabled + label.e-btn.e-primary,
509
509
  .e-css.e-btn-group .e-btn:disabled.e-primary,
510
510
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
511
- background-color: #f3f2f1;
511
+ background: #f3f2f1;
512
512
  border-color: #f3f2f1;
513
513
  box-shadow: none;
514
514
  color: #a19f9d;
@@ -519,7 +519,7 @@
519
519
  .e-btn-group input:disabled + label.e-btn.e-success,
520
520
  .e-css.e-btn-group .e-btn:disabled.e-success,
521
521
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
522
- background-color: #f3f2f1;
522
+ background: #f3f2f1;
523
523
  border-color: #f3f2f1;
524
524
  box-shadow: none;
525
525
  color: #a19f9d;
@@ -530,7 +530,7 @@
530
530
  .e-btn-group input:disabled + label.e-btn.e-info,
531
531
  .e-css.e-btn-group .e-btn:disabled.e-info,
532
532
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
533
- background-color: #f3f2f1;
533
+ background: #f3f2f1;
534
534
  border-color: #f3f2f1;
535
535
  box-shadow: none;
536
536
  color: #a19f9d;
@@ -541,7 +541,7 @@
541
541
  .e-btn-group input:disabled + label.e-btn.e-warning,
542
542
  .e-css.e-btn-group .e-btn:disabled.e-warning,
543
543
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
544
- background-color: #f3f2f1;
544
+ background: #f3f2f1;
545
545
  border-color: #f3f2f1;
546
546
  box-shadow: none;
547
547
  color: #a19f9d;
@@ -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: #f3f2f1;
555
+ background: #f3f2f1;
556
556
  border-color: #f3f2f1;
557
557
  box-shadow: none;
558
558
  color: #a19f9d;
@@ -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: #a19f9d;
567
- background-color: transparent;
567
+ background: transparent;
568
568
  box-shadow: none;
569
569
  text-decoration: none;
570
570
  outline: none;
@@ -574,7 +574,7 @@
574
574
  .e-btn-group input:disabled + label.e-btn.e-outline,
575
575
  .e-css.e-btn-group .e-btn:disabled.e-outline,
576
576
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
577
- background-color: transparent;
577
+ background: transparent;
578
578
  border-color: #f3f2f1;
579
579
  box-shadow: none;
580
580
  color: #a19f9d;
@@ -584,7 +584,7 @@
584
584
  .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
585
585
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
586
586
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
587
- background-color: transparent;
587
+ background: transparent;
588
588
  border-color: #f3f2f1;
589
589
  box-shadow: none;
590
590
  color: #a19f9d;
@@ -594,7 +594,7 @@
594
594
  .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
595
595
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
596
596
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
597
- background-color: transparent;
597
+ background: transparent;
598
598
  border-color: #f3f2f1;
599
599
  box-shadow: none;
600
600
  color: #a19f9d;
@@ -604,7 +604,7 @@
604
604
  .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
605
605
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
606
606
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
607
- background-color: transparent;
607
+ background: transparent;
608
608
  border-color: #f3f2f1;
609
609
  box-shadow: none;
610
610
  color: #a19f9d;
@@ -614,7 +614,7 @@
614
614
  .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
615
615
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
616
616
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
617
- background-color: transparent;
617
+ background: transparent;
618
618
  border-color: #f3f2f1;
619
619
  box-shadow: none;
620
620
  color: #a19f9d;
@@ -624,7 +624,7 @@
624
624
  .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
625
625
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
626
626
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
627
- background-color: transparent;
627
+ background: transparent;
628
628
  border-color: #f3f2f1;
629
629
  box-shadow: none;
630
630
  color: #a19f9d;
@@ -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: #fff;
251
+ background: #fff;
252
252
  border-color: #000;
253
253
  color: #000;
254
254
  outline: #000 1px solid;
@@ -261,7 +261,7 @@
261
261
  .e-btn-group input:focus + label.e-btn.e-primary,
262
262
  .e-css.e-btn-group .e-btn:focus.e-primary,
263
263
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
264
- background-color: #400074;
264
+ background: #400074;
265
265
  border-color: #400074;
266
266
  color: #fff;
267
267
  outline: #400074 1px solid;
@@ -273,7 +273,7 @@
273
273
  .e-btn-group input:focus + label.e-btn.e-success,
274
274
  .e-css.e-btn-group .e-btn:focus.e-success,
275
275
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
276
- background-color: #2bc700;
276
+ background: #2bc700;
277
277
  border-color: #166600;
278
278
  color: #000;
279
279
  box-shadow: none;
@@ -284,7 +284,7 @@
284
284
  .e-btn-group input:focus + label.e-btn.e-info,
285
285
  .e-css.e-btn-group .e-btn:focus.e-info,
286
286
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
287
- background-color: #66b0ff;
287
+ background: #66b0ff;
288
288
  border-color: #0056b3;
289
289
  color: #000;
290
290
  box-shadow: none;
@@ -295,7 +295,7 @@
295
295
  .e-btn-group input:focus + label.e-btn.e-warning,
296
296
  .e-css.e-btn-group .e-btn:focus.e-warning,
297
297
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
298
- background-color: #ff7d1a;
298
+ background: #ff7d1a;
299
299
  border-color: #944000;
300
300
  color: #000;
301
301
  box-shadow: none;
@@ -306,7 +306,7 @@
306
306
  .e-btn-group input:focus + label.e-btn.e-danger,
307
307
  .e-css.e-btn-group .e-btn:focus.e-danger,
308
308
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
309
- background-color: #ff6161;
309
+ background: #ff6161;
310
310
  border-color: #b30900;
311
311
  color: #000;
312
312
  box-shadow: none;
@@ -368,7 +368,7 @@
368
368
  .e-css.e-btn-group .e-btn:active,
369
369
  .e-css.e-btn-group input:active + label.e-btn,
370
370
  .e-css.e-btn-group input:checked + label.e-btn {
371
- background-color: #400074;
371
+ background: #400074;
372
372
  border-color: #400074;
373
373
  color: #fff;
374
374
  outline: #000 0 solid;
@@ -381,7 +381,7 @@
381
381
  .e-css.e-btn-group .e-btn:active.e-primary,
382
382
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
383
383
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
384
- background-color: #400074;
384
+ background: #400074;
385
385
  border-color: #400074;
386
386
  color: #fff;
387
387
  outline: #000 0 solid;
@@ -393,7 +393,7 @@
393
393
  .e-css.e-btn-group .e-btn:active.e-success,
394
394
  .e-css.e-btn-group input:active + label.e-btn.e-success,
395
395
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
396
- background-color: #000;
396
+ background: #000;
397
397
  border-color: #000;
398
398
  color: #2ccc00;
399
399
  box-shadow: none;
@@ -404,7 +404,7 @@
404
404
  .e-css.e-btn-group .e-btn:active.e-info,
405
405
  .e-css.e-btn-group input:active + label.e-btn.e-info,
406
406
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
407
- background-color: #000;
407
+ background: #000;
408
408
  color: #66b0ff;
409
409
  border-color: #000;
410
410
  box-shadow: none;
@@ -415,7 +415,7 @@
415
415
  .e-css.e-btn-group .e-btn:active.e-warning,
416
416
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
417
417
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
418
- background-color: #000;
418
+ background: #000;
419
419
  border-color: #000;
420
420
  color: #ff7d1a;
421
421
  box-shadow: none;
@@ -426,7 +426,7 @@
426
426
  .e-css.e-btn-group .e-btn:active.e-danger,
427
427
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
428
428
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
429
- background-color: #000;
429
+ background: #000;
430
430
  border-color: #000;
431
431
  color: #ff6161;
432
432
  box-shadow: none;
@@ -437,7 +437,7 @@
437
437
  .e-css.e-btn-group .e-btn:active.e-outline,
438
438
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
439
439
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
440
- background-color: #400074;
440
+ background: #400074;
441
441
  border-color: #400074;
442
442
  box-shadow: none;
443
443
  color: #fff;
@@ -448,7 +448,7 @@
448
448
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
449
449
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
450
450
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
451
- background-color: #400074;
451
+ background: #400074;
452
452
  border-color: #400074;
453
453
  box-shadow: none;
454
454
  color: #fff;
@@ -459,7 +459,7 @@
459
459
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
460
460
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
461
461
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
462
- background-color: #000;
462
+ background: #000;
463
463
  border-color: #000;
464
464
  box-shadow: none;
465
465
  color: #2ccc00;
@@ -470,7 +470,7 @@
470
470
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
471
471
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
472
472
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
473
- background-color: #000;
473
+ background: #000;
474
474
  border-color: #000;
475
475
  box-shadow: none;
476
476
  color: #66b0ff;
@@ -481,7 +481,7 @@
481
481
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
482
482
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
483
483
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
484
- background-color: #000;
484
+ background: #000;
485
485
  border-color: #000;
486
486
  box-shadow: none;
487
487
  color: #ff7d1a;
@@ -492,7 +492,7 @@
492
492
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
493
493
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
494
494
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
495
- background-color: #000;
495
+ background: #000;
496
496
  border-color: #000;
497
497
  box-shadow: none;
498
498
  color: #ff6161;
@@ -511,7 +511,7 @@
511
511
  .e-btn-group input:disabled + label.e-btn.e-primary,
512
512
  .e-css.e-btn-group .e-btn:disabled.e-primary,
513
513
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
514
- background-color: #fff;
514
+ background: #fff;
515
515
  border-color: #757575;
516
516
  box-shadow: none;
517
517
  color: #757575;
@@ -521,7 +521,7 @@
521
521
  .e-btn-group input:disabled + label.e-btn.e-success,
522
522
  .e-css.e-btn-group .e-btn:disabled.e-success,
523
523
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
524
- background-color: #fff;
524
+ background: #fff;
525
525
  border-color: #757575;
526
526
  box-shadow: none;
527
527
  color: #757575;
@@ -531,7 +531,7 @@
531
531
  .e-btn-group input:disabled + label.e-btn.e-info,
532
532
  .e-css.e-btn-group .e-btn:disabled.e-info,
533
533
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
534
- background-color: #fff;
534
+ background: #fff;
535
535
  border-color: #757575;
536
536
  box-shadow: none;
537
537
  color: #757575;
@@ -541,7 +541,7 @@
541
541
  .e-btn-group input:disabled + label.e-btn.e-warning,
542
542
  .e-css.e-btn-group .e-btn:disabled.e-warning,
543
543
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
544
- background-color: #fff;
544
+ background: #fff;
545
545
  border-color: #757575;
546
546
  box-shadow: none;
547
547
  color: #757575;
@@ -551,7 +551,7 @@
551
551
  .e-btn-group input:disabled + label.e-btn.e-danger,
552
552
  .e-css.e-btn-group .e-btn:disabled.e-danger,
553
553
  .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
554
- background-color: #fff;
554
+ background: #fff;
555
555
  border-color: #757575;
556
556
  box-shadow: none;
557
557
  color: #757575;
@@ -562,7 +562,7 @@
562
562
  .e-css.e-btn-group .e-btn:disabled.e-link,
563
563
  .e-css.e-btn-group input:disabled + label.e-btn.e-link {
564
564
  color: #757575;
565
- background-color: transparent;
565
+ background: transparent;
566
566
  box-shadow: none;
567
567
  text-decoration: none;
568
568
  border-color: transparent;
@@ -571,7 +571,7 @@
571
571
  .e-btn-group input:disabled + label.e-btn.e-outline,
572
572
  .e-css.e-btn-group .e-btn:disabled.e-outline,
573
573
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
574
- background-color: #fff;
574
+ background: #fff;
575
575
  border-color: #757575;
576
576
  box-shadow: none;
577
577
  color: #757575;
@@ -581,7 +581,7 @@
581
581
  .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
582
582
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
583
583
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
584
- background-color: #fff;
584
+ background: #fff;
585
585
  border-color: #757575;
586
586
  box-shadow: none;
587
587
  color: #757575;
@@ -591,7 +591,7 @@
591
591
  .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
592
592
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
593
593
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
594
- background-color: #fff;
594
+ background: #fff;
595
595
  border-color: #757575;
596
596
  box-shadow: none;
597
597
  color: #757575;
@@ -601,7 +601,7 @@
601
601
  .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
602
602
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
603
603
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
604
- background-color: #fff;
604
+ background: #fff;
605
605
  border-color: #757575;
606
606
  box-shadow: none;
607
607
  color: #757575;
@@ -611,7 +611,7 @@
611
611
  .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
612
612
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
613
613
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
614
- background-color: #fff;
614
+ background: #fff;
615
615
  border-color: #757575;
616
616
  box-shadow: none;
617
617
  color: #757575;
@@ -621,7 +621,7 @@
621
621
  .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
622
622
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
623
623
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
624
- background-color: #fff;
624
+ background: #fff;
625
625
  border-color: #757575;
626
626
  box-shadow: none;
627
627
  color: #757575;