@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
@@ -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: #fff;
814
+ background: #fff;
815
815
  border-color: #000;
816
816
  color: #000;
817
817
  outline: #000 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: #400074;
827
+ background: #400074;
828
828
  border-color: #400074;
829
829
  color: #fff;
830
830
  outline: #400074 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: #2bc700;
839
+ background: #2bc700;
840
840
  border-color: #166600;
841
841
  color: #000;
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: #66b0ff;
850
+ background: #66b0ff;
851
851
  border-color: #0056b3;
852
852
  color: #000;
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: #ff7d1a;
861
+ background: #ff7d1a;
862
862
  border-color: #944000;
863
863
  color: #000;
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: #ff6161;
872
+ background: #ff6161;
873
873
  border-color: #b30900;
874
874
  color: #000;
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: #400074;
934
+ background: #400074;
935
935
  border-color: #400074;
936
936
  color: #fff;
937
937
  outline: #000 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: #400074;
947
+ background: #400074;
948
948
  border-color: #400074;
949
949
  color: #fff;
950
950
  outline: #000 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: #000;
959
+ background: #000;
960
960
  border-color: #000;
961
961
  color: #2ccc00;
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: #000;
970
+ background: #000;
971
971
  color: #66b0ff;
972
972
  border-color: #000;
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: #000;
981
+ background: #000;
982
982
  border-color: #000;
983
983
  color: #ff7d1a;
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: #000;
992
+ background: #000;
993
993
  border-color: #000;
994
994
  color: #ff6161;
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: #400074;
1003
+ background: #400074;
1004
1004
  border-color: #400074;
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: #400074;
1014
+ background: #400074;
1015
1015
  border-color: #400074;
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: #000;
1025
+ background: #000;
1026
1026
  border-color: #000;
1027
1027
  box-shadow: none;
1028
1028
  color: #2ccc00;
@@ -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: #000;
1036
+ background: #000;
1037
1037
  border-color: #000;
1038
1038
  box-shadow: none;
1039
1039
  color: #66b0ff;
@@ -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: #000;
1047
+ background: #000;
1048
1048
  border-color: #000;
1049
1049
  box-shadow: none;
1050
1050
  color: #ff7d1a;
@@ -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: #000;
1058
+ background: #000;
1059
1059
  border-color: #000;
1060
1060
  box-shadow: none;
1061
1061
  color: #ff6161;
@@ -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: #fff;
1077
+ background: #fff;
1078
1078
  border-color: #757575;
1079
1079
  box-shadow: none;
1080
1080
  color: #757575;
@@ -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: #fff;
1087
+ background: #fff;
1088
1088
  border-color: #757575;
1089
1089
  box-shadow: none;
1090
1090
  color: #757575;
@@ -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: #fff;
1097
+ background: #fff;
1098
1098
  border-color: #757575;
1099
1099
  box-shadow: none;
1100
1100
  color: #757575;
@@ -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: #fff;
1107
+ background: #fff;
1108
1108
  border-color: #757575;
1109
1109
  box-shadow: none;
1110
1110
  color: #757575;
@@ -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: #fff;
1117
+ background: #fff;
1118
1118
  border-color: #757575;
1119
1119
  box-shadow: none;
1120
1120
  color: #757575;
@@ -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: #757575;
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: #fff;
1137
+ background: #fff;
1138
1138
  border-color: #757575;
1139
1139
  box-shadow: none;
1140
1140
  color: #757575;
@@ -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: #fff;
1147
+ background: #fff;
1148
1148
  border-color: #757575;
1149
1149
  box-shadow: none;
1150
1150
  color: #757575;
@@ -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: #fff;
1157
+ background: #fff;
1158
1158
  border-color: #757575;
1159
1159
  box-shadow: none;
1160
1160
  color: #757575;
@@ -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: #fff;
1167
+ background: #fff;
1168
1168
  border-color: #757575;
1169
1169
  box-shadow: none;
1170
1170
  color: #757575;
@@ -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: #fff;
1177
+ background: #fff;
1178
1178
  border-color: #757575;
1179
1179
  box-shadow: none;
1180
1180
  color: #757575;
@@ -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: #fff;
1187
+ background: #fff;
1188
1188
  border-color: #757575;
1189
1189
  box-shadow: none;
1190
1190
  color: #757575;
@@ -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);
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(0, 0, 0, 0.3);
1801
+ background: rgba(0, 0, 0, 0.3);
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(255, 255, 255, 0.3);
1808
+ background: rgba(255, 255, 255, 0.3);
1809
1809
  }
1810
1810
 
1811
1811
  *.e-warning .e-progress {
1812
- background-color: rgba(255, 255, 255, 0.3);
1812
+ background: rgba(255, 255, 255, 0.3);
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(64, 0, 116, 0.2);
1832
+ background: rgba(64, 0, 116, 0.2);
1833
1833
  }
1834
1834
  *.e-outline:not(:focus).e-success .e-progress {
1835
- background-color: rgba(22, 102, 0, 0.2);
1835
+ background: rgba(22, 102, 0, 0.2);
1836
1836
  }
1837
1837
  *.e-outline:not(:focus).e-info .e-progress {
1838
- background-color: rgba(0, 86, 179, 0.2);
1838
+ background: rgba(0, 86, 179, 0.2);
1839
1839
  }
1840
1840
  *.e-outline:not(:focus).e-warning .e-progress {
1841
- background-color: rgba(148, 64, 0, 0.2);
1841
+ background: rgba(148, 64, 0, 0.2);
1842
1842
  }
1843
1843
  *.e-outline:not(:focus).e-danger .e-progress {
1844
- background-color: rgba(179, 9, 0, 0.2);
1844
+ background: rgba(179, 9, 0, 0.2);
1845
1845
  }
@@ -812,7 +812,7 @@
812
812
  .e-btn-group input:focus + label.e-btn,
813
813
  .e-css.e-btn-group .e-btn:focus,
814
814
  .e-css.e-btn-group input:focus + label.e-btn {
815
- background-color: #000;
815
+ background: #000;
816
816
  border-color: #fff;
817
817
  color: #fff;
818
818
  outline: #fff 1px solid;
@@ -826,7 +826,7 @@
826
826
  .e-btn-group input:focus + label.e-btn.e-primary,
827
827
  .e-css.e-btn-group .e-btn:focus.e-primary,
828
828
  .e-css.e-btn-group input:focus + label.e-btn.e-primary {
829
- background-color: #ffd939;
829
+ background: #ffd939;
830
830
  border-color: #ffd939;
831
831
  color: #000;
832
832
  outline: #ffd939 1px solid;
@@ -838,7 +838,7 @@
838
838
  .e-btn-group input:focus + label.e-btn.e-success,
839
839
  .e-css.e-btn-group .e-btn:focus.e-success,
840
840
  .e-css.e-btn-group input:focus + label.e-btn.e-success {
841
- background-color: #166600;
841
+ background: #166600;
842
842
  border-color: #166600;
843
843
  color: #fff;
844
844
  box-shadow: none;
@@ -849,7 +849,7 @@
849
849
  .e-btn-group input:focus + label.e-btn.e-info,
850
850
  .e-css.e-btn-group .e-btn:focus.e-info,
851
851
  .e-css.e-btn-group input:focus + label.e-btn.e-info {
852
- background-color: #0056b3;
852
+ background: #0056b3;
853
853
  border-color: #0056b3;
854
854
  color: #fff;
855
855
  box-shadow: none;
@@ -860,7 +860,7 @@
860
860
  .e-btn-group input:focus + label.e-btn.e-warning,
861
861
  .e-css.e-btn-group .e-btn:focus.e-warning,
862
862
  .e-css.e-btn-group input:focus + label.e-btn.e-warning {
863
- background-color: #944000;
863
+ background: #944000;
864
864
  border-color: #944000;
865
865
  color: #fff;
866
866
  box-shadow: none;
@@ -871,7 +871,7 @@
871
871
  .e-btn-group input:focus + label.e-btn.e-danger,
872
872
  .e-css.e-btn-group .e-btn:focus.e-danger,
873
873
  .e-css.e-btn-group input:focus + label.e-btn.e-danger {
874
- background-color: #b30900;
874
+ background: #b30900;
875
875
  border-color: #b30900;
876
876
  color: #fff;
877
877
  box-shadow: none;
@@ -933,7 +933,7 @@
933
933
  .e-css.e-btn-group .e-btn:active,
934
934
  .e-css.e-btn-group input:active + label.e-btn,
935
935
  .e-css.e-btn-group input:checked + label.e-btn {
936
- background-color: #ffd939;
936
+ background: #ffd939;
937
937
  border-color: #ffd939;
938
938
  color: #000;
939
939
  outline: #fff 0 solid;
@@ -946,7 +946,7 @@
946
946
  .e-css.e-btn-group .e-btn:active.e-primary,
947
947
  .e-css.e-btn-group input:active + label.e-btn.e-primary,
948
948
  .e-css.e-btn-group input:checked + label.e-btn.e-primary {
949
- background-color: #ffd939;
949
+ background: #ffd939;
950
950
  border-color: #ffd939;
951
951
  color: #000;
952
952
  outline: #fff 0 solid;
@@ -958,7 +958,7 @@
958
958
  .e-css.e-btn-group .e-btn:active.e-success,
959
959
  .e-css.e-btn-group input:active + label.e-btn.e-success,
960
960
  .e-css.e-btn-group input:checked + label.e-btn.e-success {
961
- background-color: #fff;
961
+ background: #fff;
962
962
  border-color: #fff;
963
963
  color: #166600;
964
964
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -969,7 +969,7 @@
969
969
  .e-css.e-btn-group .e-btn:active.e-info,
970
970
  .e-css.e-btn-group input:active + label.e-btn.e-info,
971
971
  .e-css.e-btn-group input:checked + label.e-btn.e-info {
972
- background-color: #fff;
972
+ background: #fff;
973
973
  color: #0056b3;
974
974
  border-color: #fff;
975
975
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -980,7 +980,7 @@
980
980
  .e-css.e-btn-group .e-btn:active.e-warning,
981
981
  .e-css.e-btn-group input:active + label.e-btn.e-warning,
982
982
  .e-css.e-btn-group input:checked + label.e-btn.e-warning {
983
- background-color: #fff;
983
+ background: #fff;
984
984
  border-color: #fff;
985
985
  color: #944000;
986
986
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -991,7 +991,7 @@
991
991
  .e-css.e-btn-group .e-btn:active.e-danger,
992
992
  .e-css.e-btn-group input:active + label.e-btn.e-danger,
993
993
  .e-css.e-btn-group input:checked + label.e-btn.e-danger {
994
- background-color: #fff;
994
+ background: #fff;
995
995
  border-color: #fff;
996
996
  color: #b30900;
997
997
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
@@ -1002,7 +1002,7 @@
1002
1002
  .e-css.e-btn-group .e-btn:active.e-outline,
1003
1003
  .e-css.e-btn-group input:active + label.e-btn.e-outline,
1004
1004
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
1005
- background-color: #ffd939;
1005
+ background: #ffd939;
1006
1006
  border-color: #ffd939;
1007
1007
  box-shadow: none;
1008
1008
  color: #000;
@@ -1013,7 +1013,7 @@
1013
1013
  .e-css.e-btn-group .e-btn:active.e-outline.e-primary,
1014
1014
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
1015
1015
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
1016
- background-color: #ffd939;
1016
+ background: #ffd939;
1017
1017
  border-color: #ffd939;
1018
1018
  box-shadow: none;
1019
1019
  color: #000;
@@ -1024,7 +1024,7 @@
1024
1024
  .e-css.e-btn-group .e-btn:active.e-outline.e-success,
1025
1025
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-success,
1026
1026
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
1027
- background-color: #fff;
1027
+ background: #fff;
1028
1028
  border-color: #fff;
1029
1029
  box-shadow: none;
1030
1030
  color: #166600;
@@ -1035,7 +1035,7 @@
1035
1035
  .e-css.e-btn-group .e-btn:active.e-outline.e-info,
1036
1036
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-info,
1037
1037
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
1038
- background-color: #fff;
1038
+ background: #fff;
1039
1039
  border-color: #fff;
1040
1040
  box-shadow: none;
1041
1041
  color: #0056b3;
@@ -1046,7 +1046,7 @@
1046
1046
  .e-css.e-btn-group .e-btn:active.e-outline.e-warning,
1047
1047
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-warning,
1048
1048
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
1049
- background-color: #fff;
1049
+ background: #fff;
1050
1050
  border-color: #fff;
1051
1051
  box-shadow: none;
1052
1052
  color: #944000;
@@ -1057,7 +1057,7 @@
1057
1057
  .e-css.e-btn-group .e-btn:active.e-outline.e-danger,
1058
1058
  .e-css.e-btn-group input:active + label.e-btn.e-outline.e-danger,
1059
1059
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
1060
- background-color: #fff;
1060
+ background: #fff;
1061
1061
  border-color: #fff;
1062
1062
  box-shadow: none;
1063
1063
  color: #b30900;
@@ -1076,7 +1076,7 @@
1076
1076
  .e-btn-group input:disabled + label.e-btn.e-primary,
1077
1077
  .e-css.e-btn-group .e-btn:disabled.e-primary,
1078
1078
  .e-css.e-btn-group input:disabled + label.e-btn.e-primary {
1079
- background-color: #000;
1079
+ background: #000;
1080
1080
  border-color: #757575;
1081
1081
  box-shadow: none;
1082
1082
  color: #757575;
@@ -1086,7 +1086,7 @@
1086
1086
  .e-btn-group input:disabled + label.e-btn.e-success,
1087
1087
  .e-css.e-btn-group .e-btn:disabled.e-success,
1088
1088
  .e-css.e-btn-group input:disabled + label.e-btn.e-success {
1089
- background-color: #000;
1089
+ background: #000;
1090
1090
  border-color: #757575;
1091
1091
  box-shadow: none;
1092
1092
  color: #757575;
@@ -1096,7 +1096,7 @@
1096
1096
  .e-btn-group input:disabled + label.e-btn.e-info,
1097
1097
  .e-css.e-btn-group .e-btn:disabled.e-info,
1098
1098
  .e-css.e-btn-group input:disabled + label.e-btn.e-info {
1099
- background-color: #000;
1099
+ background: #000;
1100
1100
  border-color: #757575;
1101
1101
  box-shadow: none;
1102
1102
  color: #757575;
@@ -1106,7 +1106,7 @@
1106
1106
  .e-btn-group input:disabled + label.e-btn.e-warning,
1107
1107
  .e-css.e-btn-group .e-btn:disabled.e-warning,
1108
1108
  .e-css.e-btn-group input:disabled + label.e-btn.e-warning {
1109
- background-color: #000;
1109
+ background: #000;
1110
1110
  border-color: #757575;
1111
1111
  box-shadow: none;
1112
1112
  color: #757575;
@@ -1116,7 +1116,7 @@
1116
1116
  .e-btn-group input:disabled + label.e-btn.e-danger,
1117
1117
  .e-css.e-btn-group .e-btn:disabled.e-danger,
1118
1118
  .e-css.e-btn-group input:disabled + label.e-btn.e-danger {
1119
- background-color: #000;
1119
+ background: #000;
1120
1120
  border-color: #757575;
1121
1121
  box-shadow: none;
1122
1122
  color: #757575;
@@ -1127,7 +1127,7 @@
1127
1127
  .e-css.e-btn-group .e-btn:disabled.e-link,
1128
1128
  .e-css.e-btn-group input:disabled + label.e-btn.e-link {
1129
1129
  color: #757575;
1130
- background-color: transparent;
1130
+ background: transparent;
1131
1131
  box-shadow: none;
1132
1132
  text-decoration: none;
1133
1133
  border-color: transparent;
@@ -1136,7 +1136,7 @@
1136
1136
  .e-btn-group input:disabled + label.e-btn.e-outline,
1137
1137
  .e-css.e-btn-group .e-btn:disabled.e-outline,
1138
1138
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline {
1139
- background-color: #000;
1139
+ background: #000;
1140
1140
  border-color: #757575;
1141
1141
  box-shadow: none;
1142
1142
  color: #757575;
@@ -1146,7 +1146,7 @@
1146
1146
  .e-btn-group input:disabled + label.e-btn.e-outline.e-primary,
1147
1147
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-primary,
1148
1148
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-primary {
1149
- background-color: #000;
1149
+ background: #000;
1150
1150
  border-color: #757575;
1151
1151
  box-shadow: none;
1152
1152
  color: #757575;
@@ -1156,7 +1156,7 @@
1156
1156
  .e-btn-group input:disabled + label.e-btn.e-outline.e-success,
1157
1157
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-success,
1158
1158
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-success {
1159
- background-color: #000;
1159
+ background: #000;
1160
1160
  border-color: #757575;
1161
1161
  box-shadow: none;
1162
1162
  color: #757575;
@@ -1166,7 +1166,7 @@
1166
1166
  .e-btn-group input:disabled + label.e-btn.e-outline.e-info,
1167
1167
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-info,
1168
1168
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-info {
1169
- background-color: #000;
1169
+ background: #000;
1170
1170
  border-color: #757575;
1171
1171
  box-shadow: none;
1172
1172
  color: #757575;
@@ -1176,7 +1176,7 @@
1176
1176
  .e-btn-group input:disabled + label.e-btn.e-outline.e-warning,
1177
1177
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-warning,
1178
1178
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-warning {
1179
- background-color: #000;
1179
+ background: #000;
1180
1180
  border-color: #757575;
1181
1181
  box-shadow: none;
1182
1182
  color: #757575;
@@ -1186,7 +1186,7 @@
1186
1186
  .e-btn-group input:disabled + label.e-btn.e-outline.e-danger,
1187
1187
  .e-css.e-btn-group .e-btn:disabled.e-outline.e-danger,
1188
1188
  .e-css.e-btn-group input:disabled + label.e-btn.e-outline.e-danger {
1189
- background-color: #000;
1189
+ background: #000;
1190
1190
  border-color: #757575;
1191
1191
  box-shadow: none;
1192
1192
  color: #757575;
@@ -1763,7 +1763,7 @@
1763
1763
  stroke: #fff;
1764
1764
  }
1765
1765
  .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 {
1766
- stroke: rgba(255, 255, 255, 0);
1766
+ stroke: #fff;
1767
1767
  }
1768
1768
  .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 {
1769
1769
  stroke: #fff;
@@ -1850,48 +1850,48 @@
1850
1850
  }
1851
1851
 
1852
1852
  .e-progress {
1853
- background-color: rgba(255, 255, 255, 0.3);
1853
+ background: rgba(255, 255, 255, 0.3);
1854
1854
  }
1855
1855
 
1856
1856
  *.e-primary .e-progress,
1857
1857
  *.e-success .e-progress,
1858
1858
  *.e-danger .e-progress,
1859
1859
  *.e-info .e-progress {
1860
- background-color: rgba(0, 0, 0, 0.3);
1860
+ background: rgba(0, 0, 0, 0.3);
1861
1861
  }
1862
1862
 
1863
1863
  *.e-warning .e-progress {
1864
- background-color: rgba(0, 0, 0, 0.3);
1864
+ background: rgba(0, 0, 0, 0.3);
1865
1865
  }
1866
1866
 
1867
1867
  *.e-flat.e-primary .e-progress {
1868
- background-color: rgba(0, 0, 0, 0.2);
1868
+ background: rgba(0, 0, 0, 0.2);
1869
1869
  }
1870
1870
  *.e-flat.e-success .e-progress {
1871
- background-color: rgba(0, 0, 0, 0.2);
1871
+ background: rgba(0, 0, 0, 0.2);
1872
1872
  }
1873
1873
  *.e-flat.e-info .e-progress {
1874
- background-color: rgba(0, 0, 0, 0.2);
1874
+ background: rgba(0, 0, 0, 0.2);
1875
1875
  }
1876
1876
  *.e-flat.e-warning .e-progress {
1877
- background-color: rgba(0, 0, 0, 0.2);
1877
+ background: rgba(0, 0, 0, 0.2);
1878
1878
  }
1879
1879
  *.e-flat.e-danger .e-progress {
1880
- background-color: rgba(0, 0, 0, 0.2);
1880
+ background: rgba(0, 0, 0, 0.2);
1881
1881
  }
1882
1882
 
1883
1883
  *.e-outline:not(:focus).e-primary .e-progress {
1884
- background-color: rgba(255, 217, 57, 0.2);
1884
+ background: rgba(255, 217, 57, 0.2);
1885
1885
  }
1886
1886
  *.e-outline:not(:focus).e-success .e-progress {
1887
- background-color: rgba(22, 102, 0, 0.2);
1887
+ background: rgba(22, 102, 0, 0.2);
1888
1888
  }
1889
1889
  *.e-outline:not(:focus).e-info .e-progress {
1890
- background-color: rgba(0, 86, 179, 0.2);
1890
+ background: rgba(0, 86, 179, 0.2);
1891
1891
  }
1892
1892
  *.e-outline:not(:focus).e-warning .e-progress {
1893
- background-color: rgba(148, 64, 0, 0.2);
1893
+ background: rgba(148, 64, 0, 0.2);
1894
1894
  }
1895
1895
  *.e-outline:not(:focus).e-danger .e-progress {
1896
- background-color: rgba(179, 9, 0, 0.2);
1896
+ background: rgba(179, 9, 0, 0.2);
1897
1897
  }