@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
|
@@ -174,6 +174,10 @@
|
|
|
174
174
|
margin-right: 0;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
+
*.e-bigger .e-dropdown-popup {
|
|
178
|
+
background-color: transparent;
|
|
179
|
+
}
|
|
180
|
+
|
|
177
181
|
*.e-bigger .e-dropdown-popup ul,
|
|
178
182
|
*.e-bigger.e-dropdown-popup ul {
|
|
179
183
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
@@ -181,6 +185,7 @@
|
|
|
181
185
|
max-width: 202px;
|
|
182
186
|
min-width: 112px;
|
|
183
187
|
padding: 8px 0;
|
|
188
|
+
background-color: #374151;
|
|
184
189
|
margin-top: 4px;
|
|
185
190
|
}
|
|
186
191
|
|
|
@@ -174,6 +174,10 @@
|
|
|
174
174
|
margin-right: 0;
|
|
175
175
|
}
|
|
176
176
|
|
|
177
|
+
*.e-bigger .e-dropdown-popup {
|
|
178
|
+
background-color: transparent;
|
|
179
|
+
}
|
|
180
|
+
|
|
177
181
|
*.e-bigger .e-dropdown-popup ul,
|
|
178
182
|
*.e-bigger.e-dropdown-popup ul {
|
|
179
183
|
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
|
|
@@ -181,6 +185,7 @@
|
|
|
181
185
|
max-width: 202px;
|
|
182
186
|
min-width: 112px;
|
|
183
187
|
padding: 8px 0;
|
|
188
|
+
background-color: #fff;
|
|
184
189
|
margin-top: 4px;
|
|
185
190
|
}
|
|
186
191
|
|
package/styles/fabric-dark.css
CHANGED
|
@@ -1017,9 +1017,6 @@
|
|
|
1017
1017
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
1018
1018
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
1019
1019
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
1020
|
-
background-color: #414040;
|
|
1021
|
-
border-color: #201f1f;
|
|
1022
|
-
color: #fff;
|
|
1023
1020
|
box-shadow: none;
|
|
1024
1021
|
box-shadow: none;
|
|
1025
1022
|
}
|
|
@@ -1028,9 +1025,6 @@
|
|
|
1028
1025
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
1029
1026
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
1030
1027
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
1031
|
-
background-color: #0074cc;
|
|
1032
|
-
border-color: #201f1f;
|
|
1033
|
-
color: #fff;
|
|
1034
1028
|
box-shadow: none;
|
|
1035
1029
|
}
|
|
1036
1030
|
|
|
@@ -1038,9 +1032,6 @@
|
|
|
1038
1032
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
1039
1033
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
1040
1034
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
1041
|
-
background-color: #37844d;
|
|
1042
|
-
border-color: #201f1f;
|
|
1043
|
-
color: #fff;
|
|
1044
1035
|
box-shadow: none;
|
|
1045
1036
|
}
|
|
1046
1037
|
|
|
@@ -1048,9 +1039,6 @@
|
|
|
1048
1039
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
1049
1040
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
1050
1041
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
1051
|
-
background-color: #1a69b0;
|
|
1052
|
-
border-color: #201f1f;
|
|
1053
|
-
color: #fff;
|
|
1054
1042
|
box-shadow: none;
|
|
1055
1043
|
}
|
|
1056
1044
|
|
|
@@ -1058,9 +1046,6 @@
|
|
|
1058
1046
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
1059
1047
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
1060
1048
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
1061
|
-
background-color: #a06200;
|
|
1062
|
-
border-color: #201f1f;
|
|
1063
|
-
color: #fff;
|
|
1064
1049
|
box-shadow: none;
|
|
1065
1050
|
}
|
|
1066
1051
|
|
|
@@ -1068,9 +1053,6 @@
|
|
|
1068
1053
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
1069
1054
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
1070
1055
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
1071
|
-
background-color: #b22416;
|
|
1072
|
-
border-color: #201f1f;
|
|
1073
|
-
color: #fff;
|
|
1074
1056
|
box-shadow: none;
|
|
1075
1057
|
}
|
|
1076
1058
|
|
|
@@ -1086,7 +1068,6 @@
|
|
|
1086
1068
|
outline: #414040 0 solid;
|
|
1087
1069
|
outline-offset: 0;
|
|
1088
1070
|
box-shadow: none;
|
|
1089
|
-
box-shadow: none;
|
|
1090
1071
|
}
|
|
1091
1072
|
|
|
1092
1073
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -1100,7 +1081,6 @@
|
|
|
1100
1081
|
color: #fff;
|
|
1101
1082
|
outline: #414040 0 solid;
|
|
1102
1083
|
box-shadow: none;
|
|
1103
|
-
box-shadow: none;
|
|
1104
1084
|
}
|
|
1105
1085
|
|
|
1106
1086
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -1113,7 +1093,6 @@
|
|
|
1113
1093
|
border-color: #255934;
|
|
1114
1094
|
color: #fff;
|
|
1115
1095
|
box-shadow: none;
|
|
1116
|
-
box-shadow: none;
|
|
1117
1096
|
}
|
|
1118
1097
|
|
|
1119
1098
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -1123,9 +1102,8 @@
|
|
|
1123
1102
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
1124
1103
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
1125
1104
|
background-color: #165996;
|
|
1126
|
-
border-color: #165996;
|
|
1127
1105
|
color: #fff;
|
|
1128
|
-
|
|
1106
|
+
border-color: #165996;
|
|
1129
1107
|
box-shadow: none;
|
|
1130
1108
|
}
|
|
1131
1109
|
|
|
@@ -1139,7 +1117,6 @@
|
|
|
1139
1117
|
border-color: #825000;
|
|
1140
1118
|
color: #fff;
|
|
1141
1119
|
box-shadow: none;
|
|
1142
|
-
box-shadow: none;
|
|
1143
1120
|
}
|
|
1144
1121
|
|
|
1145
1122
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -1152,7 +1129,6 @@
|
|
|
1152
1129
|
border-color: #961f12;
|
|
1153
1130
|
color: #fff;
|
|
1154
1131
|
box-shadow: none;
|
|
1155
|
-
box-shadow: none;
|
|
1156
1132
|
}
|
|
1157
1133
|
|
|
1158
1134
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -1165,7 +1141,6 @@
|
|
|
1165
1141
|
border-color: #6f6c6c;
|
|
1166
1142
|
box-shadow: none;
|
|
1167
1143
|
color: #fff;
|
|
1168
|
-
box-shadow: none;
|
|
1169
1144
|
}
|
|
1170
1145
|
|
|
1171
1146
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -1178,7 +1153,6 @@
|
|
|
1178
1153
|
border-color: #005799;
|
|
1179
1154
|
box-shadow: none;
|
|
1180
1155
|
color: #fff;
|
|
1181
|
-
box-shadow: none;
|
|
1182
1156
|
}
|
|
1183
1157
|
|
|
1184
1158
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -1191,7 +1165,6 @@
|
|
|
1191
1165
|
border-color: #255934;
|
|
1192
1166
|
box-shadow: none;
|
|
1193
1167
|
color: #fff;
|
|
1194
|
-
box-shadow: none;
|
|
1195
1168
|
}
|
|
1196
1169
|
|
|
1197
1170
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -1204,7 +1177,6 @@
|
|
|
1204
1177
|
border-color: #165996;
|
|
1205
1178
|
box-shadow: none;
|
|
1206
1179
|
color: #fff;
|
|
1207
|
-
box-shadow: none;
|
|
1208
1180
|
}
|
|
1209
1181
|
|
|
1210
1182
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -1217,7 +1189,6 @@
|
|
|
1217
1189
|
border-color: #825000;
|
|
1218
1190
|
box-shadow: none;
|
|
1219
1191
|
color: #fff;
|
|
1220
|
-
box-shadow: none;
|
|
1221
1192
|
}
|
|
1222
1193
|
|
|
1223
1194
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -1230,7 +1201,6 @@
|
|
|
1230
1201
|
border-color: #961f12;
|
|
1231
1202
|
box-shadow: none;
|
|
1232
1203
|
color: #fff;
|
|
1233
|
-
box-shadow: none;
|
|
1234
1204
|
}
|
|
1235
1205
|
|
|
1236
1206
|
.e-btn-group .e-btn:disabled,
|
package/styles/fabric.css
CHANGED
|
@@ -1020,9 +1020,6 @@
|
|
|
1020
1020
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
1021
1021
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
1022
1022
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
1023
|
-
background-color: #eaeaea;
|
|
1024
|
-
border-color: #d0d0d0;
|
|
1025
|
-
color: #000;
|
|
1026
1023
|
box-shadow: none;
|
|
1027
1024
|
box-shadow: none;
|
|
1028
1025
|
}
|
|
@@ -1031,9 +1028,6 @@
|
|
|
1031
1028
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
1032
1029
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
1033
1030
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
1034
|
-
background-color: #0078d6;
|
|
1035
|
-
border-color: #fff;
|
|
1036
|
-
color: #fff;
|
|
1037
1031
|
box-shadow: none;
|
|
1038
1032
|
}
|
|
1039
1033
|
|
|
@@ -1041,9 +1035,6 @@
|
|
|
1041
1035
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
1042
1036
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
1043
1037
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
1044
|
-
background-color: #137c10;
|
|
1045
|
-
border-color: #fff;
|
|
1046
|
-
color: #fff;
|
|
1047
1038
|
box-shadow: none;
|
|
1048
1039
|
}
|
|
1049
1040
|
|
|
@@ -1051,9 +1042,6 @@
|
|
|
1051
1042
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
1052
1043
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
1053
1044
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
1054
|
-
background-color: #016cc0;
|
|
1055
|
-
border-color: #fff;
|
|
1056
|
-
color: #fff;
|
|
1057
1045
|
box-shadow: none;
|
|
1058
1046
|
}
|
|
1059
1047
|
|
|
@@ -1061,9 +1049,6 @@
|
|
|
1061
1049
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
1062
1050
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
1063
1051
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
1064
|
-
background-color: #c73702;
|
|
1065
|
-
border-color: #fff;
|
|
1066
|
-
color: #fff;
|
|
1067
1052
|
box-shadow: none;
|
|
1068
1053
|
}
|
|
1069
1054
|
|
|
@@ -1071,9 +1056,6 @@
|
|
|
1071
1056
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
1072
1057
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
1073
1058
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
1074
|
-
background-color: #930000;
|
|
1075
|
-
border-color: #fff;
|
|
1076
|
-
color: #fff;
|
|
1077
1059
|
box-shadow: none;
|
|
1078
1060
|
}
|
|
1079
1061
|
|
|
@@ -1089,7 +1071,6 @@
|
|
|
1089
1071
|
outline: #eaeaea 0 solid;
|
|
1090
1072
|
outline-offset: 0;
|
|
1091
1073
|
box-shadow: none;
|
|
1092
|
-
box-shadow: none;
|
|
1093
1074
|
}
|
|
1094
1075
|
|
|
1095
1076
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -1103,7 +1084,6 @@
|
|
|
1103
1084
|
color: #fff;
|
|
1104
1085
|
outline: #eaeaea 0 solid;
|
|
1105
1086
|
box-shadow: none;
|
|
1106
|
-
box-shadow: none;
|
|
1107
1087
|
}
|
|
1108
1088
|
|
|
1109
1089
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -1116,7 +1096,6 @@
|
|
|
1116
1096
|
border-color: #004b1d;
|
|
1117
1097
|
color: #fff;
|
|
1118
1098
|
box-shadow: none;
|
|
1119
|
-
box-shadow: none;
|
|
1120
1099
|
}
|
|
1121
1100
|
|
|
1122
1101
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -1126,9 +1105,8 @@
|
|
|
1126
1105
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
1127
1106
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
1128
1107
|
background-color: #065fa6;
|
|
1129
|
-
border-color: #065fa6;
|
|
1130
1108
|
color: #fff;
|
|
1131
|
-
|
|
1109
|
+
border-color: #065fa6;
|
|
1132
1110
|
box-shadow: none;
|
|
1133
1111
|
}
|
|
1134
1112
|
|
|
@@ -1142,7 +1120,6 @@
|
|
|
1142
1120
|
border-color: #a22c01;
|
|
1143
1121
|
color: #fff;
|
|
1144
1122
|
box-shadow: none;
|
|
1145
|
-
box-shadow: none;
|
|
1146
1123
|
}
|
|
1147
1124
|
|
|
1148
1125
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -1155,7 +1132,6 @@
|
|
|
1155
1132
|
border-color: #7c0101;
|
|
1156
1133
|
color: #fff;
|
|
1157
1134
|
box-shadow: none;
|
|
1158
|
-
box-shadow: none;
|
|
1159
1135
|
}
|
|
1160
1136
|
|
|
1161
1137
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -1168,7 +1144,6 @@
|
|
|
1168
1144
|
border-color: #c8c8c8;
|
|
1169
1145
|
box-shadow: none;
|
|
1170
1146
|
color: #000;
|
|
1171
|
-
box-shadow: none;
|
|
1172
1147
|
}
|
|
1173
1148
|
|
|
1174
1149
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -1181,7 +1156,6 @@
|
|
|
1181
1156
|
border-color: #0078d6;
|
|
1182
1157
|
box-shadow: none;
|
|
1183
1158
|
color: #fff;
|
|
1184
|
-
box-shadow: none;
|
|
1185
1159
|
}
|
|
1186
1160
|
|
|
1187
1161
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -1194,7 +1168,6 @@
|
|
|
1194
1168
|
border-color: #004b1d;
|
|
1195
1169
|
box-shadow: none;
|
|
1196
1170
|
color: #fff;
|
|
1197
|
-
box-shadow: none;
|
|
1198
1171
|
}
|
|
1199
1172
|
|
|
1200
1173
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -1207,7 +1180,6 @@
|
|
|
1207
1180
|
border-color: #065fa6;
|
|
1208
1181
|
box-shadow: none;
|
|
1209
1182
|
color: #fff;
|
|
1210
|
-
box-shadow: none;
|
|
1211
1183
|
}
|
|
1212
1184
|
|
|
1213
1185
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -1220,7 +1192,6 @@
|
|
|
1220
1192
|
border-color: #a22c01;
|
|
1221
1193
|
box-shadow: none;
|
|
1222
1194
|
color: #fff;
|
|
1223
|
-
box-shadow: none;
|
|
1224
1195
|
}
|
|
1225
1196
|
|
|
1226
1197
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -1233,7 +1204,6 @@
|
|
|
1233
1204
|
border-color: #7c0101;
|
|
1234
1205
|
box-shadow: none;
|
|
1235
1206
|
color: #fff;
|
|
1236
|
-
box-shadow: none;
|
|
1237
1207
|
}
|
|
1238
1208
|
|
|
1239
1209
|
.e-btn-group .e-btn:disabled,
|
|
@@ -1017,9 +1017,6 @@
|
|
|
1017
1017
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
1018
1018
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
1019
1019
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
1020
|
-
background-color: #fff;
|
|
1021
|
-
border-color: #000;
|
|
1022
|
-
color: #000;
|
|
1023
1020
|
box-shadow: none;
|
|
1024
1021
|
box-shadow: none;
|
|
1025
1022
|
}
|
|
@@ -1028,9 +1025,6 @@
|
|
|
1028
1025
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
1029
1026
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
1030
1027
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
1031
|
-
background-color: #400074;
|
|
1032
|
-
border-color: #400074;
|
|
1033
|
-
color: #fff;
|
|
1034
1028
|
box-shadow: none;
|
|
1035
1029
|
}
|
|
1036
1030
|
|
|
@@ -1038,9 +1032,6 @@
|
|
|
1038
1032
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
1039
1033
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
1040
1034
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
1041
|
-
background-color: #2bc700;
|
|
1042
|
-
border-color: #166600;
|
|
1043
|
-
color: #fff;
|
|
1044
1035
|
box-shadow: none;
|
|
1045
1036
|
}
|
|
1046
1037
|
|
|
@@ -1048,9 +1039,6 @@
|
|
|
1048
1039
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
1049
1040
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
1050
1041
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
1051
|
-
background-color: #66b0ff;
|
|
1052
|
-
border-color: #0056b3;
|
|
1053
|
-
color: #fff;
|
|
1054
1042
|
box-shadow: none;
|
|
1055
1043
|
}
|
|
1056
1044
|
|
|
@@ -1058,9 +1046,6 @@
|
|
|
1058
1046
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
1059
1047
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
1060
1048
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
1061
|
-
background-color: #ff7d1a;
|
|
1062
|
-
border-color: #944000;
|
|
1063
|
-
color: #fff;
|
|
1064
1049
|
box-shadow: none;
|
|
1065
1050
|
}
|
|
1066
1051
|
|
|
@@ -1068,9 +1053,6 @@
|
|
|
1068
1053
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
1069
1054
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
1070
1055
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
1071
|
-
background-color: #ff6161;
|
|
1072
|
-
border-color: #b30900;
|
|
1073
|
-
color: #fff;
|
|
1074
1056
|
box-shadow: none;
|
|
1075
1057
|
}
|
|
1076
1058
|
|
|
@@ -1086,7 +1068,6 @@
|
|
|
1086
1068
|
outline: #000 0 solid;
|
|
1087
1069
|
outline-offset: 0;
|
|
1088
1070
|
box-shadow: none;
|
|
1089
|
-
box-shadow: none;
|
|
1090
1071
|
}
|
|
1091
1072
|
|
|
1092
1073
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -1100,7 +1081,6 @@
|
|
|
1100
1081
|
color: #fff;
|
|
1101
1082
|
outline: #000 0 solid;
|
|
1102
1083
|
box-shadow: none;
|
|
1103
|
-
box-shadow: none;
|
|
1104
1084
|
}
|
|
1105
1085
|
|
|
1106
1086
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -1113,7 +1093,6 @@
|
|
|
1113
1093
|
border-color: #000;
|
|
1114
1094
|
color: #2ccc00;
|
|
1115
1095
|
box-shadow: none;
|
|
1116
|
-
box-shadow: none;
|
|
1117
1096
|
}
|
|
1118
1097
|
|
|
1119
1098
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -1123,9 +1102,8 @@
|
|
|
1123
1102
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
1124
1103
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
1125
1104
|
background-color: #000;
|
|
1126
|
-
border-color: #000;
|
|
1127
1105
|
color: #66b0ff;
|
|
1128
|
-
|
|
1106
|
+
border-color: #000;
|
|
1129
1107
|
box-shadow: none;
|
|
1130
1108
|
}
|
|
1131
1109
|
|
|
@@ -1139,7 +1117,6 @@
|
|
|
1139
1117
|
border-color: #000;
|
|
1140
1118
|
color: #ff7d1a;
|
|
1141
1119
|
box-shadow: none;
|
|
1142
|
-
box-shadow: none;
|
|
1143
1120
|
}
|
|
1144
1121
|
|
|
1145
1122
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -1152,7 +1129,6 @@
|
|
|
1152
1129
|
border-color: #000;
|
|
1153
1130
|
color: #ff6161;
|
|
1154
1131
|
box-shadow: none;
|
|
1155
|
-
box-shadow: none;
|
|
1156
1132
|
}
|
|
1157
1133
|
|
|
1158
1134
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -1165,7 +1141,6 @@
|
|
|
1165
1141
|
border-color: #400074;
|
|
1166
1142
|
box-shadow: none;
|
|
1167
1143
|
color: #fff;
|
|
1168
|
-
box-shadow: none;
|
|
1169
1144
|
}
|
|
1170
1145
|
|
|
1171
1146
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -1178,7 +1153,6 @@
|
|
|
1178
1153
|
border-color: #400074;
|
|
1179
1154
|
box-shadow: none;
|
|
1180
1155
|
color: #fff;
|
|
1181
|
-
box-shadow: none;
|
|
1182
1156
|
}
|
|
1183
1157
|
|
|
1184
1158
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -1191,7 +1165,6 @@
|
|
|
1191
1165
|
border-color: #000;
|
|
1192
1166
|
box-shadow: none;
|
|
1193
1167
|
color: #2ccc00;
|
|
1194
|
-
box-shadow: none;
|
|
1195
1168
|
}
|
|
1196
1169
|
|
|
1197
1170
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -1204,7 +1177,6 @@
|
|
|
1204
1177
|
border-color: #000;
|
|
1205
1178
|
box-shadow: none;
|
|
1206
1179
|
color: #66b0ff;
|
|
1207
|
-
box-shadow: none;
|
|
1208
1180
|
}
|
|
1209
1181
|
|
|
1210
1182
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -1217,7 +1189,6 @@
|
|
|
1217
1189
|
border-color: #000;
|
|
1218
1190
|
box-shadow: none;
|
|
1219
1191
|
color: #ff7d1a;
|
|
1220
|
-
box-shadow: none;
|
|
1221
1192
|
}
|
|
1222
1193
|
|
|
1223
1194
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -1230,7 +1201,6 @@
|
|
|
1230
1201
|
border-color: #000;
|
|
1231
1202
|
box-shadow: none;
|
|
1232
1203
|
color: #ff6161;
|
|
1233
|
-
box-shadow: none;
|
|
1234
1204
|
}
|
|
1235
1205
|
|
|
1236
1206
|
.e-btn-group .e-btn:disabled,
|
package/styles/highcontrast.css
CHANGED
|
@@ -1018,9 +1018,6 @@
|
|
|
1018
1018
|
.e-btn-group input:focus + label.e-btn.e-outline,
|
|
1019
1019
|
.e-css.e-btn-group .e-btn:focus.e-outline,
|
|
1020
1020
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline {
|
|
1021
|
-
background-color: #000;
|
|
1022
|
-
border-color: #fff;
|
|
1023
|
-
color: #fff;
|
|
1024
1021
|
box-shadow: none;
|
|
1025
1022
|
box-shadow: none;
|
|
1026
1023
|
}
|
|
@@ -1029,9 +1026,6 @@
|
|
|
1029
1026
|
.e-btn-group input:focus + label.e-btn.e-outline.e-primary,
|
|
1030
1027
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
|
|
1031
1028
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
|
|
1032
|
-
background-color: #ffd939;
|
|
1033
|
-
border-color: #ffd939;
|
|
1034
|
-
color: #000;
|
|
1035
1029
|
box-shadow: none;
|
|
1036
1030
|
}
|
|
1037
1031
|
|
|
@@ -1039,9 +1033,6 @@
|
|
|
1039
1033
|
.e-btn-group input:focus + label.e-btn.e-outline.e-success,
|
|
1040
1034
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-success,
|
|
1041
1035
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
|
|
1042
|
-
background-color: #166600;
|
|
1043
|
-
border-color: #166600;
|
|
1044
|
-
color: #fff;
|
|
1045
1036
|
box-shadow: none;
|
|
1046
1037
|
}
|
|
1047
1038
|
|
|
@@ -1049,9 +1040,6 @@
|
|
|
1049
1040
|
.e-btn-group input:focus + label.e-btn.e-outline.e-info,
|
|
1050
1041
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-info,
|
|
1051
1042
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
|
|
1052
|
-
background-color: #0056b3;
|
|
1053
|
-
border-color: #0056b3;
|
|
1054
|
-
color: #fff;
|
|
1055
1043
|
box-shadow: none;
|
|
1056
1044
|
}
|
|
1057
1045
|
|
|
@@ -1059,9 +1047,6 @@
|
|
|
1059
1047
|
.e-btn-group input:focus + label.e-btn.e-outline.e-warning,
|
|
1060
1048
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
|
|
1061
1049
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
|
|
1062
|
-
background-color: #944000;
|
|
1063
|
-
border-color: #944000;
|
|
1064
|
-
color: #fff;
|
|
1065
1050
|
box-shadow: none;
|
|
1066
1051
|
}
|
|
1067
1052
|
|
|
@@ -1069,9 +1054,6 @@
|
|
|
1069
1054
|
.e-btn-group input:focus + label.e-btn.e-outline.e-danger,
|
|
1070
1055
|
.e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
|
|
1071
1056
|
.e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
|
|
1072
|
-
background-color: #b30900;
|
|
1073
|
-
border-color: #b30900;
|
|
1074
|
-
color: #fff;
|
|
1075
1057
|
box-shadow: none;
|
|
1076
1058
|
}
|
|
1077
1059
|
|
|
@@ -1087,7 +1069,6 @@
|
|
|
1087
1069
|
outline: #fff 0 solid;
|
|
1088
1070
|
outline-offset: 0;
|
|
1089
1071
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
1090
|
-
box-shadow: none;
|
|
1091
1072
|
}
|
|
1092
1073
|
|
|
1093
1074
|
.e-btn-group .e-btn:active.e-primary,
|
|
@@ -1101,7 +1082,6 @@
|
|
|
1101
1082
|
color: #000;
|
|
1102
1083
|
outline: #fff 0 solid;
|
|
1103
1084
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
1104
|
-
box-shadow: none;
|
|
1105
1085
|
}
|
|
1106
1086
|
|
|
1107
1087
|
.e-btn-group .e-btn:active.e-success,
|
|
@@ -1114,7 +1094,6 @@
|
|
|
1114
1094
|
border-color: #fff;
|
|
1115
1095
|
color: #166600;
|
|
1116
1096
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
1117
|
-
box-shadow: none;
|
|
1118
1097
|
}
|
|
1119
1098
|
|
|
1120
1099
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -1124,10 +1103,9 @@
|
|
|
1124
1103
|
.e-css.e-btn-group input:active + label.e-btn.e-info,
|
|
1125
1104
|
.e-css.e-btn-group input:checked + label.e-btn.e-info {
|
|
1126
1105
|
background-color: #fff;
|
|
1127
|
-
border-color: #fff;
|
|
1128
1106
|
color: #0056b3;
|
|
1107
|
+
border-color: #fff;
|
|
1129
1108
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
1130
|
-
box-shadow: none;
|
|
1131
1109
|
}
|
|
1132
1110
|
|
|
1133
1111
|
.e-btn-group .e-btn:active.e-warning,
|
|
@@ -1140,7 +1118,6 @@
|
|
|
1140
1118
|
border-color: #fff;
|
|
1141
1119
|
color: #944000;
|
|
1142
1120
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
1143
|
-
box-shadow: none;
|
|
1144
1121
|
}
|
|
1145
1122
|
|
|
1146
1123
|
.e-btn-group .e-btn:active.e-danger,
|
|
@@ -1153,7 +1130,6 @@
|
|
|
1153
1130
|
border-color: #fff;
|
|
1154
1131
|
color: #b30900;
|
|
1155
1132
|
box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
|
|
1156
|
-
box-shadow: none;
|
|
1157
1133
|
}
|
|
1158
1134
|
|
|
1159
1135
|
.e-btn-group .e-btn:active.e-outline,
|
|
@@ -1166,7 +1142,6 @@
|
|
|
1166
1142
|
border-color: #ffd939;
|
|
1167
1143
|
box-shadow: none;
|
|
1168
1144
|
color: #000;
|
|
1169
|
-
box-shadow: none;
|
|
1170
1145
|
}
|
|
1171
1146
|
|
|
1172
1147
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -1179,7 +1154,6 @@
|
|
|
1179
1154
|
border-color: #ffd939;
|
|
1180
1155
|
box-shadow: none;
|
|
1181
1156
|
color: #000;
|
|
1182
|
-
box-shadow: none;
|
|
1183
1157
|
}
|
|
1184
1158
|
|
|
1185
1159
|
.e-btn-group .e-btn:active.e-outline.e-success,
|
|
@@ -1192,7 +1166,6 @@
|
|
|
1192
1166
|
border-color: #fff;
|
|
1193
1167
|
box-shadow: none;
|
|
1194
1168
|
color: #166600;
|
|
1195
|
-
box-shadow: none;
|
|
1196
1169
|
}
|
|
1197
1170
|
|
|
1198
1171
|
.e-btn-group .e-btn:active.e-outline.e-info,
|
|
@@ -1205,7 +1178,6 @@
|
|
|
1205
1178
|
border-color: #fff;
|
|
1206
1179
|
box-shadow: none;
|
|
1207
1180
|
color: #0056b3;
|
|
1208
|
-
box-shadow: none;
|
|
1209
1181
|
}
|
|
1210
1182
|
|
|
1211
1183
|
.e-btn-group .e-btn:active.e-outline.e-warning,
|
|
@@ -1218,7 +1190,6 @@
|
|
|
1218
1190
|
border-color: #fff;
|
|
1219
1191
|
box-shadow: none;
|
|
1220
1192
|
color: #944000;
|
|
1221
|
-
box-shadow: none;
|
|
1222
1193
|
}
|
|
1223
1194
|
|
|
1224
1195
|
.e-btn-group .e-btn:active.e-outline.e-danger,
|
|
@@ -1231,7 +1202,6 @@
|
|
|
1231
1202
|
border-color: #fff;
|
|
1232
1203
|
box-shadow: none;
|
|
1233
1204
|
color: #b30900;
|
|
1234
|
-
box-shadow: none;
|
|
1235
1205
|
}
|
|
1236
1206
|
|
|
1237
1207
|
.e-btn-group .e-btn:disabled,
|