@syncfusion/ej2-vue-splitbuttons 20.2.43 → 20.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/dist/ej2-vue-splitbuttons.umd.min.js +1 -1
- package/dist/es6/ej2-vue-splitbuttons.es2015.js +24 -29
- package/dist/es6/ej2-vue-splitbuttons.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-splitbuttons.es5.js +24 -29
- package/dist/es6/ej2-vue-splitbuttons.es5.js.map +1 -1
- package/dist/global/ej2-vue-splitbuttons.min.js +2 -2
- package/package.json +11 -8
- package/src/drop-down-button/dropdownbutton.component.d.ts +0 -1
- package/src/drop-down-button/dropdownbutton.component.js +3 -4
- package/src/drop-down-button/items.directive.d.ts +0 -1
- package/src/drop-down-button/items.directive.js +5 -6
- package/src/progress-button/progressbutton.component.d.ts +0 -1
- package/src/progress-button/progressbutton.component.js +3 -4
- package/src/split-button/items.directive.d.ts +0 -1
- package/src/split-button/items.directive.js +5 -6
- package/src/split-button/splitbutton.component.d.ts +0 -1
- package/src/split-button/splitbutton.component.js +3 -4
- package/styles/bootstrap-dark.css +26 -5
- package/styles/bootstrap.css +21 -0
- package/styles/bootstrap4.css +22 -1
- package/styles/bootstrap5-dark.css +23 -0
- package/styles/bootstrap5.css +23 -0
- package/styles/button-group/bootstrap-dark.css +2 -0
- package/styles/button-group/bootstrap.css +2 -0
- package/styles/button-group/bootstrap4.css +2 -0
- package/styles/button-group/bootstrap5-dark.css +2 -0
- package/styles/button-group/bootstrap5.css +2 -0
- package/styles/button-group/fabric-dark.css +2 -0
- package/styles/button-group/fabric.css +2 -0
- package/styles/button-group/fluent-dark.css +2 -0
- package/styles/button-group/fluent.css +2 -0
- package/styles/button-group/highcontrast-light.css +2 -0
- package/styles/button-group/highcontrast.css +2 -0
- package/styles/button-group/material-dark.css +2 -0
- package/styles/button-group/material.css +2 -0
- package/styles/button-group/tailwind-dark.css +2 -0
- package/styles/button-group/tailwind.css +2 -0
- package/styles/drop-down-button/bootstrap-dark.css +18 -0
- package/styles/drop-down-button/bootstrap.css +18 -0
- package/styles/drop-down-button/bootstrap4.css +18 -0
- package/styles/drop-down-button/bootstrap5-dark.css +19 -0
- package/styles/drop-down-button/bootstrap5.css +19 -0
- package/styles/drop-down-button/fabric-dark.css +18 -0
- package/styles/drop-down-button/fabric.css +18 -0
- package/styles/drop-down-button/fluent-dark.css +19 -0
- package/styles/drop-down-button/fluent.css +19 -0
- package/styles/drop-down-button/highcontrast-light.css +18 -0
- package/styles/drop-down-button/highcontrast.css +18 -0
- package/styles/drop-down-button/material-dark.css +18 -0
- package/styles/drop-down-button/material.css +18 -0
- package/styles/drop-down-button/tailwind-dark.css +19 -0
- package/styles/drop-down-button/tailwind.css +19 -0
- package/styles/fabric-dark.css +21 -0
- package/styles/fabric.css +21 -0
- package/styles/fluent-dark.css +23 -0
- package/styles/fluent.css +23 -0
- package/styles/highcontrast-light.css +21 -0
- package/styles/highcontrast.css +23 -2
- package/styles/material-dark.css +21 -0
- package/styles/material.css +21 -0
- package/styles/progress-button/bootstrap-dark.css +6 -5
- package/styles/progress-button/bootstrap.css +1 -0
- package/styles/progress-button/bootstrap4.css +2 -1
- package/styles/progress-button/bootstrap5-dark.css +1 -0
- package/styles/progress-button/bootstrap5.css +1 -0
- package/styles/progress-button/fabric-dark.css +1 -0
- package/styles/progress-button/fabric.css +1 -0
- package/styles/progress-button/fluent-dark.css +1 -0
- package/styles/progress-button/fluent.css +1 -0
- package/styles/progress-button/highcontrast-light.css +1 -0
- package/styles/progress-button/highcontrast.css +3 -2
- package/styles/progress-button/material-dark.css +1 -0
- package/styles/progress-button/material.css +1 -0
- package/styles/progress-button/tailwind-dark.css +1 -0
- package/styles/progress-button/tailwind.css +1 -0
- package/styles/split-button/bootstrap5-dark.css +1 -0
- package/styles/split-button/bootstrap5.css +1 -0
- package/styles/split-button/fluent-dark.css +1 -0
- package/styles/split-button/fluent.css +1 -0
- package/styles/split-button/tailwind-dark.css +1 -0
- package/styles/split-button/tailwind.css +1 -0
- package/styles/tailwind-dark.css +23 -0
- package/styles/tailwind.css +23 -0
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable */
|
|
1
2
|
*.e-btn-group,
|
|
2
3
|
*.e-css.e-btn-group {
|
|
3
4
|
display: -ms-inline-flexbox;
|
|
@@ -234,6 +235,7 @@
|
|
|
234
235
|
font-size: 16px;
|
|
235
236
|
}
|
|
236
237
|
|
|
238
|
+
/* stylelint-disable */
|
|
237
239
|
.e-btn-group:not(.e-outline),
|
|
238
240
|
.e-css.e-btn-group:not(.e-outline) {
|
|
239
241
|
box-shadow: none;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
|
+
/* stylelint-disable */
|
|
2
3
|
*.e-btn-group,
|
|
3
4
|
*.e-css.e-btn-group {
|
|
4
5
|
display: -ms-inline-flexbox;
|
|
@@ -235,6 +236,7 @@
|
|
|
235
236
|
font-size: 16px;
|
|
236
237
|
}
|
|
237
238
|
|
|
239
|
+
/* stylelint-disable */
|
|
238
240
|
.e-btn-group:not(.e-outline),
|
|
239
241
|
.e-css.e-btn-group:not(.e-outline) {
|
|
240
242
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
|
|
2
|
+
/* stylelint-disable */
|
|
2
3
|
*.e-btn-group,
|
|
3
4
|
*.e-css.e-btn-group {
|
|
4
5
|
display: -ms-inline-flexbox;
|
|
@@ -235,6 +236,7 @@
|
|
|
235
236
|
font-size: 16px;
|
|
236
237
|
}
|
|
237
238
|
|
|
239
|
+
/* stylelint-disable */
|
|
238
240
|
.e-btn-group:not(.e-outline),
|
|
239
241
|
.e-css.e-btn-group:not(.e-outline) {
|
|
240
242
|
box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable */
|
|
2
3
|
*.e-btn-group,
|
|
3
4
|
*.e-css.e-btn-group {
|
|
4
5
|
display: -ms-inline-flexbox;
|
|
@@ -243,6 +244,7 @@
|
|
|
243
244
|
font-size: 22px;
|
|
244
245
|
}
|
|
245
246
|
|
|
247
|
+
/* stylelint-disable */
|
|
246
248
|
.e-btn-group:not(.e-outline),
|
|
247
249
|
.e-css.e-btn-group:not(.e-outline) {
|
|
248
250
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable */
|
|
2
3
|
*.e-btn-group,
|
|
3
4
|
*.e-css.e-btn-group {
|
|
4
5
|
display: -ms-inline-flexbox;
|
|
@@ -243,6 +244,7 @@
|
|
|
243
244
|
font-size: 22px;
|
|
244
245
|
}
|
|
245
246
|
|
|
247
|
+
/* stylelint-disable */
|
|
246
248
|
.e-btn-group:not(.e-outline),
|
|
247
249
|
.e-css.e-btn-group:not(.e-outline) {
|
|
248
250
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
|
|
@@ -210,4 +210,22 @@
|
|
|
210
210
|
}
|
|
211
211
|
.e-dropdown-popup ul .e-separator {
|
|
212
212
|
border-bottom-color: #414141;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
213
231
|
}
|
|
@@ -210,4 +210,22 @@
|
|
|
210
210
|
}
|
|
211
211
|
.e-dropdown-popup ul .e-separator {
|
|
212
212
|
border-bottom-color: #e6e6e6;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
213
231
|
}
|
|
@@ -205,4 +205,22 @@
|
|
|
205
205
|
}
|
|
206
206
|
.e-dropdown-popup ul .e-separator {
|
|
207
207
|
border-bottom-color: #6c757d;
|
|
208
|
+
}
|
|
209
|
+
|
|
210
|
+
.e-dropdown-btn.e-inherit,
|
|
211
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
212
|
+
background: inherit;
|
|
213
|
+
border-color: transparent;
|
|
214
|
+
box-shadow: none;
|
|
215
|
+
color: inherit;
|
|
216
|
+
}
|
|
217
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
218
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
219
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
220
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
221
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
222
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
223
|
+
border-color: transparent;
|
|
224
|
+
box-shadow: none;
|
|
225
|
+
color: inherit;
|
|
208
226
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e70d";
|
|
@@ -214,4 +215,22 @@
|
|
|
214
215
|
}
|
|
215
216
|
.e-dropdown-popup ul .e-separator {
|
|
216
217
|
border-bottom-color: #444c54;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.e-dropdown-btn.e-inherit,
|
|
221
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
222
|
+
background: inherit;
|
|
223
|
+
border-color: transparent;
|
|
224
|
+
box-shadow: none;
|
|
225
|
+
color: inherit;
|
|
226
|
+
}
|
|
227
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
228
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
229
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
230
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
231
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
232
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
233
|
+
border-color: transparent;
|
|
234
|
+
box-shadow: none;
|
|
235
|
+
color: inherit;
|
|
217
236
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e70d";
|
|
@@ -214,4 +215,22 @@
|
|
|
214
215
|
}
|
|
215
216
|
.e-dropdown-popup ul .e-separator {
|
|
216
217
|
border-bottom-color: #dee2e6;
|
|
218
|
+
}
|
|
219
|
+
|
|
220
|
+
.e-dropdown-btn.e-inherit,
|
|
221
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
222
|
+
background: inherit;
|
|
223
|
+
border-color: transparent;
|
|
224
|
+
box-shadow: none;
|
|
225
|
+
color: inherit;
|
|
226
|
+
}
|
|
227
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
228
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
229
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
230
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
231
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
232
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
233
|
+
border-color: transparent;
|
|
234
|
+
box-shadow: none;
|
|
235
|
+
color: inherit;
|
|
217
236
|
}
|
|
@@ -210,4 +210,22 @@
|
|
|
210
210
|
}
|
|
211
211
|
.e-dropdown-popup ul .e-separator {
|
|
212
212
|
border-bottom-color: #414040;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
213
231
|
}
|
|
@@ -210,4 +210,22 @@
|
|
|
210
210
|
}
|
|
211
211
|
.e-dropdown-popup ul .e-separator {
|
|
212
212
|
border-bottom-color: #eaeaea;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
213
231
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e729";
|
|
@@ -210,4 +211,22 @@
|
|
|
210
211
|
}
|
|
211
212
|
.e-dropdown-popup ul .e-separator {
|
|
212
213
|
border-bottom-color: #292827;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-dropdown-btn.e-inherit,
|
|
217
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
218
|
+
background: inherit;
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
228
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
213
232
|
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e729";
|
|
@@ -210,4 +211,22 @@
|
|
|
210
211
|
}
|
|
211
212
|
.e-dropdown-popup ul .e-separator {
|
|
212
213
|
border-bottom-color: #edebe9;
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-dropdown-btn.e-inherit,
|
|
217
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
218
|
+
background: inherit;
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
228
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
213
232
|
}
|
|
@@ -210,4 +210,22 @@
|
|
|
210
210
|
}
|
|
211
211
|
.e-dropdown-popup ul .e-separator {
|
|
212
212
|
border-bottom-color: #000;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
213
231
|
}
|
|
@@ -210,4 +210,22 @@
|
|
|
210
210
|
}
|
|
211
211
|
.e-dropdown-popup ul .e-separator {
|
|
212
212
|
border-bottom-color: #fff;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
213
231
|
}
|
|
@@ -211,4 +211,22 @@
|
|
|
211
211
|
}
|
|
212
212
|
.e-dropdown-popup ul .e-separator {
|
|
213
213
|
border-bottom-color: rgba(255, 255, 255, 0.12);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-dropdown-btn.e-inherit,
|
|
217
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
218
|
+
background: inherit;
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
228
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
214
232
|
}
|
|
@@ -211,4 +211,22 @@
|
|
|
211
211
|
}
|
|
212
212
|
.e-dropdown-popup ul .e-separator {
|
|
213
213
|
border-bottom-color: rgba(0, 0, 0, 0.12);
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
.e-dropdown-btn.e-inherit,
|
|
217
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
218
|
+
background: inherit;
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
228
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
214
232
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
2
3
|
.e-dropdown-btn .e-caret::before,
|
|
3
4
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
4
5
|
content: "\e70d";
|
|
@@ -220,4 +221,22 @@
|
|
|
220
221
|
}
|
|
221
222
|
.e-dropdown-popup ul .e-separator {
|
|
222
223
|
border-bottom-color: #4b5563;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.e-dropdown-btn.e-inherit,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
228
|
+
background: inherit;
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
232
|
+
}
|
|
233
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
234
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
235
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
236
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
237
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
238
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
239
|
+
border-color: transparent;
|
|
240
|
+
box-shadow: none;
|
|
241
|
+
color: inherit;
|
|
223
242
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
2
3
|
.e-dropdown-btn .e-caret::before,
|
|
3
4
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
4
5
|
content: "\e729";
|
|
@@ -220,4 +221,22 @@
|
|
|
220
221
|
}
|
|
221
222
|
.e-dropdown-popup ul .e-separator {
|
|
222
223
|
border-bottom-color: #e5e7eb;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.e-dropdown-btn.e-inherit,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
228
|
+
background: inherit;
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
232
|
+
}
|
|
233
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
234
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
235
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
236
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
237
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
238
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
239
|
+
border-color: transparent;
|
|
240
|
+
box-shadow: none;
|
|
241
|
+
color: inherit;
|
|
223
242
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -212,6 +212,24 @@
|
|
|
212
212
|
border-bottom-color: #414040;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
231
|
+
}
|
|
232
|
+
|
|
215
233
|
/*! splitbutton layout */
|
|
216
234
|
.e-split-btn-wrapper {
|
|
217
235
|
display: -ms-inline-flexbox;
|
|
@@ -522,6 +540,7 @@
|
|
|
522
540
|
border-left-color: transparent;
|
|
523
541
|
}
|
|
524
542
|
|
|
543
|
+
/* stylelint-disable */
|
|
525
544
|
*.e-btn-group,
|
|
526
545
|
*.e-css.e-btn-group {
|
|
527
546
|
display: -ms-inline-flexbox;
|
|
@@ -758,6 +777,7 @@
|
|
|
758
777
|
font-size: 16px;
|
|
759
778
|
}
|
|
760
779
|
|
|
780
|
+
/* stylelint-disable */
|
|
761
781
|
.e-btn-group:not(.e-outline),
|
|
762
782
|
.e-css.e-btn-group:not(.e-outline) {
|
|
763
783
|
box-shadow: none;
|
|
@@ -1273,6 +1293,7 @@
|
|
|
1273
1293
|
border-right: transparent;
|
|
1274
1294
|
}
|
|
1275
1295
|
|
|
1296
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1276
1297
|
@keyframes material-spinner-rotate {
|
|
1277
1298
|
0% {
|
|
1278
1299
|
transform: rotate(0);
|
package/styles/fabric.css
CHANGED
|
@@ -212,6 +212,24 @@
|
|
|
212
212
|
border-bottom-color: #eaeaea;
|
|
213
213
|
}
|
|
214
214
|
|
|
215
|
+
.e-dropdown-btn.e-inherit,
|
|
216
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
217
|
+
background: inherit;
|
|
218
|
+
border-color: transparent;
|
|
219
|
+
box-shadow: none;
|
|
220
|
+
color: inherit;
|
|
221
|
+
}
|
|
222
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
223
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
227
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
228
|
+
border-color: transparent;
|
|
229
|
+
box-shadow: none;
|
|
230
|
+
color: inherit;
|
|
231
|
+
}
|
|
232
|
+
|
|
215
233
|
/*! splitbutton layout */
|
|
216
234
|
.e-split-btn-wrapper {
|
|
217
235
|
display: -ms-inline-flexbox;
|
|
@@ -519,6 +537,7 @@
|
|
|
519
537
|
border-left-color: transparent;
|
|
520
538
|
}
|
|
521
539
|
|
|
540
|
+
/* stylelint-disable */
|
|
522
541
|
*.e-btn-group,
|
|
523
542
|
*.e-css.e-btn-group {
|
|
524
543
|
display: -ms-inline-flexbox;
|
|
@@ -755,6 +774,7 @@
|
|
|
755
774
|
font-size: 16px;
|
|
756
775
|
}
|
|
757
776
|
|
|
777
|
+
/* stylelint-disable */
|
|
758
778
|
.e-btn-group:not(.e-outline),
|
|
759
779
|
.e-css.e-btn-group:not(.e-outline) {
|
|
760
780
|
box-shadow: none;
|
|
@@ -1276,6 +1296,7 @@
|
|
|
1276
1296
|
border-right: transparent;
|
|
1277
1297
|
}
|
|
1278
1298
|
|
|
1299
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1279
1300
|
@keyframes material-spinner-rotate {
|
|
1280
1301
|
0% {
|
|
1281
1302
|
transform: rotate(0);
|
package/styles/fluent-dark.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e729";
|
|
@@ -212,6 +213,25 @@
|
|
|
212
213
|
border-bottom-color: #292827;
|
|
213
214
|
}
|
|
214
215
|
|
|
216
|
+
.e-dropdown-btn.e-inherit,
|
|
217
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
218
|
+
background: inherit;
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
228
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/* stylelint-disable-line no-empty-source */
|
|
215
235
|
/*! splitbutton layout */
|
|
216
236
|
.e-split-btn-wrapper {
|
|
217
237
|
display: -ms-inline-flexbox;
|
|
@@ -510,6 +530,7 @@
|
|
|
510
530
|
border-left-color: #8a8886;
|
|
511
531
|
}
|
|
512
532
|
|
|
533
|
+
/* stylelint-disable */
|
|
513
534
|
*.e-btn-group,
|
|
514
535
|
*.e-css.e-btn-group {
|
|
515
536
|
display: -ms-inline-flexbox;
|
|
@@ -746,6 +767,7 @@
|
|
|
746
767
|
font-size: 20px;
|
|
747
768
|
}
|
|
748
769
|
|
|
770
|
+
/* stylelint-disable */
|
|
749
771
|
.e-btn-group:not(.e-outline),
|
|
750
772
|
.e-css.e-btn-group:not(.e-outline) {
|
|
751
773
|
box-shadow: none;
|
|
@@ -1264,6 +1286,7 @@
|
|
|
1264
1286
|
border-right: transparent;
|
|
1265
1287
|
}
|
|
1266
1288
|
|
|
1289
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1267
1290
|
@keyframes material-spinner-rotate {
|
|
1268
1291
|
0% {
|
|
1269
1292
|
transform: rotate(0);
|
package/styles/fluent.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
/* stylelint-disable-line no-empty-source */
|
|
1
2
|
.e-dropdown-btn .e-caret::before,
|
|
2
3
|
.e-dropdown-btn.e-btn .e-caret::before {
|
|
3
4
|
content: "\e729";
|
|
@@ -212,6 +213,25 @@
|
|
|
212
213
|
border-bottom-color: #edebe9;
|
|
213
214
|
}
|
|
214
215
|
|
|
216
|
+
.e-dropdown-btn.e-inherit,
|
|
217
|
+
.e-dropdown-btn.e-btn.e-inherit {
|
|
218
|
+
background: inherit;
|
|
219
|
+
border-color: transparent;
|
|
220
|
+
box-shadow: none;
|
|
221
|
+
color: inherit;
|
|
222
|
+
}
|
|
223
|
+
.e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
|
|
224
|
+
.e-dropdown-btn.e-btn.e-inherit:hover,
|
|
225
|
+
.e-dropdown-btn.e-btn.e-inherit:focus,
|
|
226
|
+
.e-dropdown-btn.e-btn.e-inherit:active,
|
|
227
|
+
.e-dropdown-btn.e-btn.e-inherit.e-active {
|
|
228
|
+
background-color: rgba(0, 0, 0, 0.056);
|
|
229
|
+
border-color: transparent;
|
|
230
|
+
box-shadow: none;
|
|
231
|
+
color: inherit;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
/* stylelint-disable-line no-empty-source */
|
|
215
235
|
/*! splitbutton layout */
|
|
216
236
|
.e-split-btn-wrapper {
|
|
217
237
|
display: -ms-inline-flexbox;
|
|
@@ -510,6 +530,7 @@
|
|
|
510
530
|
border-left-color: #8a8886;
|
|
511
531
|
}
|
|
512
532
|
|
|
533
|
+
/* stylelint-disable */
|
|
513
534
|
*.e-btn-group,
|
|
514
535
|
*.e-css.e-btn-group {
|
|
515
536
|
display: -ms-inline-flexbox;
|
|
@@ -746,6 +767,7 @@
|
|
|
746
767
|
font-size: 20px;
|
|
747
768
|
}
|
|
748
769
|
|
|
770
|
+
/* stylelint-disable */
|
|
749
771
|
.e-btn-group:not(.e-outline),
|
|
750
772
|
.e-css.e-btn-group:not(.e-outline) {
|
|
751
773
|
box-shadow: none;
|
|
@@ -1264,6 +1286,7 @@
|
|
|
1264
1286
|
border-right: transparent;
|
|
1265
1287
|
}
|
|
1266
1288
|
|
|
1289
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1267
1290
|
@keyframes material-spinner-rotate {
|
|
1268
1291
|
0% {
|
|
1269
1292
|
transform: rotate(0);
|