@syncfusion/ej2-splitbuttons 27.2.2 → 28.1.33
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/README.md +4 -4
- package/dist/ej2-splitbuttons.min.js +3 -3
- package/dist/ej2-splitbuttons.umd.min.js +3 -3
- package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es2015.js +140 -46
- package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-splitbuttons.es5.js +146 -46
- package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-splitbuttons.min.js +3 -3
- package/dist/global/ej2-splitbuttons.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +8 -8
- package/src/common/common.d.ts +5 -0
- package/src/common/common.js +2 -2
- package/src/drop-down-button/drop-down-button-model.d.ts +63 -1
- package/src/drop-down-button/drop-down-button.d.ts +60 -3
- package/src/drop-down-button/drop-down-button.js +146 -45
- package/styles/bds-lite.css +1937 -0
- package/styles/bds-lite.scss +13 -0
- package/styles/bds.css +2148 -0
- package/styles/bds.scss +17 -0
- package/styles/bootstrap-dark-lite.css +11 -0
- package/styles/bootstrap-dark.css +11 -1
- package/styles/bootstrap-lite.css +11 -0
- package/styles/bootstrap.css +11 -1
- package/styles/bootstrap4-lite.css +11 -0
- package/styles/bootstrap4.css +11 -1
- package/styles/bootstrap5-dark-lite.css +11 -0
- package/styles/bootstrap5-dark.css +11 -1
- package/styles/bootstrap5-lite.css +11 -0
- package/styles/bootstrap5.3-lite.css +11 -0
- package/styles/bootstrap5.3.css +11 -1
- package/styles/bootstrap5.css +11 -1
- package/styles/button-group/_group-button-mixin.scss +2 -2
- package/styles/button-group/_layout.scss +1 -1
- package/styles/button-group/_tailwind3-definition.scss +31 -0
- package/styles/button-group/_theme.scss +83 -12
- package/styles/button-group/bds.css +861 -0
- package/styles/button-group/bds.scss +5 -0
- package/styles/button-group/tailwind3.css +847 -0
- package/styles/button-group/tailwind3.scss +5 -0
- package/styles/drop-down-button/_bigger.scss +20 -0
- package/styles/drop-down-button/_layout.scss +36 -3
- package/styles/drop-down-button/_tailwind3-definition.scss +53 -0
- package/styles/drop-down-button/_theme.scss +7 -0
- package/styles/drop-down-button/bds.css +372 -0
- package/styles/drop-down-button/bds.scss +7 -0
- package/styles/drop-down-button/bootstrap-dark.css +11 -1
- package/styles/drop-down-button/bootstrap.css +11 -1
- package/styles/drop-down-button/bootstrap4.css +11 -1
- package/styles/drop-down-button/bootstrap5-dark.css +11 -1
- package/styles/drop-down-button/bootstrap5.3.css +11 -1
- package/styles/drop-down-button/bootstrap5.css +11 -1
- package/styles/drop-down-button/fabric-dark.css +11 -1
- package/styles/drop-down-button/fabric.css +11 -1
- package/styles/drop-down-button/fluent-dark.css +11 -1
- package/styles/drop-down-button/fluent.css +11 -1
- package/styles/drop-down-button/fluent2.css +11 -1
- package/styles/drop-down-button/highcontrast-light.css +11 -1
- package/styles/drop-down-button/highcontrast.css +11 -1
- package/styles/drop-down-button/icons/_tailwind3.scss +10 -0
- package/styles/drop-down-button/material-dark.css +11 -1
- package/styles/drop-down-button/material.css +11 -1
- package/styles/drop-down-button/material3-dark.css +11 -1
- package/styles/drop-down-button/material3.css +11 -1
- package/styles/drop-down-button/tailwind-dark.css +11 -1
- package/styles/drop-down-button/tailwind.css +11 -1
- package/styles/drop-down-button/tailwind3.css +295 -0
- package/styles/drop-down-button/tailwind3.scss +7 -0
- package/styles/fabric-dark-lite.css +11 -0
- package/styles/fabric-dark.css +11 -1
- package/styles/fabric-lite.css +11 -0
- package/styles/fabric.css +11 -1
- package/styles/fluent-dark-lite.css +11 -0
- package/styles/fluent-dark.css +11 -1
- package/styles/fluent-lite.css +11 -0
- package/styles/fluent.css +11 -1
- package/styles/fluent2-lite.css +11 -0
- package/styles/fluent2.css +11 -1
- package/styles/highcontrast-light-lite.css +11 -0
- package/styles/highcontrast-light.css +11 -1
- package/styles/highcontrast-lite.css +11 -0
- package/styles/highcontrast.css +11 -1
- package/styles/material-dark-lite.css +11 -0
- package/styles/material-dark.css +11 -1
- package/styles/material-lite.css +11 -0
- package/styles/material.css +11 -1
- package/styles/material3-dark-lite.css +11 -0
- package/styles/material3-dark.css +11 -1
- package/styles/material3-lite.css +11 -0
- package/styles/material3.css +11 -1
- package/styles/progress-button/_tailwind3-definition.scss +20 -0
- package/styles/progress-button/_theme.scss +70 -0
- package/styles/progress-button/bds.css +683 -0
- package/styles/progress-button/bds.scss +6 -0
- package/styles/progress-button/tailwind3.css +636 -0
- package/styles/progress-button/tailwind3.scss +6 -0
- package/styles/split-button/_layout.scss +2 -2
- package/styles/split-button/_tailwind3-definition.scss +23 -0
- package/styles/split-button/_theme.scss +6 -1
- package/styles/split-button/bds.css +461 -0
- package/styles/split-button/bds.scss +7 -0
- package/styles/split-button/tailwind3.css +342 -0
- package/styles/split-button/tailwind3.scss +7 -0
- package/styles/tailwind-dark-lite.css +11 -0
- package/styles/tailwind-dark.css +11 -1
- package/styles/tailwind-lite.css +11 -0
- package/styles/tailwind.css +11 -1
- package/styles/tailwind3-lite.css +1891 -0
- package/styles/tailwind3-lite.scss +13 -0
- package/styles/tailwind3.css +2110 -0
- package/styles/tailwind3.scss +17 -0
package/styles/fabric-dark.css
CHANGED
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #282727;
|
|
149
160
|
color: #dadada;
|
|
@@ -215,7 +226,6 @@
|
|
|
215
226
|
line-height: 1;
|
|
216
227
|
padding: 10px 24px;
|
|
217
228
|
}
|
|
218
|
-
|
|
219
229
|
*.e-bigger .e-dropdown-popup ul,
|
|
220
230
|
*.e-bigger.e-dropdown-popup ul {
|
|
221
231
|
-webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
|
package/styles/fabric-lite.css
CHANGED
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #fff;
|
|
149
160
|
color: #333;
|
package/styles/fabric.css
CHANGED
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #fff;
|
|
149
160
|
color: #333;
|
|
@@ -215,7 +226,6 @@
|
|
|
215
226
|
line-height: 1;
|
|
216
227
|
padding: 10px 24px;
|
|
217
228
|
}
|
|
218
|
-
|
|
219
229
|
*.e-bigger .e-dropdown-popup ul,
|
|
220
230
|
*.e-bigger.e-dropdown-popup ul {
|
|
221
231
|
-webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
|
|
@@ -146,6 +146,17 @@
|
|
|
146
146
|
margin-right: 0;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
.e-dropdown-popup-width ul {
|
|
150
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-dropdown-popup-width ul li {
|
|
154
|
+
overflow: hidden;
|
|
155
|
+
white-space: nowrap;
|
|
156
|
+
text-overflow: ellipsis;
|
|
157
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
158
|
+
}
|
|
159
|
+
|
|
149
160
|
.e-dropdown-popup {
|
|
150
161
|
background: #252423;
|
|
151
162
|
color: #fff;
|
package/styles/fluent-dark.css
CHANGED
|
@@ -146,6 +146,17 @@
|
|
|
146
146
|
margin-right: 0;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
.e-dropdown-popup-width ul {
|
|
150
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-dropdown-popup-width ul li {
|
|
154
|
+
overflow: hidden;
|
|
155
|
+
white-space: nowrap;
|
|
156
|
+
text-overflow: ellipsis;
|
|
157
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
158
|
+
}
|
|
159
|
+
|
|
149
160
|
.e-dropdown-popup {
|
|
150
161
|
background: #252423;
|
|
151
162
|
color: #fff;
|
|
@@ -216,7 +227,6 @@
|
|
|
216
227
|
line-height: 1;
|
|
217
228
|
padding: 8px 16px;
|
|
218
229
|
}
|
|
219
|
-
|
|
220
230
|
*.e-bigger .e-dropdown-popup ul,
|
|
221
231
|
*.e-bigger.e-dropdown-popup ul {
|
|
222
232
|
-webkit-box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
package/styles/fluent-lite.css
CHANGED
|
@@ -146,6 +146,17 @@
|
|
|
146
146
|
margin-right: 0;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
.e-dropdown-popup-width ul {
|
|
150
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-dropdown-popup-width ul li {
|
|
154
|
+
overflow: hidden;
|
|
155
|
+
white-space: nowrap;
|
|
156
|
+
text-overflow: ellipsis;
|
|
157
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
158
|
+
}
|
|
159
|
+
|
|
149
160
|
.e-dropdown-popup {
|
|
150
161
|
background: #fff;
|
|
151
162
|
color: #323130;
|
package/styles/fluent.css
CHANGED
|
@@ -146,6 +146,17 @@
|
|
|
146
146
|
margin-right: 0;
|
|
147
147
|
}
|
|
148
148
|
|
|
149
|
+
.e-dropdown-popup-width ul {
|
|
150
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-dropdown-popup-width ul li {
|
|
154
|
+
overflow: hidden;
|
|
155
|
+
white-space: nowrap;
|
|
156
|
+
text-overflow: ellipsis;
|
|
157
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
158
|
+
}
|
|
159
|
+
|
|
149
160
|
.e-dropdown-popup {
|
|
150
161
|
background: #fff;
|
|
151
162
|
color: #323130;
|
|
@@ -216,7 +227,6 @@
|
|
|
216
227
|
line-height: 1;
|
|
217
228
|
padding: 8px 16px;
|
|
218
229
|
}
|
|
219
|
-
|
|
220
230
|
*.e-bigger .e-dropdown-popup ul,
|
|
221
231
|
*.e-bigger.e-dropdown-popup ul {
|
|
222
232
|
-webkit-box-shadow: 0 3.2px 7.2px 0 rgba(0, 0, 0, 0.132), 0 0.6px 1.8px 0 rgba(0, 0, 0, 0.108);
|
package/styles/fluent2-lite.css
CHANGED
|
@@ -169,6 +169,17 @@
|
|
|
169
169
|
margin-right: 0;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
+
.e-dropdown-popup-width ul {
|
|
173
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.e-dropdown-popup-width ul li {
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
white-space: nowrap;
|
|
179
|
+
text-overflow: ellipsis;
|
|
180
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
181
|
+
}
|
|
182
|
+
|
|
172
183
|
.e-dropdown-popup {
|
|
173
184
|
background: var(--color-sf-flyout-bg-color);
|
|
174
185
|
color: var(--color-sf-secondary-text-color);
|
package/styles/fluent2.css
CHANGED
|
@@ -169,6 +169,17 @@
|
|
|
169
169
|
margin-right: 0;
|
|
170
170
|
}
|
|
171
171
|
|
|
172
|
+
.e-dropdown-popup-width ul {
|
|
173
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
174
|
+
}
|
|
175
|
+
|
|
176
|
+
.e-dropdown-popup-width ul li {
|
|
177
|
+
overflow: hidden;
|
|
178
|
+
white-space: nowrap;
|
|
179
|
+
text-overflow: ellipsis;
|
|
180
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
181
|
+
}
|
|
182
|
+
|
|
172
183
|
.e-dropdown-popup {
|
|
173
184
|
background: var(--color-sf-flyout-bg-color);
|
|
174
185
|
color: var(--color-sf-secondary-text-color);
|
|
@@ -252,7 +263,6 @@
|
|
|
252
263
|
line-height: 1;
|
|
253
264
|
padding: 8px 16px;
|
|
254
265
|
}
|
|
255
|
-
|
|
256
266
|
*.e-bigger .e-dropdown-popup ul,
|
|
257
267
|
*.e-bigger.e-dropdown-popup ul {
|
|
258
268
|
-webkit-box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.14), 0 0 2px 0 rgba(0, 0, 0, 0.12);
|
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #fff;
|
|
149
160
|
color: #000;
|
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #fff;
|
|
149
160
|
color: #000;
|
|
@@ -215,7 +226,6 @@
|
|
|
215
226
|
line-height: 1;
|
|
216
227
|
padding: 10px 24px;
|
|
217
228
|
}
|
|
218
|
-
|
|
219
229
|
*.e-bigger .e-dropdown-popup ul,
|
|
220
230
|
*.e-bigger.e-dropdown-popup ul {
|
|
221
231
|
-webkit-box-shadow: 0 6px 12px rgba(255, 255, 255, 0.175);
|
|
@@ -145,6 +145,17 @@
|
|
|
145
145
|
margin-right: 0;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
.e-dropdown-popup-width ul {
|
|
149
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.e-dropdown-popup-width ul li {
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
white-space: nowrap;
|
|
155
|
+
text-overflow: ellipsis;
|
|
156
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
157
|
+
}
|
|
158
|
+
|
|
148
159
|
.e-dropdown-popup {
|
|
149
160
|
background: #000;
|
|
150
161
|
color: #fff;
|
package/styles/highcontrast.css
CHANGED
|
@@ -145,6 +145,17 @@
|
|
|
145
145
|
margin-right: 0;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
.e-dropdown-popup-width ul {
|
|
149
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.e-dropdown-popup-width ul li {
|
|
153
|
+
overflow: hidden;
|
|
154
|
+
white-space: nowrap;
|
|
155
|
+
text-overflow: ellipsis;
|
|
156
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
157
|
+
}
|
|
158
|
+
|
|
148
159
|
.e-dropdown-popup {
|
|
149
160
|
background: #000;
|
|
150
161
|
color: #fff;
|
|
@@ -216,7 +227,6 @@
|
|
|
216
227
|
line-height: 1;
|
|
217
228
|
padding: 10px 24px;
|
|
218
229
|
}
|
|
219
|
-
|
|
220
230
|
*.e-bigger .e-dropdown-popup ul,
|
|
221
231
|
*.e-bigger.e-dropdown-popup ul {
|
|
222
232
|
-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
|
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #424242;
|
|
149
160
|
color: #fff;
|
package/styles/material-dark.css
CHANGED
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #424242;
|
|
149
160
|
color: #fff;
|
|
@@ -215,7 +226,6 @@
|
|
|
215
226
|
line-height: 1;
|
|
216
227
|
padding: 16px 16px;
|
|
217
228
|
}
|
|
218
|
-
|
|
219
229
|
*.e-bigger .e-dropdown-popup ul,
|
|
220
230
|
*.e-bigger.e-dropdown-popup ul {
|
|
221
231
|
-webkit-box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.26);
|
package/styles/material-lite.css
CHANGED
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #fff;
|
|
149
160
|
color: rgba(0, 0, 0, 0.87);
|
package/styles/material.css
CHANGED
|
@@ -144,6 +144,17 @@
|
|
|
144
144
|
margin-right: 0;
|
|
145
145
|
}
|
|
146
146
|
|
|
147
|
+
.e-dropdown-popup-width ul {
|
|
148
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-dropdown-popup-width ul li {
|
|
152
|
+
overflow: hidden;
|
|
153
|
+
white-space: nowrap;
|
|
154
|
+
text-overflow: ellipsis;
|
|
155
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
147
158
|
.e-dropdown-popup {
|
|
148
159
|
background: #fff;
|
|
149
160
|
color: rgba(0, 0, 0, 0.87);
|
|
@@ -215,7 +226,6 @@
|
|
|
215
226
|
line-height: 1;
|
|
216
227
|
padding: 16px 16px;
|
|
217
228
|
}
|
|
218
|
-
|
|
219
229
|
*.e-bigger .e-dropdown-popup ul,
|
|
220
230
|
*.e-bigger.e-dropdown-popup ul {
|
|
221
231
|
-webkit-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);
|
|
@@ -154,6 +154,17 @@
|
|
|
154
154
|
margin-right: 0;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
.e-dropdown-popup-width ul {
|
|
158
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.e-dropdown-popup-width ul li {
|
|
162
|
+
overflow: hidden;
|
|
163
|
+
white-space: nowrap;
|
|
164
|
+
text-overflow: ellipsis;
|
|
165
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
166
|
+
}
|
|
167
|
+
|
|
157
168
|
.e-dropdown-popup {
|
|
158
169
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
159
170
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
@@ -154,6 +154,17 @@
|
|
|
154
154
|
margin-right: 0;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
.e-dropdown-popup-width ul {
|
|
158
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.e-dropdown-popup-width ul li {
|
|
162
|
+
overflow: hidden;
|
|
163
|
+
white-space: nowrap;
|
|
164
|
+
text-overflow: ellipsis;
|
|
165
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
166
|
+
}
|
|
167
|
+
|
|
157
168
|
.e-dropdown-popup {
|
|
158
169
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-primary), 0.11)), to(rgba(var(--color-sf-primary), 0.11))), rgba(var(--color-sf-surface));
|
|
159
170
|
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.11), rgba(var(--color-sf-primary), 0.11)), rgba(var(--color-sf-surface));
|
|
@@ -226,7 +237,6 @@
|
|
|
226
237
|
line-height: 1;
|
|
227
238
|
padding: 8px 16px;
|
|
228
239
|
}
|
|
229
|
-
|
|
230
240
|
*.e-bigger .e-dropdown-popup ul,
|
|
231
241
|
*.e-bigger.e-dropdown-popup ul {
|
|
232
242
|
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
@@ -156,6 +156,17 @@
|
|
|
156
156
|
margin-right: 0;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
+
.e-dropdown-popup-width ul {
|
|
160
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-dropdown-popup-width ul li {
|
|
164
|
+
overflow: hidden;
|
|
165
|
+
white-space: nowrap;
|
|
166
|
+
text-overflow: ellipsis;
|
|
167
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
168
|
+
}
|
|
169
|
+
|
|
159
170
|
.e-dropdown-popup {
|
|
160
171
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
|
|
161
172
|
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
package/styles/material3.css
CHANGED
|
@@ -156,6 +156,17 @@
|
|
|
156
156
|
margin-right: 0;
|
|
157
157
|
}
|
|
158
158
|
|
|
159
|
+
.e-dropdown-popup-width ul {
|
|
160
|
+
min-width: 0 !important; /* stylelint-disable-line declaration-no-important */
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-dropdown-popup-width ul li {
|
|
164
|
+
overflow: hidden;
|
|
165
|
+
white-space: nowrap;
|
|
166
|
+
text-overflow: ellipsis;
|
|
167
|
+
display: block !important; /* stylelint-disable-line declaration-no-important */
|
|
168
|
+
}
|
|
169
|
+
|
|
159
170
|
.e-dropdown-popup {
|
|
160
171
|
background: -webkit-gradient(linear, left bottom, left top, from(rgba(var(--color-sf-surface), 1)), to(rgba(var(--color-sf-surface), 1))), rgba(var(--color-sf-surface));
|
|
161
172
|
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
@@ -228,7 +239,6 @@
|
|
|
228
239
|
line-height: 1;
|
|
229
240
|
padding: 8px 16px;
|
|
230
241
|
}
|
|
231
|
-
|
|
232
242
|
*.e-bigger .e-dropdown-popup ul,
|
|
233
243
|
*.e-bigger.e-dropdown-popup ul {
|
|
234
244
|
-webkit-box-shadow: 0 2px 6px 2px rgba(0, 0, 0, 0.15), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
$progress-btn-circle-opacity: .3 !default;
|
|
2
|
+
$progress-btn-transition: all .3s linear !default;
|
|
3
|
+
$progress-btn-spinner-padding: 12px !default;
|
|
4
|
+
$progress-btn-spinner-padding-small: 10px !default;
|
|
5
|
+
$progress-btn-spinner-padding-bigger: 14px !default;
|
|
6
|
+
$progress-btn-spinner-padding-bigger-small: 12px !default;
|
|
7
|
+
$progress-btn-spin-btn-padding: 16px !default;
|
|
8
|
+
$progress-btn-small-spin-btn-padding: 14px !default;
|
|
9
|
+
$progress-btn-bigger-spin-btn-padding: 20px !default;
|
|
10
|
+
$progress-btn-bigger-small-spin-btn-padding: 16px !default;
|
|
11
|
+
$progress-btn-color: $secondary-text-color !default;
|
|
12
|
+
$progress-btn-bgcolor: rgba($icon-color, .2) !default;
|
|
13
|
+
$progress-btn-bgcolor-normal: rgba($white, .2) !default;
|
|
14
|
+
$progress-btn-warning-progress-color: $progress-btn-bgcolor !default;
|
|
15
|
+
$progress-btn-flat-primary-progress-color: rgba($primary-text-color, 1) !default;
|
|
16
|
+
$progress-btn-flat-success-progress-color: rgba($success-text, 1) !default;
|
|
17
|
+
$progress-btn-flat-info-progress-color: rgba($info-text, 1) !default;
|
|
18
|
+
$progress-btn-flat-warning-progress-color: rgba($warning-text, 1) !default;
|
|
19
|
+
$progress-btn-flat-danger-progress-color: rgba($danger-text, 1) !default;
|
|
20
|
+
$btn-flat-primary-path-arc: $white;
|
|
@@ -719,3 +719,73 @@
|
|
|
719
719
|
stroke: $progress-btn-spinner-color !important; /* stylelint-disable-line declaration-no-important */
|
|
720
720
|
}
|
|
721
721
|
}
|
|
722
|
+
|
|
723
|
+
@if $skin-name == 'tailwind3' {
|
|
724
|
+
.e-progress,
|
|
725
|
+
.e-primary .e-progress,
|
|
726
|
+
.e-success .e-progress,
|
|
727
|
+
.e-warning .e-progress,
|
|
728
|
+
.e-info .e-progress,
|
|
729
|
+
.e-danger .e-progress,
|
|
730
|
+
.e-primary.e-outline .e-progress,
|
|
731
|
+
.e-primary.e-flat .e-progress,
|
|
732
|
+
.e-success.e-outline .e-progress,
|
|
733
|
+
.e-success.e-flat .e-progress,
|
|
734
|
+
.e-danger.e-outline .e-progress,
|
|
735
|
+
.e-danger.e-flat .e-progress,
|
|
736
|
+
.e-warning.e-outline .e-progress,
|
|
737
|
+
.e-warning.e-flat .e-progress,
|
|
738
|
+
.e-info.e-outline .e-progress,
|
|
739
|
+
.e-info.e-flat .e-progress {
|
|
740
|
+
opacity: .2 !important; /* stylelint-disable-line declaration-no-important */
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
.e-progress {
|
|
744
|
+
background: $secondary-text-color-focus;
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
.e-primary .e-progress {
|
|
748
|
+
background: $primary-text;
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.e-success .e-progress {
|
|
752
|
+
background: $success-text;
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
.e-warning .e-progress {
|
|
756
|
+
background: $warning-text;
|
|
757
|
+
}
|
|
758
|
+
|
|
759
|
+
.e-info .e-progress {
|
|
760
|
+
background: $info-text;
|
|
761
|
+
}
|
|
762
|
+
|
|
763
|
+
.e-danger .e-progress {
|
|
764
|
+
background: $danger-text;
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
.e-primary.e-outline .e-progress,
|
|
768
|
+
.e-primary.e-flat .e-progress {
|
|
769
|
+
background: $primary-bg-color;
|
|
770
|
+
}
|
|
771
|
+
|
|
772
|
+
.e-success.e-outline .e-progress,
|
|
773
|
+
.e-success.e-flat .e-progress {
|
|
774
|
+
background: $success-bg-color;
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
.e-danger.e-outline .e-progress,
|
|
778
|
+
.e-danger.e-flat .e-progress {
|
|
779
|
+
background: $danger-bg-color;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.e-warning.e-outline .e-progress,
|
|
783
|
+
.e-warning.e-flat .e-progress {
|
|
784
|
+
background: $warning-bg-color;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.e-info.e-outline .e-progress,
|
|
788
|
+
.e-info.e-flat .e-progress {
|
|
789
|
+
background: $info-bg-color;
|
|
790
|
+
}
|
|
791
|
+
}
|