@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
package/styles/material-dark.css
CHANGED
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
|
|
279
279
|
.e-split-btn-wrapper .e-split-btn:active {
|
|
280
280
|
box-shadow: none;
|
|
281
|
-
z-index:
|
|
281
|
+
z-index: 0;
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
.e-split-btn-wrapper .e-split-btn.e-top-icon-btn {
|
|
@@ -944,7 +944,7 @@
|
|
|
944
944
|
.e-btn-group input:focus + label.e-btn.e-primary,
|
|
945
945
|
.e-css.e-btn-group .e-btn:focus.e-primary,
|
|
946
946
|
.e-css.e-btn-group input:focus + label.e-btn.e-primary {
|
|
947
|
-
background-color: #
|
|
947
|
+
background-color: #0086c2;
|
|
948
948
|
border-color: transparent;
|
|
949
949
|
color: #000;
|
|
950
950
|
outline: #616161 0 solid;
|
|
@@ -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: rgba(255, 255, 255, 0.24);
|
|
1022
|
-
border-color: transparent;
|
|
1023
|
-
color: #fff;
|
|
1024
1021
|
box-shadow: 0 2px 7px 0 rgba(0, 0, 0, 0.26);
|
|
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: #c26182;
|
|
1033
|
-
border-color: transparent;
|
|
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: #77c27a;
|
|
1043
|
-
border-color: transparent;
|
|
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: #17b0f5;
|
|
1053
|
-
border-color: transparent;
|
|
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: #ffa014;
|
|
1063
|
-
border-color: transparent;
|
|
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: #ff7260;
|
|
1073
|
-
border-color: transparent;
|
|
1074
|
-
color: #fff;
|
|
1075
1057
|
box-shadow: none;
|
|
1076
1058
|
}
|
|
1077
1059
|
|
|
@@ -1087,7 +1069,6 @@
|
|
|
1087
1069
|
outline: #616161 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,
|
|
@@ -1096,12 +1077,11 @@
|
|
|
1096
1077
|
.e-css.e-btn-group .e-btn:active.e-primary,
|
|
1097
1078
|
.e-css.e-btn-group input:active + label.e-btn.e-primary,
|
|
1098
1079
|
.e-css.e-btn-group input:checked + label.e-btn.e-primary {
|
|
1099
|
-
background-color: #
|
|
1080
|
+
background-color: #0078ad;
|
|
1100
1081
|
border-color: transparent;
|
|
1101
1082
|
color: #000;
|
|
1102
1083
|
outline: #616161 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: transparent;
|
|
1115
1095
|
color: #fff;
|
|
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: #54c5f8;
|
|
1127
|
-
border-color: transparent;
|
|
1128
1106
|
color: #fff;
|
|
1107
|
+
border-color: transparent;
|
|
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: transparent;
|
|
1141
1119
|
color: #fff;
|
|
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: transparent;
|
|
1154
1131
|
color: #fff;
|
|
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: #616161;
|
|
1167
1143
|
box-shadow: none;
|
|
1168
1144
|
color: #fff;
|
|
1169
|
-
box-shadow: none;
|
|
1170
1145
|
}
|
|
1171
1146
|
|
|
1172
1147
|
.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
@@ -1175,11 +1150,10 @@
|
|
|
1175
1150
|
.e-css.e-btn-group .e-btn:active.e-outline.e-primary,
|
|
1176
1151
|
.e-css.e-btn-group input:active + label.e-btn.e-outline.e-primary,
|
|
1177
1152
|
.e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
|
|
1178
|
-
background-color: #
|
|
1153
|
+
background-color: #0078ad;
|
|
1179
1154
|
border-color: transparent;
|
|
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: transparent;
|
|
1193
1167
|
box-shadow: none;
|
|
1194
1168
|
color: #fff;
|
|
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: transparent;
|
|
1206
1179
|
box-shadow: none;
|
|
1207
1180
|
color: #fff;
|
|
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: transparent;
|
|
1219
1191
|
box-shadow: none;
|
|
1220
1192
|
color: #fff;
|
|
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: transparent;
|
|
1232
1203
|
box-shadow: none;
|
|
1233
1204
|
color: #fff;
|
|
1234
|
-
box-shadow: none;
|
|
1235
1205
|
}
|
|
1236
1206
|
|
|
1237
1207
|
.e-btn-group .e-btn:disabled,
|
|
@@ -1330,7 +1300,7 @@
|
|
|
1330
1300
|
border-color: rgba(97, 97, 97, 0.3);
|
|
1331
1301
|
box-shadow: none;
|
|
1332
1302
|
color: rgba(255, 255, 255, 0.3);
|
|
1333
|
-
border-color: #
|
|
1303
|
+
border-color: #00b0ff;
|
|
1334
1304
|
}
|
|
1335
1305
|
|
|
1336
1306
|
.e-btn-group .e-btn:disabled.e-outline.e-success,
|
|
@@ -1918,16 +1888,16 @@
|
|
|
1918
1888
|
}
|
|
1919
1889
|
|
|
1920
1890
|
.e-progress-btn.e-primary.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-primary.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg {
|
|
1921
|
-
fill: #
|
|
1922
|
-
stroke: #
|
|
1891
|
+
fill: #00b0ff;
|
|
1892
|
+
stroke: #00b0ff;
|
|
1923
1893
|
}
|
|
1924
1894
|
|
|
1925
1895
|
.e-progress-btn.e-primary.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-primary.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle, .e-progress-btn.e-primary.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
1926
|
-
stroke: #
|
|
1896
|
+
stroke: #00b0ff;
|
|
1927
1897
|
}
|
|
1928
1898
|
|
|
1929
1899
|
.e-progress-btn.e-primary.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-primary.e-outline:hover.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc, .e-progress-btn.e-primary.e-outline:focus.e-flat .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
1930
|
-
stroke: #
|
|
1900
|
+
stroke: #00b0ff;
|
|
1931
1901
|
}
|
|
1932
1902
|
|
|
1933
1903
|
.e-progress-btn.e-success .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-outline:hover .e-spinner-pane .e-spinner-inner svg, .e-progress-btn.e-success.e-outline:focus .e-spinner-pane .e-spinner-inner svg {
|
|
@@ -2035,16 +2005,16 @@
|
|
|
2035
2005
|
}
|
|
2036
2006
|
|
|
2037
2007
|
.e-progress-btn.e-outline.e-primary .e-spinner-pane .e-spinner-inner svg {
|
|
2038
|
-
fill: #
|
|
2039
|
-
stroke: #
|
|
2008
|
+
fill: #00b0ff;
|
|
2009
|
+
stroke: #00b0ff;
|
|
2040
2010
|
}
|
|
2041
2011
|
|
|
2042
2012
|
.e-progress-btn.e-outline.e-primary .e-spinner-pane .e-spinner-inner svg .e-path-circle {
|
|
2043
|
-
stroke: #
|
|
2013
|
+
stroke: #00b0ff;
|
|
2044
2014
|
}
|
|
2045
2015
|
|
|
2046
2016
|
.e-progress-btn.e-outline.e-primary .e-spinner-pane .e-spinner-inner svg .e-path-arc {
|
|
2047
|
-
stroke: #
|
|
2017
|
+
stroke: #00b0ff;
|
|
2048
2018
|
}
|
|
2049
2019
|
|
|
2050
2020
|
.e-progress-btn.e-outline.e-success .e-spinner-pane .e-spinner-inner svg {
|
|
@@ -2148,7 +2118,7 @@
|
|
|
2148
2118
|
}
|
|
2149
2119
|
|
|
2150
2120
|
*.e-outline:not(:focus).e-primary .e-progress {
|
|
2151
|
-
background-color: rgba(
|
|
2121
|
+
background-color: rgba(0, 176, 255, 0.2);
|
|
2152
2122
|
}
|
|
2153
2123
|
|
|
2154
2124
|
*.e-outline:not(:focus).e-success .e-progress {
|
package/styles/material.css
CHANGED
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
|
|
279
279
|
.e-split-btn-wrapper .e-split-btn:active {
|
|
280
280
|
box-shadow: none;
|
|
281
|
-
z-index:
|
|
281
|
+
z-index: 0;
|
|
282
282
|
}
|
|
283
283
|
|
|
284
284
|
.e-split-btn-wrapper .e-split-btn.e-top-icon-btn {
|
|
@@ -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: rgba(0, 0, 0, 0.24);
|
|
1024
|
-
border-color: transparent;
|
|
1025
|
-
color: rgba(0, 0, 0, 0.87);
|
|
1026
1023
|
box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
|
|
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: #ea4e82;
|
|
1035
|
-
border-color: transparent;
|
|
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: #78a253;
|
|
1045
|
-
border-color: transparent;
|
|
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: #2188da;
|
|
1055
|
-
border-color: transparent;
|
|
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: #c86b1f;
|
|
1065
|
-
border-color: transparent;
|
|
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: #db582f;
|
|
1075
|
-
border-color: transparent;
|
|
1076
|
-
color: #fff;
|
|
1077
1059
|
box-shadow: none;
|
|
1078
1060
|
}
|
|
1079
1061
|
|
|
@@ -1089,7 +1071,6 @@
|
|
|
1089
1071
|
outline: #fafafa 0 solid;
|
|
1090
1072
|
outline-offset: 0;
|
|
1091
1073
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
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: #fafafa 0 solid;
|
|
1105
1086
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
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: transparent;
|
|
1117
1097
|
color: #fff;
|
|
1118
1098
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1119
|
-
box-shadow: none;
|
|
1120
1099
|
}
|
|
1121
1100
|
|
|
1122
1101
|
.e-btn-group .e-btn:active.e-info,
|
|
@@ -1126,10 +1105,9 @@
|
|
|
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: #54a3e2;
|
|
1129
|
-
border-color: transparent;
|
|
1130
1108
|
color: #fff;
|
|
1109
|
+
border-color: transparent;
|
|
1131
1110
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
1132
|
-
box-shadow: none;
|
|
1133
1111
|
}
|
|
1134
1112
|
|
|
1135
1113
|
.e-btn-group .e-btn:active.e-warning,
|
|
@@ -1142,7 +1120,6 @@
|
|
|
1142
1120
|
border-color: transparent;
|
|
1143
1121
|
color: #fff;
|
|
1144
1122
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
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: transparent;
|
|
1156
1133
|
color: #fff;
|
|
1157
1134
|
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
|
|
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: #adadad;
|
|
1169
1145
|
box-shadow: none;
|
|
1170
1146
|
color: rgba(0, 0, 0, 0.87);
|
|
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: transparent;
|
|
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: transparent;
|
|
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: transparent;
|
|
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: transparent;
|
|
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: transparent;
|
|
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,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './bootstrap5-definition.scss';
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
//layout variables
|
|
2
|
+
$progress-btn-circle-opacity: .3 !default;
|
|
3
|
+
$progress-btn-transition: all .3s linear !default;
|
|
4
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
5
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
6
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
7
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
8
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
9
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
10
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
11
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
12
|
+
$progress-btn-color: $secondary-text-color !default;
|
|
13
|
+
$progress-btn-bgcolor: rgba($secondary-text-color, .2) !default;
|
|
14
|
+
$progress-btn-bgcolor-normal: rgba($secondary-text-color, .2) !default;
|
|
15
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
16
|
+
$progress-btn-flat-primary-progress-color: rgba($primary-text-color, 1) !default;
|
|
17
|
+
$progress-btn-flat-success-progress-color: rgba($success-text, 1) !default;
|
|
18
|
+
$progress-btn-flat-info-progress-color: rgba($info-text, 1) !default;
|
|
19
|
+
$progress-btn-flat-warning-progress-color: rgba($warning-text, 1) !default;
|
|
20
|
+
$progress-btn-flat-danger-progress-color: rgba($danger-text, 1) !default;
|
|
21
|
+
$btn-flat-primary-path-arc: $white;
|
|
@@ -1,24 +1 @@
|
|
|
1
|
-
|
|
2
|
-
$progress-btn-bgcolor: rgba($secondary-text-color, .2) !default;
|
|
3
|
-
$progress-btn-bgcolor-normal: rgba($secondary-text-color, .2) !default;
|
|
4
|
-
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
5
|
-
$progress-btn-circle-opacity: .8 !default;
|
|
6
|
-
|
|
7
|
-
$progress-btn-transition: all .3s linear !default;
|
|
8
|
-
|
|
9
|
-
$progress-btn-spinner-padding: 12px !default;
|
|
10
|
-
$progress-btn-spinner-padding-small: 10px !default;
|
|
11
|
-
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
12
|
-
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
13
|
-
|
|
14
|
-
$progress-btn-spin-btn-padding: 16px !default;
|
|
15
|
-
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
16
|
-
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
17
|
-
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
18
|
-
|
|
19
|
-
$progress-btn-flat-primary-progress-color: rgba($primary-text-color, 1) !default;
|
|
20
|
-
$progress-btn-flat-success-progress-color: rgba($success-text, 1) !default;
|
|
21
|
-
$progress-btn-flat-info-progress-color: rgba($info-text, 1) !default;
|
|
22
|
-
$progress-btn-flat-warning-progress-color: rgba($warning-text, 1) !default;
|
|
23
|
-
$progress-btn-flat-danger-progress-color: rgba($danger-text, 1) !default;
|
|
24
|
-
$btn-flat-primary-path-arc: #000;
|
|
1
|
+
@import './tailwind-definition.scss';
|
|
@@ -1,24 +1,21 @@
|
|
|
1
|
-
|
|
2
|
-
$progress-btn-bgcolor: rgba($secondary-text-color, .2) !default;
|
|
3
|
-
$progress-btn-bgcolor-normal: rgba($secondary-text-color, .2) !default;
|
|
4
|
-
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
1
|
+
//layout variables
|
|
5
2
|
$progress-btn-circle-opacity: .8 !default;
|
|
6
|
-
|
|
7
3
|
$progress-btn-transition: all .3s linear !default;
|
|
8
|
-
|
|
9
4
|
$progress-btn-spinner-padding: 12px !default;
|
|
10
5
|
$progress-btn-spinner-padding-small: 10px !default;
|
|
11
6
|
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
12
7
|
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
13
|
-
|
|
14
8
|
$progress-btn-spin-btn-padding: 16px !default;
|
|
15
9
|
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
16
10
|
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
17
11
|
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
18
|
-
|
|
12
|
+
$progress-btn-color: $secondary-text-color !default;
|
|
13
|
+
$progress-btn-bgcolor: rgba($secondary-text-color, .2) !default;
|
|
14
|
+
$progress-btn-bgcolor-normal: rgba($secondary-text-color, .2) !default;
|
|
15
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
19
16
|
$progress-btn-flat-primary-progress-color: rgba($primary-text-color, 1) !default;
|
|
20
17
|
$progress-btn-flat-success-progress-color: rgba($success-text, 1) !default;
|
|
21
18
|
$progress-btn-flat-info-progress-color: rgba($info-text, 1) !default;
|
|
22
19
|
$progress-btn-flat-warning-progress-color: rgba($warning-text, 1) !default;
|
|
23
20
|
$progress-btn-flat-danger-progress-color: rgba($danger-text, 1) !default;
|
|
24
|
-
$btn-flat-primary-path-arc:
|
|
21
|
+
$btn-flat-primary-path-arc: $white;
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
stroke: $btn-flat-primary-color;
|
|
46
46
|
|
|
47
47
|
.e-path-circle {
|
|
48
|
-
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
48
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' {
|
|
49
49
|
stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
|
|
50
50
|
}
|
|
51
51
|
@else {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
}
|
|
55
55
|
|
|
56
56
|
.e-path-arc {
|
|
57
|
-
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
|
|
57
|
+
@if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' {
|
|
58
58
|
stroke: $btn-flat-primary-path-arc;
|
|
59
59
|
}
|
|
60
60
|
@else {
|