@syncfusion/ej2-splitbuttons 19.2.62 → 19.3.47
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/.eslintrc.json +1 -1
- package/CHANGELOG.md +1 -1
- package/dist/ej2-splitbuttons.umd.min.js +2 -2
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +39 -8
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +38 -7
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +2 -2
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/dropdownbuttonHelper.d.ts +42 -0
- package/helpers/e2e/dropdownbuttonHelper.js +39 -0
- package/helpers/e2e/index.d.ts +3 -0
- package/helpers/e2e/index.js +8 -0
- package/helpers/e2e/progressbuttonHelper.d.ts +37 -0
- package/helpers/e2e/progressbuttonHelper.js +36 -0
- package/helpers/e2e/splitbuttonHelper.d.ts +45 -0
- package/helpers/e2e/splitbuttonHelper.js +42 -0
- package/package.json +7 -7
- package/src/drop-down-button/drop-down-button.d.ts +2 -0
- package/src/drop-down-button/drop-down-button.js +37 -6
- package/src/split-button/split-button.d.ts +1 -1
- package/src/split-button/split-button.js +1 -1
- package/styles/bootstrap-dark.css +1 -31
- package/styles/bootstrap.css +1 -19
- package/styles/bootstrap4.css +1 -31
- package/styles/bootstrap5-dark.css +2105 -0
- package/styles/bootstrap5-dark.scss +4 -0
- package/styles/bootstrap5.css +2105 -0
- package/styles/bootstrap5.scss +4 -0
- package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
- package/styles/button-group/_bootstrap5-definition.scss +31 -0
- package/styles/button-group/_tailwind-dark-definition.scss +1 -30
- package/styles/button-group/_tailwind-definition.scss +1 -0
- package/styles/button-group/_theme.scss +35 -47
- package/styles/button-group/bootstrap-dark.css +1 -31
- package/styles/button-group/bootstrap.css +1 -19
- package/styles/button-group/bootstrap4.css +1 -31
- package/styles/button-group/bootstrap5-dark.css +842 -0
- package/styles/button-group/bootstrap5-dark.scss +4 -0
- package/styles/button-group/bootstrap5.css +842 -0
- package/styles/button-group/bootstrap5.scss +4 -0
- package/styles/button-group/fabric-dark.css +1 -31
- package/styles/button-group/fabric.css +1 -31
- package/styles/button-group/highcontrast-light.css +1 -31
- package/styles/button-group/highcontrast.css +1 -31
- package/styles/button-group/material-dark.css +5 -35
- package/styles/button-group/material.css +1 -31
- package/styles/button-group/tailwind-dark.css +1 -31
- package/styles/button-group/tailwind.css +1 -31
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-button/_bootstrap5-definition.scss +51 -0
- package/styles/drop-down-button/_layout.scss +12 -5
- package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -48
- package/styles/drop-down-button/_tailwind-definition.scss +19 -17
- package/styles/drop-down-button/_theme.scss +6 -1
- package/styles/drop-down-button/bootstrap5-dark.css +248 -0
- package/styles/drop-down-button/bootstrap5-dark.scss +6 -0
- package/styles/drop-down-button/bootstrap5.css +248 -0
- package/styles/drop-down-button/bootstrap5.scss +6 -0
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
- package/styles/drop-down-button/tailwind-dark.css +5 -0
- package/styles/drop-down-button/tailwind.css +5 -0
- package/styles/fabric-dark.css +1 -31
- package/styles/fabric.css +1 -31
- package/styles/highcontrast-light.css +1 -31
- package/styles/highcontrast.css +1 -31
- package/styles/material-dark.css +15 -45
- package/styles/material.css +2 -32
- package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/progress-button/_bootstrap5-definition.scss +21 -0
- package/styles/progress-button/_tailwind-dark-definition.scss +1 -24
- package/styles/progress-button/_tailwind-definition.scss +6 -9
- package/styles/progress-button/_theme.scss +2 -2
- package/styles/progress-button/bootstrap5-dark.css +645 -0
- package/styles/progress-button/bootstrap5-dark.scss +5 -0
- package/styles/progress-button/bootstrap5.css +645 -0
- package/styles/progress-button/bootstrap5.scss +5 -0
- package/styles/progress-button/material-dark.css +9 -9
- package/styles/progress-button/tailwind-dark.css +10 -10
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +25 -0
- package/styles/split-button/_layout.scss +13 -9
- package/styles/split-button/_tailwind-dark-definition.scss +1 -23
- package/styles/split-button/_tailwind-definition.scss +7 -5
- package/styles/split-button/bootstrap5-dark.css +367 -0
- package/styles/split-button/bootstrap5-dark.scss +6 -0
- package/styles/split-button/bootstrap5.css +367 -0
- package/styles/split-button/bootstrap5.scss +6 -0
- package/styles/split-button/material-dark.css +1 -1
- package/styles/split-button/material.css +1 -1
- package/styles/split-button/tailwind-dark.css +2 -0
- package/styles/split-button/tailwind.css +2 -0
- package/styles/tailwind-dark.css +18 -41
- package/styles/tailwind.css +8 -31
|
@@ -389,9 +389,6 @@
|
|
|
389
389
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
390
390
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
391
391
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
392
|
-
background-color: #414040;
|
|
393
|
-
border-color: #201f1f;
|
|
394
|
-
color: #fff;
|
|
395
392
|
box-shadow: none;
|
|
396
393
|
box-shadow: none;
|
|
397
394
|
}
|
|
@@ -400,9 +397,6 @@
|
|
|
400
397
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
401
398
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
402
399
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
403
|
-
background-color: #0074cc;
|
|
404
|
-
border-color: #201f1f;
|
|
405
|
-
color: #fff;
|
|
406
400
|
box-shadow: none;
|
|
407
401
|
}
|
|
408
402
|
|
|
@@ -410,9 +404,6 @@
|
|
|
410
404
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
411
405
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
412
406
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
413
|
-
background-color: #37844d;
|
|
414
|
-
border-color: #201f1f;
|
|
415
|
-
color: #fff;
|
|
416
407
|
box-shadow: none;
|
|
417
408
|
}
|
|
418
409
|
|
|
@@ -420,9 +411,6 @@
|
|
|
420
411
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
421
412
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
422
413
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
423
|
-
background-color: #1a69b0;
|
|
424
|
-
border-color: #201f1f;
|
|
425
|
-
color: #fff;
|
|
426
414
|
box-shadow: none;
|
|
427
415
|
}
|
|
428
416
|
|
|
@@ -430,9 +418,6 @@
|
|
|
430
418
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
431
419
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
432
420
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
433
|
-
background-color: #a06200;
|
|
434
|
-
border-color: #201f1f;
|
|
435
|
-
color: #fff;
|
|
436
421
|
box-shadow: none;
|
|
437
422
|
}
|
|
438
423
|
|
|
@@ -440,9 +425,6 @@
|
|
|
440
425
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
441
426
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
442
427
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
443
|
-
background-color: #b22416;
|
|
444
|
-
border-color: #201f1f;
|
|
445
|
-
color: #fff;
|
|
446
428
|
box-shadow: none;
|
|
447
429
|
}
|
|
448
430
|
|
|
@@ -458,7 +440,6 @@
|
|
|
458
440
|
outline: #414040 0 solid;
|
|
459
441
|
outline-offset: 0;
|
|
460
442
|
box-shadow: none;
|
|
461
|
-
box-shadow: none;
|
|
462
443
|
}
|
|
463
444
|
|
|
464
445
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -472,7 +453,6 @@
|
|
|
472
453
|
color: #fff;
|
|
473
454
|
outline: #414040 0 solid;
|
|
474
455
|
box-shadow: none;
|
|
475
|
-
box-shadow: none;
|
|
476
456
|
}
|
|
477
457
|
|
|
478
458
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -485,7 +465,6 @@
|
|
|
485
465
|
border-color: #255934;
|
|
486
466
|
color: #fff;
|
|
487
467
|
box-shadow: none;
|
|
488
|
-
box-shadow: none;
|
|
489
468
|
}
|
|
490
469
|
|
|
491
470
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -495,9 +474,8 @@
|
|
|
495
474
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
496
475
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
497
476
|
background-color: #165996;
|
|
498
|
-
border-color: #165996;
|
|
499
477
|
color: #fff;
|
|
500
|
-
|
|
478
|
+
border-color: #165996;
|
|
501
479
|
box-shadow: none;
|
|
502
480
|
}
|
|
503
481
|
|
|
@@ -511,7 +489,6 @@
|
|
|
511
489
|
border-color: #825000;
|
|
512
490
|
color: #fff;
|
|
513
491
|
box-shadow: none;
|
|
514
|
-
box-shadow: none;
|
|
515
492
|
}
|
|
516
493
|
|
|
517
494
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -524,7 +501,6 @@
|
|
|
524
501
|
border-color: #961f12;
|
|
525
502
|
color: #fff;
|
|
526
503
|
box-shadow: none;
|
|
527
|
-
box-shadow: none;
|
|
528
504
|
}
|
|
529
505
|
|
|
530
506
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -537,7 +513,6 @@
|
|
|
537
513
|
border-color: #6f6c6c;
|
|
538
514
|
box-shadow: none;
|
|
539
515
|
color: #fff;
|
|
540
|
-
box-shadow: none;
|
|
541
516
|
}
|
|
542
517
|
|
|
543
518
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -550,7 +525,6 @@
|
|
|
550
525
|
border-color: #005799;
|
|
551
526
|
box-shadow: none;
|
|
552
527
|
color: #fff;
|
|
553
|
-
box-shadow: none;
|
|
554
528
|
}
|
|
555
529
|
|
|
556
530
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -563,7 +537,6 @@
|
|
|
563
537
|
border-color: #255934;
|
|
564
538
|
box-shadow: none;
|
|
565
539
|
color: #fff;
|
|
566
|
-
box-shadow: none;
|
|
567
540
|
}
|
|
568
541
|
|
|
569
542
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -576,7 +549,6 @@
|
|
|
576
549
|
border-color: #165996;
|
|
577
550
|
box-shadow: none;
|
|
578
551
|
color: #fff;
|
|
579
|
-
box-shadow: none;
|
|
580
552
|
}
|
|
581
553
|
|
|
582
554
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -589,7 +561,6 @@
|
|
|
589
561
|
border-color: #825000;
|
|
590
562
|
box-shadow: none;
|
|
591
563
|
color: #fff;
|
|
592
|
-
box-shadow: none;
|
|
593
564
|
}
|
|
594
565
|
|
|
595
566
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -602,7 +573,6 @@
|
|
|
602
573
|
border-color: #961f12;
|
|
603
574
|
box-shadow: none;
|
|
604
575
|
color: #fff;
|
|
605
|
-
box-shadow: none;
|
|
606
576
|
}
|
|
607
577
|
|
|
608
578
|
.e-btn-group .e-btn:disabled,
|
|
@@ -395,9 +395,6 @@
|
|
|
395
395
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
396
396
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
397
397
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
398
|
-
background-color: #eaeaea;
|
|
399
|
-
border-color: #d0d0d0;
|
|
400
|
-
color: #000;
|
|
401
398
|
box-shadow: none;
|
|
402
399
|
box-shadow: none;
|
|
403
400
|
}
|
|
@@ -406,9 +403,6 @@
|
|
|
406
403
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
407
404
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
408
405
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
409
|
-
background-color: #0078d6;
|
|
410
|
-
border-color: #fff;
|
|
411
|
-
color: #fff;
|
|
412
406
|
box-shadow: none;
|
|
413
407
|
}
|
|
414
408
|
|
|
@@ -416,9 +410,6 @@
|
|
|
416
410
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
417
411
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
418
412
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
419
|
-
background-color: #137c10;
|
|
420
|
-
border-color: #fff;
|
|
421
|
-
color: #fff;
|
|
422
413
|
box-shadow: none;
|
|
423
414
|
}
|
|
424
415
|
|
|
@@ -426,9 +417,6 @@
|
|
|
426
417
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
427
418
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
428
419
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
429
|
-
background-color: #016cc0;
|
|
430
|
-
border-color: #fff;
|
|
431
|
-
color: #fff;
|
|
432
420
|
box-shadow: none;
|
|
433
421
|
}
|
|
434
422
|
|
|
@@ -436,9 +424,6 @@
|
|
|
436
424
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
437
425
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
438
426
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
439
|
-
background-color: #c73702;
|
|
440
|
-
border-color: #fff;
|
|
441
|
-
color: #fff;
|
|
442
427
|
box-shadow: none;
|
|
443
428
|
}
|
|
444
429
|
|
|
@@ -446,9 +431,6 @@
|
|
|
446
431
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
447
432
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
448
433
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
449
|
-
background-color: #930000;
|
|
450
|
-
border-color: #fff;
|
|
451
|
-
color: #fff;
|
|
452
434
|
box-shadow: none;
|
|
453
435
|
}
|
|
454
436
|
|
|
@@ -464,7 +446,6 @@
|
|
|
464
446
|
outline: #eaeaea 0 solid;
|
|
465
447
|
outline-offset: 0;
|
|
466
448
|
box-shadow: none;
|
|
467
|
-
box-shadow: none;
|
|
468
449
|
}
|
|
469
450
|
|
|
470
451
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -478,7 +459,6 @@
|
|
|
478
459
|
color: #fff;
|
|
479
460
|
outline: #eaeaea 0 solid;
|
|
480
461
|
box-shadow: none;
|
|
481
|
-
box-shadow: none;
|
|
482
462
|
}
|
|
483
463
|
|
|
484
464
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -491,7 +471,6 @@
|
|
|
491
471
|
border-color: #004b1d;
|
|
492
472
|
color: #fff;
|
|
493
473
|
box-shadow: none;
|
|
494
|
-
box-shadow: none;
|
|
495
474
|
}
|
|
496
475
|
|
|
497
476
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -501,9 +480,8 @@
|
|
|
501
480
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
502
481
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
503
482
|
background-color: #065fa6;
|
|
504
|
-
border-color: #065fa6;
|
|
505
483
|
color: #fff;
|
|
506
|
-
|
|
484
|
+
border-color: #065fa6;
|
|
507
485
|
box-shadow: none;
|
|
508
486
|
}
|
|
509
487
|
|
|
@@ -517,7 +495,6 @@
|
|
|
517
495
|
border-color: #a22c01;
|
|
518
496
|
color: #fff;
|
|
519
497
|
box-shadow: none;
|
|
520
|
-
box-shadow: none;
|
|
521
498
|
}
|
|
522
499
|
|
|
523
500
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -530,7 +507,6 @@
|
|
|
530
507
|
border-color: #7c0101;
|
|
531
508
|
color: #fff;
|
|
532
509
|
box-shadow: none;
|
|
533
|
-
box-shadow: none;
|
|
534
510
|
}
|
|
535
511
|
|
|
536
512
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -543,7 +519,6 @@
|
|
|
543
519
|
border-color: #c8c8c8;
|
|
544
520
|
box-shadow: none;
|
|
545
521
|
color: #000;
|
|
546
|
-
box-shadow: none;
|
|
547
522
|
}
|
|
548
523
|
|
|
549
524
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -556,7 +531,6 @@
|
|
|
556
531
|
border-color: #0078d6;
|
|
557
532
|
box-shadow: none;
|
|
558
533
|
color: #fff;
|
|
559
|
-
box-shadow: none;
|
|
560
534
|
}
|
|
561
535
|
|
|
562
536
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -569,7 +543,6 @@
|
|
|
569
543
|
border-color: #004b1d;
|
|
570
544
|
box-shadow: none;
|
|
571
545
|
color: #fff;
|
|
572
|
-
box-shadow: none;
|
|
573
546
|
}
|
|
574
547
|
|
|
575
548
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -582,7 +555,6 @@
|
|
|
582
555
|
border-color: #065fa6;
|
|
583
556
|
box-shadow: none;
|
|
584
557
|
color: #fff;
|
|
585
|
-
box-shadow: none;
|
|
586
558
|
}
|
|
587
559
|
|
|
588
560
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -595,7 +567,6 @@
|
|
|
595
567
|
border-color: #a22c01;
|
|
596
568
|
box-shadow: none;
|
|
597
569
|
color: #fff;
|
|
598
|
-
box-shadow: none;
|
|
599
570
|
}
|
|
600
571
|
|
|
601
572
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -608,7 +579,6 @@
|
|
|
608
579
|
border-color: #7c0101;
|
|
609
580
|
box-shadow: none;
|
|
610
581
|
color: #fff;
|
|
611
|
-
box-shadow: none;
|
|
612
582
|
}
|
|
613
583
|
|
|
614
584
|
.e-btn-group .e-btn:disabled,
|
|
@@ -389,9 +389,6 @@
|
|
|
389
389
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
390
390
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
391
391
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
392
|
-
background-color: #fff;
|
|
393
|
-
border-color: #000;
|
|
394
|
-
color: #000;
|
|
395
392
|
box-shadow: none;
|
|
396
393
|
box-shadow: none;
|
|
397
394
|
}
|
|
@@ -400,9 +397,6 @@
|
|
|
400
397
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
401
398
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
402
399
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
403
|
-
background-color: #400074;
|
|
404
|
-
border-color: #400074;
|
|
405
|
-
color: #fff;
|
|
406
400
|
box-shadow: none;
|
|
407
401
|
}
|
|
408
402
|
|
|
@@ -410,9 +404,6 @@
|
|
|
410
404
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
411
405
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
412
406
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
413
|
-
background-color: #2bc700;
|
|
414
|
-
border-color: #166600;
|
|
415
|
-
color: #fff;
|
|
416
407
|
box-shadow: none;
|
|
417
408
|
}
|
|
418
409
|
|
|
@@ -420,9 +411,6 @@
|
|
|
420
411
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
421
412
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
422
413
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
423
|
-
background-color: #66b0ff;
|
|
424
|
-
border-color: #0056b3;
|
|
425
|
-
color: #fff;
|
|
426
414
|
box-shadow: none;
|
|
427
415
|
}
|
|
428
416
|
|
|
@@ -430,9 +418,6 @@
|
|
|
430
418
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
431
419
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
432
420
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
433
|
-
background-color: #ff7d1a;
|
|
434
|
-
border-color: #944000;
|
|
435
|
-
color: #fff;
|
|
436
421
|
box-shadow: none;
|
|
437
422
|
}
|
|
438
423
|
|
|
@@ -440,9 +425,6 @@
|
|
|
440
425
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
441
426
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
442
427
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
443
|
-
background-color: #ff6161;
|
|
444
|
-
border-color: #b30900;
|
|
445
|
-
color: #fff;
|
|
446
428
|
box-shadow: none;
|
|
447
429
|
}
|
|
448
430
|
|
|
@@ -458,7 +440,6 @@
|
|
|
458
440
|
outline: #000 0 solid;
|
|
459
441
|
outline-offset: 0;
|
|
460
442
|
box-shadow: none;
|
|
461
|
-
box-shadow: none;
|
|
462
443
|
}
|
|
463
444
|
|
|
464
445
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -472,7 +453,6 @@
|
|
|
472
453
|
color: #fff;
|
|
473
454
|
outline: #000 0 solid;
|
|
474
455
|
box-shadow: none;
|
|
475
|
-
box-shadow: none;
|
|
476
456
|
}
|
|
477
457
|
|
|
478
458
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -485,7 +465,6 @@
|
|
|
485
465
|
border-color: #000;
|
|
486
466
|
color: #2ccc00;
|
|
487
467
|
box-shadow: none;
|
|
488
|
-
box-shadow: none;
|
|
489
468
|
}
|
|
490
469
|
|
|
491
470
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -495,9 +474,8 @@
|
|
|
495
474
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
496
475
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
497
476
|
background-color: #000;
|
|
498
|
-
border-color: #000;
|
|
499
477
|
color: #66b0ff;
|
|
500
|
-
|
|
478
|
+
border-color: #000;
|
|
501
479
|
box-shadow: none;
|
|
502
480
|
}
|
|
503
481
|
|
|
@@ -511,7 +489,6 @@
|
|
|
511
489
|
border-color: #000;
|
|
512
490
|
color: #ff7d1a;
|
|
513
491
|
box-shadow: none;
|
|
514
|
-
box-shadow: none;
|
|
515
492
|
}
|
|
516
493
|
|
|
517
494
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -524,7 +501,6 @@
|
|
|
524
501
|
border-color: #000;
|
|
525
502
|
color: #ff6161;
|
|
526
503
|
box-shadow: none;
|
|
527
|
-
box-shadow: none;
|
|
528
504
|
}
|
|
529
505
|
|
|
530
506
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -537,7 +513,6 @@
|
|
|
537
513
|
border-color: #400074;
|
|
538
514
|
box-shadow: none;
|
|
539
515
|
color: #fff;
|
|
540
|
-
box-shadow: none;
|
|
541
516
|
}
|
|
542
517
|
|
|
543
518
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -550,7 +525,6 @@
|
|
|
550
525
|
border-color: #400074;
|
|
551
526
|
box-shadow: none;
|
|
552
527
|
color: #fff;
|
|
553
|
-
box-shadow: none;
|
|
554
528
|
}
|
|
555
529
|
|
|
556
530
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -563,7 +537,6 @@
|
|
|
563
537
|
border-color: #000;
|
|
564
538
|
box-shadow: none;
|
|
565
539
|
color: #2ccc00;
|
|
566
|
-
box-shadow: none;
|
|
567
540
|
}
|
|
568
541
|
|
|
569
542
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -576,7 +549,6 @@
|
|
|
576
549
|
border-color: #000;
|
|
577
550
|
box-shadow: none;
|
|
578
551
|
color: #66b0ff;
|
|
579
|
-
box-shadow: none;
|
|
580
552
|
}
|
|
581
553
|
|
|
582
554
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -589,7 +561,6 @@
|
|
|
589
561
|
border-color: #000;
|
|
590
562
|
box-shadow: none;
|
|
591
563
|
color: #ff7d1a;
|
|
592
|
-
box-shadow: none;
|
|
593
564
|
}
|
|
594
565
|
|
|
595
566
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -602,7 +573,6 @@
|
|
|
602
573
|
border-color: #000;
|
|
603
574
|
box-shadow: none;
|
|
604
575
|
color: #ff6161;
|
|
605
|
-
box-shadow: none;
|
|
606
576
|
}
|
|
607
577
|
|
|
608
578
|
.e-btn-group .e-btn:disabled,
|
|
@@ -390,9 +390,6 @@
|
|
|
390
390
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
391
391
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
392
392
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
393
|
-
background-color: #000;
|
|
394
|
-
border-color: #fff;
|
|
395
|
-
color: #fff;
|
|
396
393
|
box-shadow: none;
|
|
397
394
|
box-shadow: none;
|
|
398
395
|
}
|
|
@@ -401,9 +398,6 @@
|
|
|
401
398
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
402
399
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
403
400
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
404
|
-
background-color: #ffd939;
|
|
405
|
-
border-color: #ffd939;
|
|
406
|
-
color: #000;
|
|
407
401
|
box-shadow: none;
|
|
408
402
|
}
|
|
409
403
|
|
|
@@ -411,9 +405,6 @@
|
|
|
411
405
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
412
406
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
413
407
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
414
|
-
background-color: #166600;
|
|
415
|
-
border-color: #166600;
|
|
416
|
-
color: #fff;
|
|
417
408
|
box-shadow: none;
|
|
418
409
|
}
|
|
419
410
|
|
|
@@ -421,9 +412,6 @@
|
|
|
421
412
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
422
413
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
423
414
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
424
|
-
background-color: #0056b3;
|
|
425
|
-
border-color: #0056b3;
|
|
426
|
-
color: #fff;
|
|
427
415
|
box-shadow: none;
|
|
428
416
|
}
|
|
429
417
|
|
|
@@ -431,9 +419,6 @@
|
|
|
431
419
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
432
420
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
433
421
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
434
|
-
background-color: #944000;
|
|
435
|
-
border-color: #944000;
|
|
436
|
-
color: #fff;
|
|
437
422
|
box-shadow: none;
|
|
438
423
|
}
|
|
439
424
|
|
|
@@ -441,9 +426,6 @@
|
|
|
441
426
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
442
427
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
443
428
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
444
|
-
background-color: #b30900;
|
|
445
|
-
border-color: #b30900;
|
|
446
|
-
color: #fff;
|
|
447
429
|
box-shadow: none;
|
|
448
430
|
}
|
|
449
431
|
|
|
@@ -459,7 +441,6 @@
|
|
|
459
441
|
outline: #fff 0 solid;
|
|
460
442
|
outline-offset: 0;
|
|
461
443
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
462
|
-
box-shadow: none;
|
|
463
444
|
}
|
|
464
445
|
|
|
465
446
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -473,7 +454,6 @@
|
|
|
473
454
|
color: #000;
|
|
474
455
|
outline: #fff 0 solid;
|
|
475
456
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
476
|
-
box-shadow: none;
|
|
477
457
|
}
|
|
478
458
|
|
|
479
459
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -486,7 +466,6 @@
|
|
|
486
466
|
border-color: #fff;
|
|
487
467
|
color: #166600;
|
|
488
468
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
489
|
-
box-shadow: none;
|
|
490
469
|
}
|
|
491
470
|
|
|
492
471
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -496,10 +475,9 @@
|
|
|
496
475
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
497
476
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
498
477
|
background-color: #fff;
|
|
499
|
-
border-color: #fff;
|
|
500
478
|
color: #0056b3;
|
|
479
|
+
border-color: #fff;
|
|
501
480
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
502
|
-
box-shadow: none;
|
|
503
481
|
}
|
|
504
482
|
|
|
505
483
|
.e-btn-group .e-btn:active.e-warning,
|
|
@@ -512,7 +490,6 @@
|
|
|
512
490
|
border-color: #fff;
|
|
513
491
|
color: #944000;
|
|
514
492
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
515
|
-
box-shadow: none;
|
|
516
493
|
}
|
|
517
494
|
|
|
518
495
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -525,7 +502,6 @@
|
|
|
525
502
|
border-color: #fff;
|
|
526
503
|
color: #b30900;
|
|
527
504
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
528
|
-
box-shadow: none;
|
|
529
505
|
}
|
|
530
506
|
|
|
531
507
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -538,7 +514,6 @@
|
|
|
538
514
|
border-color: #ffd939;
|
|
539
515
|
box-shadow: none;
|
|
540
516
|
color: #000;
|
|
541
|
-
box-shadow: none;
|
|
542
517
|
}
|
|
543
518
|
|
|
544
519
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -551,7 +526,6 @@
|
|
|
551
526
|
border-color: #ffd939;
|
|
552
527
|
box-shadow: none;
|
|
553
528
|
color: #000;
|
|
554
|
-
box-shadow: none;
|
|
555
529
|
}
|
|
556
530
|
|
|
557
531
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -564,7 +538,6 @@
|
|
|
564
538
|
border-color: #fff;
|
|
565
539
|
box-shadow: none;
|
|
566
540
|
color: #166600;
|
|
567
|
-
box-shadow: none;
|
|
568
541
|
}
|
|
569
542
|
|
|
570
543
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -577,7 +550,6 @@
|
|
|
577
550
|
border-color: #fff;
|
|
578
551
|
box-shadow: none;
|
|
579
552
|
color: #0056b3;
|
|
580
|
-
box-shadow: none;
|
|
581
553
|
}
|
|
582
554
|
|
|
583
555
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -590,7 +562,6 @@
|
|
|
590
562
|
border-color: #fff;
|
|
591
563
|
box-shadow: none;
|
|
592
564
|
color: #944000;
|
|
593
|
-
box-shadow: none;
|
|
594
565
|
}
|
|
595
566
|
|
|
596
567
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -603,7 +574,6 @@
|
|
|
603
574
|
border-color: #fff;
|
|
604
575
|
box-shadow: none;
|
|
605
576
|
color: #b30900;
|
|
606
|
-
box-shadow: none;
|
|
607
577
|
}
|
|
608
578
|
|
|
609
579
|
.e-btn-group .e-btn:disabled,
|