@syncfusion/ej2-dropdowns 20.2.48 → 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/CHANGELOG.md +14 -28
- package/dist/ej2-dropdowns.min.js +10 -0
- package/dist/ej2-dropdowns.umd.min.js +2 -2
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +1437 -47
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1463 -51
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +2 -2
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +12 -12
- package/src/auto-complete/auto-complete.js +6 -2
- package/src/combo-box/combo-box.js +1 -3
- package/src/drop-down-base/drop-down-base.d.ts +2 -0
- package/src/drop-down-base/drop-down-base.js +6 -1
- package/src/drop-down-list/drop-down-list.d.ts +1 -0
- package/src/drop-down-list/drop-down-list.js +33 -21
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box.js +16 -11
- package/src/mention/index.d.ts +5 -0
- package/src/mention/index.js +4 -0
- package/src/mention/mention-model.d.ts +285 -0
- package/src/mention/mention.d.ts +451 -0
- package/src/mention/mention.js +1369 -0
- package/src/multi-select/checkbox-selection.js +1 -4
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +35 -9
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bootstrap-dark-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap-definition.scss +1 -1
- package/styles/auto-complete/_bootstrap4-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5-definition.scss +1 -1
- package/styles/auto-complete/_fabric-dark-definition.scss +1 -1
- package/styles/auto-complete/_fabric-definition.scss +1 -1
- package/styles/auto-complete/_fluent-definition.scss +1 -1
- package/styles/auto-complete/_fusionnew-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-definition.scss +1 -1
- package/styles/auto-complete/_highcontrast-light-definition.scss +1 -1
- package/styles/auto-complete/_material-dark-definition.scss +1 -1
- package/styles/auto-complete/_material-definition.scss +1 -1
- package/styles/auto-complete/_material3-definition.scss +1 -1
- package/styles/auto-complete/_tailwind-definition.scss +1 -1
- package/styles/auto-complete/bootstrap-dark.css +3 -1
- package/styles/auto-complete/bootstrap.css +3 -1
- package/styles/auto-complete/bootstrap4.css +3 -1
- package/styles/auto-complete/bootstrap5-dark.css +3 -1
- package/styles/auto-complete/bootstrap5.css +3 -1
- package/styles/auto-complete/fabric-dark.css +3 -1
- package/styles/auto-complete/fabric.css +3 -1
- package/styles/auto-complete/fluent-dark.css +3 -1
- package/styles/auto-complete/fluent.css +3 -1
- package/styles/auto-complete/highcontrast-light.css +3 -1
- package/styles/auto-complete/highcontrast.css +3 -1
- package/styles/auto-complete/material-dark.css +3 -1
- package/styles/auto-complete/material.css +3 -1
- package/styles/auto-complete/tailwind-dark.css +3 -1
- package/styles/auto-complete/tailwind.css +3 -1
- package/styles/bootstrap-dark.css +94 -42
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +94 -42
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +95 -42
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +101 -44
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +101 -44
- package/styles/bootstrap5.scss +1 -0
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bootstrap-dark-definition.scss +1 -1
- package/styles/combo-box/_bootstrap-definition.scss +1 -1
- package/styles/combo-box/_bootstrap4-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5-definition.scss +1 -1
- package/styles/combo-box/_fabric-dark-definition.scss +1 -1
- package/styles/combo-box/_fabric-definition.scss +1 -1
- package/styles/combo-box/_fluent-definition.scss +1 -1
- package/styles/combo-box/_fusionnew-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-definition.scss +1 -1
- package/styles/combo-box/_highcontrast-light-definition.scss +1 -1
- package/styles/combo-box/_material-dark-definition.scss +1 -1
- package/styles/combo-box/_material-definition.scss +1 -1
- package/styles/combo-box/_material3-definition.scss +1 -1
- package/styles/combo-box/_tailwind-definition.scss +1 -1
- package/styles/combo-box/bootstrap-dark.css +3 -1
- package/styles/combo-box/bootstrap.css +3 -1
- package/styles/combo-box/bootstrap4.css +3 -1
- package/styles/combo-box/bootstrap5-dark.css +3 -1
- package/styles/combo-box/bootstrap5.css +3 -1
- package/styles/combo-box/fabric-dark.css +3 -1
- package/styles/combo-box/fabric.css +3 -1
- package/styles/combo-box/fluent-dark.css +3 -1
- package/styles/combo-box/fluent.css +3 -1
- package/styles/combo-box/highcontrast-light.css +3 -1
- package/styles/combo-box/highcontrast.css +3 -1
- package/styles/combo-box/material-dark.css +3 -1
- package/styles/combo-box/material.css +3 -1
- package/styles/combo-box/tailwind-dark.css +3 -1
- package/styles/combo-box/tailwind.css +3 -1
- package/styles/drop-down-base/_all.scss +1 -1
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +8 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +6 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +8 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +6 -1
- package/styles/drop-down-base/_fabric-definition.scss +6 -1
- package/styles/drop-down-base/_fluent-definition.scss +8 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +8 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +16 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +18 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +7 -1
- package/styles/drop-down-base/_material-definition.scss +6 -0
- package/styles/drop-down-base/_material3-definition.scss +8 -3
- package/styles/drop-down-base/_tailwind-definition.scss +8 -3
- package/styles/drop-down-base/_theme.scss +4 -4
- package/styles/drop-down-base/bootstrap-dark.css +42 -1
- package/styles/drop-down-base/bootstrap.css +42 -1
- package/styles/drop-down-base/bootstrap4.css +42 -1
- package/styles/drop-down-base/bootstrap5-dark.css +42 -1
- package/styles/drop-down-base/bootstrap5.css +42 -1
- package/styles/drop-down-base/fabric-dark.css +42 -1
- package/styles/drop-down-base/fabric.css +42 -1
- package/styles/drop-down-base/fluent-dark.css +42 -1
- package/styles/drop-down-base/fluent.css +42 -1
- package/styles/drop-down-base/highcontrast-light.css +42 -1
- package/styles/drop-down-base/highcontrast.css +42 -1
- package/styles/drop-down-base/material-dark.css +42 -1
- package/styles/drop-down-base/material.css +42 -1
- package/styles/drop-down-base/tailwind-dark.css +42 -1
- package/styles/drop-down-base/tailwind.css +42 -1
- package/styles/drop-down-list/_all.scss +2 -1
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap-definition.scss +2 -1
- package/styles/drop-down-list/_bootstrap4-definition.scss +3 -1
- package/styles/drop-down-list/_bootstrap5-definition.scss +3 -3
- package/styles/drop-down-list/_fabric-dark-definition.scss +2 -1
- package/styles/drop-down-list/_fabric-definition.scss +2 -0
- package/styles/drop-down-list/_fluent-definition.scss +2 -1
- package/styles/drop-down-list/_fusionnew-definition.scss +3 -3
- package/styles/drop-down-list/_highcontrast-definition.scss +21 -10
- package/styles/drop-down-list/_highcontrast-light-definition.scss +22 -11
- package/styles/drop-down-list/_layout.scss +8 -9
- package/styles/drop-down-list/_material-dark-definition.scss +2 -2
- package/styles/drop-down-list/_material-definition.scss +1 -0
- package/styles/drop-down-list/_material3-definition.scss +3 -3
- package/styles/drop-down-list/_tailwind-definition.scss +1 -0
- package/styles/drop-down-list/_theme.scss +3 -3
- package/styles/drop-down-list/bootstrap-dark.css +5 -0
- package/styles/drop-down-list/bootstrap.css +5 -0
- package/styles/drop-down-list/bootstrap4.css +5 -0
- package/styles/drop-down-list/bootstrap5-dark.css +6 -0
- package/styles/drop-down-list/bootstrap5.css +6 -0
- package/styles/drop-down-list/fabric-dark.css +5 -0
- package/styles/drop-down-list/fabric.css +5 -0
- package/styles/drop-down-list/fluent-dark.css +6 -0
- package/styles/drop-down-list/fluent.css +6 -0
- package/styles/drop-down-list/highcontrast-light.css +5 -0
- package/styles/drop-down-list/highcontrast.css +5 -0
- package/styles/drop-down-list/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-list/icons/_fabric.scss +0 -1
- package/styles/drop-down-list/icons/_material.scss +0 -1
- package/styles/drop-down-list/material-dark.css +5 -0
- package/styles/drop-down-list/material.css +5 -0
- package/styles/drop-down-list/tailwind-dark.css +6 -0
- package/styles/drop-down-list/tailwind.css +6 -0
- package/styles/drop-down-tree/_all.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap4-definition.scss +1 -1
- package/styles/drop-down-tree/_bootstrap5-definition.scss +2 -2
- package/styles/drop-down-tree/_fabric-dark-definition.scss +1 -1
- package/styles/drop-down-tree/_fabric-definition.scss +2 -2
- package/styles/drop-down-tree/_fluent-definition.scss +2 -2
- package/styles/drop-down-tree/_fusionnew-definition.scss +2 -2
- package/styles/drop-down-tree/_highcontrast-definition.scss +1 -1
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +1 -1
- package/styles/drop-down-tree/_layout.scss +1 -2
- package/styles/drop-down-tree/_material-dark-definition.scss +2 -2
- package/styles/drop-down-tree/_material-definition.scss +2 -2
- package/styles/drop-down-tree/_material3-definition.scss +2 -2
- package/styles/drop-down-tree/_tailwind-definition.scss +2 -2
- package/styles/drop-down-tree/bootstrap-dark.css +4 -0
- package/styles/drop-down-tree/bootstrap.css +4 -0
- package/styles/drop-down-tree/bootstrap4.css +4 -0
- package/styles/drop-down-tree/bootstrap5-dark.css +5 -0
- package/styles/drop-down-tree/bootstrap5.css +5 -0
- package/styles/drop-down-tree/fabric-dark.css +4 -0
- package/styles/drop-down-tree/fabric.css +4 -0
- package/styles/drop-down-tree/fluent-dark.css +5 -0
- package/styles/drop-down-tree/fluent.css +5 -0
- package/styles/drop-down-tree/highcontrast-light.css +4 -0
- package/styles/drop-down-tree/highcontrast.css +4 -0
- package/styles/drop-down-tree/icons/_bootstrap.scss +0 -1
- package/styles/drop-down-tree/icons/_bootstrap4.scss +0 -1
- package/styles/drop-down-tree/icons/_fabric.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +0 -1
- package/styles/drop-down-tree/icons/_highcontrast.scss +0 -1
- package/styles/drop-down-tree/icons/_material-dark.scss +0 -1
- package/styles/drop-down-tree/icons/_material.scss +0 -1
- package/styles/drop-down-tree/material-dark.css +4 -0
- package/styles/drop-down-tree/material.css +4 -0
- package/styles/drop-down-tree/tailwind-dark.css +5 -0
- package/styles/drop-down-tree/tailwind.css +5 -0
- package/styles/fabric-dark.css +94 -42
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +94 -42
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +101 -44
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +101 -44
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +97 -42
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +97 -42
- package/styles/highcontrast.scss +1 -0
- package/styles/list-box/_all.scss +1 -1
- package/styles/list-box/_bootstrap-dark-definition.scss +2 -0
- package/styles/list-box/_bootstrap-definition.scss +1 -0
- package/styles/list-box/_bootstrap4-definition.scss +1 -0
- package/styles/list-box/_bootstrap5-definition.scss +3 -0
- package/styles/list-box/_fabric-dark-definition.scss +3 -1
- package/styles/list-box/_fabric-definition.scss +1 -0
- package/styles/list-box/_fluent-definition.scss +3 -0
- package/styles/list-box/_fusionnew-definition.scss +1 -0
- package/styles/list-box/_highcontrast-definition.scss +1 -0
- package/styles/list-box/_highcontrast-light-definition.scss +3 -1
- package/styles/list-box/_layout.scss +8 -17
- package/styles/list-box/_material-dark-definition.scss +2 -0
- package/styles/list-box/_material-definition.scss +1 -0
- package/styles/list-box/_material3-definition.scss +1 -0
- package/styles/list-box/_tailwind-definition.scss +3 -0
- package/styles/list-box/_theme.scss +11 -25
- package/styles/list-box/bootstrap-dark.css +12 -33
- package/styles/list-box/bootstrap.css +14 -35
- package/styles/list-box/bootstrap4.css +14 -35
- package/styles/list-box/bootstrap5-dark.css +15 -36
- package/styles/list-box/bootstrap5.css +15 -36
- package/styles/list-box/fabric-dark.css +12 -33
- package/styles/list-box/fabric.css +14 -35
- package/styles/list-box/fluent-dark.css +15 -36
- package/styles/list-box/fluent.css +15 -36
- package/styles/list-box/highcontrast-light.css +12 -33
- package/styles/list-box/highcontrast.css +14 -35
- package/styles/list-box/icons/_bootstrap-dark.scss +2 -2
- package/styles/list-box/icons/_bootstrap.scss +1 -1
- package/styles/list-box/icons/_bootstrap4.scss +1 -1
- package/styles/list-box/icons/_bootstrap5.scss +1 -1
- package/styles/list-box/icons/_fabric-dark.scss +1 -1
- package/styles/list-box/icons/_fabric.scss +1 -1
- package/styles/list-box/icons/_fluent.scss +1 -1
- package/styles/list-box/icons/_fusionnew.scss +1 -1
- package/styles/list-box/icons/_highcontrast-light.scss +1 -1
- package/styles/list-box/icons/_highcontrast.scss +1 -1
- package/styles/list-box/icons/_material-dark.scss +1 -1
- package/styles/list-box/icons/_material.scss +2 -2
- package/styles/list-box/icons/_material3.scss +1 -1
- package/styles/list-box/icons/_tailwind-dark.scss +1 -1
- package/styles/list-box/icons/_tailwind.scss +1 -1
- package/styles/list-box/material-dark.css +12 -33
- package/styles/list-box/material.css +14 -35
- package/styles/list-box/tailwind-dark.css +15 -36
- package/styles/list-box/tailwind.css +15 -36
- package/styles/material-dark.css +94 -42
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +94 -42
- package/styles/material.scss +1 -0
- package/styles/mention/_all.scss +1 -0
- package/styles/mention/_bootstrap-dark-definition.scss +3 -0
- package/styles/mention/_bootstrap-definition.scss +3 -0
- package/styles/mention/_bootstrap4-definition.scss +3 -0
- package/styles/mention/_bootstrap5-dark-definition.scss +1 -0
- package/styles/mention/_bootstrap5-definition.scss +1 -0
- package/styles/mention/_fabric-dark-definition.scss +2 -0
- package/styles/mention/_fabric-definition.scss +3 -0
- package/styles/mention/_fluent-dark-definition.scss +1 -0
- package/styles/mention/_fluent-definition.scss +1 -0
- package/styles/mention/_fusionnew-definition.scss +1 -0
- package/styles/mention/_highcontrast-definition.scss +3 -0
- package/styles/mention/_highcontrast-light-definition.scss +3 -0
- package/styles/mention/_layout.scss +6 -0
- package/styles/mention/_material-dark-definition.scss +3 -0
- package/styles/mention/_material-definition.scss +3 -0
- package/styles/mention/_material3-definition.scss +1 -0
- package/styles/mention/_tailwind-dark-definition.scss +1 -0
- package/styles/mention/_tailwind-definition.scss +1 -0
- package/styles/mention/bootstrap-dark.css +29 -0
- package/styles/mention/bootstrap-dark.scss +6 -0
- package/styles/mention/bootstrap.css +29 -0
- package/styles/mention/bootstrap.scss +6 -0
- package/styles/mention/bootstrap4.css +47 -0
- package/styles/mention/bootstrap4.scss +6 -0
- package/styles/mention/bootstrap5-dark.css +58 -0
- package/styles/mention/bootstrap5-dark.scss +6 -0
- package/styles/mention/bootstrap5.css +58 -0
- package/styles/mention/bootstrap5.scss +6 -0
- package/styles/mention/fabric-dark.css +29 -0
- package/styles/mention/fabric-dark.scss +6 -0
- package/styles/mention/fabric.css +29 -0
- package/styles/mention/fabric.scss +6 -0
- package/styles/mention/fluent-dark.css +58 -0
- package/styles/mention/fluent-dark.scss +6 -0
- package/styles/mention/fluent.css +58 -0
- package/styles/mention/fluent.scss +6 -0
- package/styles/mention/highcontrast-light.css +43 -0
- package/styles/mention/highcontrast-light.scss +6 -0
- package/styles/mention/highcontrast.css +43 -0
- package/styles/mention/highcontrast.scss +6 -0
- package/styles/mention/material-dark.css +29 -0
- package/styles/mention/material-dark.scss +6 -0
- package/styles/mention/material.css +29 -0
- package/styles/mention/material.scss +6 -0
- package/styles/mention/tailwind-dark.css +68 -0
- package/styles/mention/tailwind-dark.scss +6 -0
- package/styles/mention/tailwind.css +68 -0
- package/styles/mention/tailwind.scss +6 -0
- package/styles/multi-select/_all.scss +1 -1
- package/styles/multi-select/_bootstrap-dark-definition.scss +4 -1
- package/styles/multi-select/_bootstrap-definition.scss +2 -0
- package/styles/multi-select/_bootstrap4-definition.scss +5 -2
- package/styles/multi-select/_bootstrap5-definition.scss +2 -2
- package/styles/multi-select/_fabric-dark-definition.scss +5 -3
- package/styles/multi-select/_fabric-definition.scss +4 -2
- package/styles/multi-select/_fluent-definition.scss +2 -1
- package/styles/multi-select/_fusionnew-definition.scss +2 -2
- package/styles/multi-select/_highcontrast-definition.scss +47 -24
- package/styles/multi-select/_highcontrast-light-definition.scss +48 -25
- package/styles/multi-select/_layout.scss +59 -71
- package/styles/multi-select/_material-dark-definition.scss +3 -1
- package/styles/multi-select/_material-definition.scss +1 -0
- package/styles/multi-select/_material3-definition.scss +2 -2
- package/styles/multi-select/_tailwind-definition.scss +2 -3
- package/styles/multi-select/_theme.scss +16 -21
- package/styles/multi-select/bootstrap-dark.css +10 -6
- package/styles/multi-select/bootstrap.css +10 -6
- package/styles/multi-select/bootstrap4.css +10 -6
- package/styles/multi-select/bootstrap5-dark.css +11 -6
- package/styles/multi-select/bootstrap5.css +11 -6
- package/styles/multi-select/fabric-dark.css +10 -6
- package/styles/multi-select/fabric.css +10 -6
- package/styles/multi-select/fluent-dark.css +11 -6
- package/styles/multi-select/fluent.css +11 -6
- package/styles/multi-select/highcontrast-light.css +13 -6
- package/styles/multi-select/highcontrast.css +13 -6
- package/styles/multi-select/icons/_bootstrap5.scss +0 -1
- package/styles/multi-select/icons/_fluent.scss +0 -1
- package/styles/multi-select/icons/_fusionnew.scss +0 -1
- package/styles/multi-select/icons/_material-dark.scss +53 -54
- package/styles/multi-select/icons/_material.scss +53 -54
- package/styles/multi-select/icons/_material3.scss +0 -1
- package/styles/multi-select/icons/_tailwind.scss +0 -1
- package/styles/multi-select/material-dark.css +10 -6
- package/styles/multi-select/material.css +10 -6
- package/styles/multi-select/tailwind-dark.css +11 -6
- package/styles/multi-select/tailwind.css +11 -6
- package/styles/tailwind-dark.css +102 -44
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +102 -44
- package/styles/tailwind.scss +1 -0
|
@@ -35,6 +35,7 @@
|
|
|
35
35
|
content: "\e656";
|
|
36
36
|
}
|
|
37
37
|
|
|
38
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
38
39
|
.e-listbox-wrapper,
|
|
39
40
|
.e-listbox-container {
|
|
40
41
|
-webkit-overflow-scrolling: touch;
|
|
@@ -53,7 +54,7 @@
|
|
|
53
54
|
}
|
|
54
55
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
55
56
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
56
|
-
width: 86% !important;
|
|
57
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
57
58
|
}
|
|
58
59
|
.e-listbox-wrapper:focus,
|
|
59
60
|
.e-listbox-container:focus {
|
|
@@ -412,16 +413,6 @@ ejs-listbox {
|
|
|
412
413
|
top: 30%;
|
|
413
414
|
}
|
|
414
415
|
|
|
415
|
-
.e-listboxtool-container .e-left {
|
|
416
|
-
-ms-flex-direction: row-reverse;
|
|
417
|
-
flex-direction: row-reverse;
|
|
418
|
-
}
|
|
419
|
-
|
|
420
|
-
.e-listboxtool-wrapper .e-left {
|
|
421
|
-
-ms-flex-direction: column-reverse;
|
|
422
|
-
flex-direction: column-reverse;
|
|
423
|
-
}
|
|
424
|
-
|
|
425
416
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
426
417
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
427
418
|
margin-right: 15px;
|
|
@@ -435,7 +426,7 @@ ejs-listbox {
|
|
|
435
426
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
436
427
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
437
428
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
438
|
-
width: 85% !important;
|
|
429
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
439
430
|
}
|
|
440
431
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
441
432
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -524,30 +515,16 @@ ejs-listbox {
|
|
|
524
515
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
525
516
|
font-size: 20px;
|
|
526
517
|
}
|
|
527
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
528
|
-
|
|
529
|
-
}
|
|
530
|
-
|
|
531
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
532
|
-
height: calc(100% - 43px) !important;
|
|
533
|
-
}
|
|
534
|
-
|
|
535
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
518
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
519
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
536
520
|
height: calc(100% - 45px);
|
|
537
521
|
}
|
|
538
522
|
|
|
539
|
-
.e-
|
|
540
|
-
|
|
541
|
-
}
|
|
542
|
-
|
|
543
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
523
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
524
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
544
525
|
height: calc(100% - 50px);
|
|
545
526
|
}
|
|
546
527
|
|
|
547
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
548
|
-
height: calc(100% - 50px) !important;
|
|
549
|
-
}
|
|
550
|
-
|
|
551
528
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
552
529
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
553
530
|
height: calc(100% - 98px);
|
|
@@ -558,14 +535,11 @@ ejs-listbox {
|
|
|
558
535
|
height: calc(100% - 48px);
|
|
559
536
|
}
|
|
560
537
|
|
|
561
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
538
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
539
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
562
540
|
height: calc(100% - 45px);
|
|
563
541
|
}
|
|
564
542
|
|
|
565
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
566
|
-
height: calc(100% - 45px) !important;
|
|
567
|
-
}
|
|
568
|
-
|
|
569
543
|
.e-listbox-wrapper,
|
|
570
544
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
571
545
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -585,6 +559,11 @@ ejs-listbox {
|
|
|
585
559
|
font-size: 20px;
|
|
586
560
|
}
|
|
587
561
|
|
|
562
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
563
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
564
|
+
height: calc(100% - 43px);
|
|
565
|
+
}
|
|
566
|
+
|
|
588
567
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
589
568
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
590
569
|
height: calc(100% - 79px);
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
content: "\e744";
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
74
75
|
.e-listbox-wrapper,
|
|
75
76
|
.e-listbox-container {
|
|
76
77
|
-webkit-overflow-scrolling: touch;
|
|
@@ -89,7 +90,7 @@
|
|
|
89
90
|
}
|
|
90
91
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
91
92
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
92
|
-
width: 84% !important;
|
|
93
|
+
width: 84% !important; /* stylelint-disable-line declaration-no-important */
|
|
93
94
|
}
|
|
94
95
|
.e-listbox-wrapper:focus,
|
|
95
96
|
.e-listbox-container:focus {
|
|
@@ -448,16 +449,6 @@ ejs-listbox {
|
|
|
448
449
|
top: 30%;
|
|
449
450
|
}
|
|
450
451
|
|
|
451
|
-
.e-listboxtool-container .e-left {
|
|
452
|
-
-ms-flex-direction: row-reverse;
|
|
453
|
-
flex-direction: row-reverse;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.e-listboxtool-wrapper .e-left {
|
|
457
|
-
-ms-flex-direction: column-reverse;
|
|
458
|
-
flex-direction: column-reverse;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
452
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
462
453
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
463
454
|
margin-right: 15px;
|
|
@@ -471,7 +462,7 @@ ejs-listbox {
|
|
|
471
462
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
472
463
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
473
464
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
474
|
-
width: 80% !important;
|
|
465
|
+
width: 80% !important; /* stylelint-disable-line declaration-no-important */
|
|
475
466
|
}
|
|
476
467
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
477
468
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -560,28 +551,14 @@ ejs-listbox {
|
|
|
560
551
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
561
552
|
font-size: 14px;
|
|
562
553
|
}
|
|
563
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
564
|
-
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
568
|
-
height: calc(100% - 38px) !important;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
554
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
555
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
572
556
|
height: calc(100% - 45px);
|
|
573
557
|
}
|
|
574
558
|
|
|
575
|
-
.e-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
580
|
-
height: calc(100% - 46px);
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
584
|
-
height: calc(100% - 46px) !important;
|
|
559
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
560
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
561
|
+
height: calc(100% - 55px);
|
|
585
562
|
}
|
|
586
563
|
|
|
587
564
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
@@ -594,14 +571,11 @@ ejs-listbox {
|
|
|
594
571
|
height: calc(100% - 48px);
|
|
595
572
|
}
|
|
596
573
|
|
|
597
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
574
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
575
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
598
576
|
height: calc(100% - 45px);
|
|
599
577
|
}
|
|
600
578
|
|
|
601
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
602
|
-
height: calc(100% - 45px) !important;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
579
|
.e-listbox-wrapper,
|
|
606
580
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
607
581
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -631,6 +605,11 @@ ejs-listbox {
|
|
|
631
605
|
font-size: 12px;
|
|
632
606
|
}
|
|
633
607
|
|
|
608
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
609
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
610
|
+
height: calc(100% - 47px);
|
|
611
|
+
}
|
|
612
|
+
|
|
634
613
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
635
614
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
636
615
|
height: calc(100% - 76px);
|
|
@@ -71,6 +71,7 @@
|
|
|
71
71
|
content: "\e744";
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
74
75
|
.e-listbox-wrapper,
|
|
75
76
|
.e-listbox-container {
|
|
76
77
|
-webkit-overflow-scrolling: touch;
|
|
@@ -89,7 +90,7 @@
|
|
|
89
90
|
}
|
|
90
91
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
91
92
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
92
|
-
width: 84% !important;
|
|
93
|
+
width: 84% !important; /* stylelint-disable-line declaration-no-important */
|
|
93
94
|
}
|
|
94
95
|
.e-listbox-wrapper:focus,
|
|
95
96
|
.e-listbox-container:focus {
|
|
@@ -448,16 +449,6 @@ ejs-listbox {
|
|
|
448
449
|
top: 30%;
|
|
449
450
|
}
|
|
450
451
|
|
|
451
|
-
.e-listboxtool-container .e-left {
|
|
452
|
-
-ms-flex-direction: row-reverse;
|
|
453
|
-
flex-direction: row-reverse;
|
|
454
|
-
}
|
|
455
|
-
|
|
456
|
-
.e-listboxtool-wrapper .e-left {
|
|
457
|
-
-ms-flex-direction: column-reverse;
|
|
458
|
-
flex-direction: column-reverse;
|
|
459
|
-
}
|
|
460
|
-
|
|
461
452
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
462
453
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
463
454
|
margin-right: 15px;
|
|
@@ -471,7 +462,7 @@ ejs-listbox {
|
|
|
471
462
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
472
463
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
473
464
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
474
|
-
width: 80% !important;
|
|
465
|
+
width: 80% !important; /* stylelint-disable-line declaration-no-important */
|
|
475
466
|
}
|
|
476
467
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
477
468
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -560,28 +551,14 @@ ejs-listbox {
|
|
|
560
551
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
561
552
|
font-size: 14px;
|
|
562
553
|
}
|
|
563
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
564
|
-
|
|
565
|
-
}
|
|
566
|
-
|
|
567
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
568
|
-
height: calc(100% - 38px) !important;
|
|
569
|
-
}
|
|
570
|
-
|
|
571
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
554
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
555
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
572
556
|
height: calc(100% - 45px);
|
|
573
557
|
}
|
|
574
558
|
|
|
575
|
-
.e-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
580
|
-
height: calc(100% - 46px);
|
|
581
|
-
}
|
|
582
|
-
|
|
583
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
584
|
-
height: calc(100% - 46px) !important;
|
|
559
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
560
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
561
|
+
height: calc(100% - 55px);
|
|
585
562
|
}
|
|
586
563
|
|
|
587
564
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
@@ -594,14 +571,11 @@ ejs-listbox {
|
|
|
594
571
|
height: calc(100% - 48px);
|
|
595
572
|
}
|
|
596
573
|
|
|
597
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
574
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
575
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
598
576
|
height: calc(100% - 45px);
|
|
599
577
|
}
|
|
600
578
|
|
|
601
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
602
|
-
height: calc(100% - 45px) !important;
|
|
603
|
-
}
|
|
604
|
-
|
|
605
579
|
.e-listbox-wrapper,
|
|
606
580
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
607
581
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -631,6 +605,11 @@ ejs-listbox {
|
|
|
631
605
|
font-size: 12px;
|
|
632
606
|
}
|
|
633
607
|
|
|
608
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
609
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
610
|
+
height: calc(100% - 47px);
|
|
611
|
+
}
|
|
612
|
+
|
|
634
613
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
635
614
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
636
615
|
height: calc(100% - 76px);
|
package/styles/material-dark.css
CHANGED
|
@@ -77,7 +77,8 @@
|
|
|
77
77
|
position: relative;
|
|
78
78
|
}
|
|
79
79
|
|
|
80
|
-
.e-popup.e-ddl .e-dropdownbase.e-nodata
|
|
80
|
+
.e-popup.e-ddl .e-dropdownbase.e-nodata,
|
|
81
|
+
.e-popup.e-mention .e-dropdownbase.e-nodata {
|
|
81
82
|
color: rgba(255, 255, 255, 0.7);
|
|
82
83
|
cursor: default;
|
|
83
84
|
font-family: inherit;
|
|
@@ -86,6 +87,45 @@
|
|
|
86
87
|
text-align: center;
|
|
87
88
|
}
|
|
88
89
|
|
|
90
|
+
.e-mention.e-popup {
|
|
91
|
+
background: rgba(255, 255, 255, 0.18);
|
|
92
|
+
border: 0;
|
|
93
|
+
box-shadow: 0 2px 3px 1px 0 2px 3px 1px rgba(0, 0, 0, 0.21);
|
|
94
|
+
margin-top: 2px;
|
|
95
|
+
position: absolute;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-mention .e-dropdownbase .e-list-item .e-highlight {
|
|
99
|
+
display: inline;
|
|
100
|
+
font-weight: bold;
|
|
101
|
+
vertical-align: baseline;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
.e-mention .e-mention-chip,
|
|
105
|
+
.e-mention .e-mention-chip:hover {
|
|
106
|
+
background: #424242;
|
|
107
|
+
border-radius: 2px;
|
|
108
|
+
border: none;
|
|
109
|
+
color: #00b0ff;
|
|
110
|
+
cursor: default;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-mention .e-mention-chip::selection {
|
|
114
|
+
color: #000;
|
|
115
|
+
background: #00b0ff;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-mention.e-editable-element {
|
|
119
|
+
border: 2px solid transparent;
|
|
120
|
+
height: auto;
|
|
121
|
+
min-height: 120px;
|
|
122
|
+
width: 100%;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
.e-form-mirror-div {
|
|
126
|
+
white-space: pre-wrap;
|
|
127
|
+
}
|
|
128
|
+
|
|
89
129
|
.e-rtl .e-dropdownbase.e-dd-group .e-list-item {
|
|
90
130
|
padding-right: 2em;
|
|
91
131
|
}
|
|
@@ -148,6 +188,7 @@
|
|
|
148
188
|
border-color: transparent;
|
|
149
189
|
}
|
|
150
190
|
.e-dropdownbase .e-list-item {
|
|
191
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
151
192
|
-webkit-tap-highlight-color: transparent;
|
|
152
193
|
background-color: #424242;
|
|
153
194
|
border-bottom: 0;
|
|
@@ -334,12 +375,14 @@
|
|
|
334
375
|
color: #fff;
|
|
335
376
|
}
|
|
336
377
|
|
|
378
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
337
379
|
@keyframes e-input-ripple {
|
|
338
380
|
100% {
|
|
339
381
|
opacity: 0;
|
|
340
382
|
transform: scale(4);
|
|
341
383
|
}
|
|
342
384
|
}
|
|
385
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
343
386
|
@keyframes material-spinner-rotate {
|
|
344
387
|
0% {
|
|
345
388
|
transform: rotate(0deg);
|
|
@@ -524,6 +567,7 @@
|
|
|
524
567
|
background-color: #f5f5f5;
|
|
525
568
|
}
|
|
526
569
|
|
|
570
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
527
571
|
.e-ddl input.e-input::-webkit-contacts-auto-fill-button {
|
|
528
572
|
display: none;
|
|
529
573
|
pointer-events: none;
|
|
@@ -532,6 +576,7 @@
|
|
|
532
576
|
visibility: hidden;
|
|
533
577
|
}
|
|
534
578
|
|
|
579
|
+
/* stylelint-enable property-no-vendor-prefix */
|
|
535
580
|
.e-filter-parent {
|
|
536
581
|
border: 0;
|
|
537
582
|
border-top-width: 0;
|
|
@@ -574,6 +619,7 @@
|
|
|
574
619
|
cursor: default;
|
|
575
620
|
}
|
|
576
621
|
|
|
622
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
577
623
|
.e-ddl.e-input-group .e-ddl-hidden,
|
|
578
624
|
.e-ddl.e-float-input .e-ddl-hidden {
|
|
579
625
|
-webkit-appearance: initial;
|
|
@@ -716,12 +762,14 @@ ejs-dropdownlist {
|
|
|
716
762
|
color: #00b0ff;
|
|
717
763
|
}
|
|
718
764
|
|
|
765
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
719
766
|
@keyframes e-input-ripple {
|
|
720
767
|
100% {
|
|
721
768
|
opacity: 0;
|
|
722
769
|
transform: scale(4);
|
|
723
770
|
}
|
|
724
771
|
}
|
|
772
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
725
773
|
@keyframes material-spinner-rotate {
|
|
726
774
|
0% {
|
|
727
775
|
transform: rotate(0deg);
|
|
@@ -738,6 +786,8 @@ ejs-dropdownlist {
|
|
|
738
786
|
transform: rotate(360deg);
|
|
739
787
|
}
|
|
740
788
|
}
|
|
789
|
+
/* stylelint-disable */
|
|
790
|
+
/* stylelint-disable */
|
|
741
791
|
.e-ddt .e-ddt-icon::before {
|
|
742
792
|
content: "\e969";
|
|
743
793
|
}
|
|
@@ -1446,12 +1496,15 @@ ejs-dropdownlist {
|
|
|
1446
1496
|
color: #fff;
|
|
1447
1497
|
}
|
|
1448
1498
|
|
|
1499
|
+
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
1500
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1449
1501
|
@keyframes e-input-ripple {
|
|
1450
1502
|
100% {
|
|
1451
1503
|
opacity: 0;
|
|
1452
1504
|
transform: scale(4);
|
|
1453
1505
|
}
|
|
1454
1506
|
}
|
|
1507
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1455
1508
|
@keyframes material-spinner-rotate {
|
|
1456
1509
|
0% {
|
|
1457
1510
|
transform: rotate(0deg);
|
|
@@ -2333,7 +2386,7 @@ ejs-dropdownlist {
|
|
|
2333
2386
|
border: 0;
|
|
2334
2387
|
font-family: inherit;
|
|
2335
2388
|
font-size: 13px;
|
|
2336
|
-
font-weight:
|
|
2389
|
+
font-weight: normal;
|
|
2337
2390
|
height: 28px;
|
|
2338
2391
|
min-height: 28px;
|
|
2339
2392
|
outline: none;
|
|
@@ -2347,7 +2400,7 @@ ejs-dropdownlist {
|
|
|
2347
2400
|
color: inherit;
|
|
2348
2401
|
font-family: inherit;
|
|
2349
2402
|
font-size: 14px;
|
|
2350
|
-
font-weight:
|
|
2403
|
+
font-weight: normal;
|
|
2351
2404
|
height: 28px;
|
|
2352
2405
|
min-height: 28px;
|
|
2353
2406
|
outline: none;
|
|
@@ -2370,6 +2423,7 @@ ejs-dropdownlist {
|
|
|
2370
2423
|
min-height: 34px;
|
|
2371
2424
|
}
|
|
2372
2425
|
|
|
2426
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2373
2427
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
2374
2428
|
display: none;
|
|
2375
2429
|
}
|
|
@@ -3507,6 +3561,7 @@ ejs-multiselect {
|
|
|
3507
3561
|
box-sizing: border-box;
|
|
3508
3562
|
}
|
|
3509
3563
|
|
|
3564
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3510
3565
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
3511
3566
|
-webkit-text-fill-color: #fff;
|
|
3512
3567
|
color: #fff;
|
|
@@ -3635,19 +3690,19 @@ ejs-multiselect {
|
|
|
3635
3690
|
border: 1px solid transparent;
|
|
3636
3691
|
}
|
|
3637
3692
|
|
|
3638
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
3693
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3639
3694
|
color: rgba(255, 255, 255, 0.42);
|
|
3640
3695
|
}
|
|
3641
3696
|
|
|
3642
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
3697
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3643
3698
|
color: rgba(255, 255, 255, 0.42);
|
|
3644
3699
|
}
|
|
3645
3700
|
|
|
3646
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
3701
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3647
3702
|
color: rgba(255, 255, 255, 0.42);
|
|
3648
3703
|
}
|
|
3649
3704
|
|
|
3650
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
3705
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
3651
3706
|
color: rgba(255, 255, 255, 0.42);
|
|
3652
3707
|
}
|
|
3653
3708
|
|
|
@@ -3826,6 +3881,7 @@ ejs-multiselect {
|
|
|
3826
3881
|
content: "\e656";
|
|
3827
3882
|
}
|
|
3828
3883
|
|
|
3884
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
3829
3885
|
.e-listbox-wrapper,
|
|
3830
3886
|
.e-listbox-container {
|
|
3831
3887
|
-webkit-overflow-scrolling: touch;
|
|
@@ -3844,7 +3900,7 @@ ejs-multiselect {
|
|
|
3844
3900
|
}
|
|
3845
3901
|
.e-listbox-wrapper.e-listboxtool-container .e-list-wrap,
|
|
3846
3902
|
.e-listbox-container.e-listboxtool-container .e-list-wrap {
|
|
3847
|
-
width: 86% !important;
|
|
3903
|
+
width: 86% !important; /* stylelint-disable-line declaration-no-important */
|
|
3848
3904
|
}
|
|
3849
3905
|
.e-listbox-wrapper:focus,
|
|
3850
3906
|
.e-listbox-container:focus {
|
|
@@ -4203,16 +4259,6 @@ ejs-listbox {
|
|
|
4203
4259
|
top: 30%;
|
|
4204
4260
|
}
|
|
4205
4261
|
|
|
4206
|
-
.e-listboxtool-container .e-left {
|
|
4207
|
-
-ms-flex-direction: row-reverse;
|
|
4208
|
-
flex-direction: row-reverse;
|
|
4209
|
-
}
|
|
4210
|
-
|
|
4211
|
-
.e-listboxtool-wrapper .e-left {
|
|
4212
|
-
-ms-flex-direction: column-reverse;
|
|
4213
|
-
flex-direction: column-reverse;
|
|
4214
|
-
}
|
|
4215
|
-
|
|
4216
4262
|
.e-rtl.e-listboxtool-wrapper.e-right .e-listbox-tool,
|
|
4217
4263
|
.e-rtl.e-listboxtool-container.e-right .e-listbox-tool {
|
|
4218
4264
|
margin-right: 15px;
|
|
@@ -4226,7 +4272,7 @@ ejs-listbox {
|
|
|
4226
4272
|
.e-listbox-wrapper.e-bigger.e-listboxtool-container .e-list-wrap,
|
|
4227
4273
|
.e-bigger .e-listbox-container.e-listboxtool-container .e-list-wrap,
|
|
4228
4274
|
.e-listbox-container.e-bigger.e-listboxtool-container .e-list-wrap {
|
|
4229
|
-
width: 85% !important;
|
|
4275
|
+
width: 85% !important; /* stylelint-disable-line declaration-no-important */
|
|
4230
4276
|
}
|
|
4231
4277
|
.e-bigger .e-listbox-wrapper .e-list-item,
|
|
4232
4278
|
.e-listbox-wrapper.e-bigger .e-list-item,
|
|
@@ -4315,30 +4361,16 @@ ejs-listbox {
|
|
|
4315
4361
|
.e-listbox-container.e-bigger .e-list-header .e-text {
|
|
4316
4362
|
font-size: 20px;
|
|
4317
4363
|
}
|
|
4318
|
-
.e-listbox-wrapper.e-filter-list .e-list-parent
|
|
4319
|
-
|
|
4320
|
-
}
|
|
4321
|
-
|
|
4322
|
-
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
4323
|
-
height: calc(100% - 43px) !important;
|
|
4324
|
-
}
|
|
4325
|
-
|
|
4326
|
-
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
4364
|
+
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4365
|
+
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
4327
4366
|
height: calc(100% - 45px);
|
|
4328
4367
|
}
|
|
4329
4368
|
|
|
4330
|
-
.e-
|
|
4331
|
-
|
|
4332
|
-
}
|
|
4333
|
-
|
|
4334
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
4369
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4370
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4335
4371
|
height: calc(100% - 50px);
|
|
4336
4372
|
}
|
|
4337
4373
|
|
|
4338
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4339
|
-
height: calc(100% - 50px) !important;
|
|
4340
|
-
}
|
|
4341
|
-
|
|
4342
4374
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4343
4375
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4344
4376
|
height: calc(100% - 98px);
|
|
@@ -4349,14 +4381,11 @@ ejs-listbox {
|
|
|
4349
4381
|
height: calc(100% - 48px);
|
|
4350
4382
|
}
|
|
4351
4383
|
|
|
4352
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent
|
|
4384
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4385
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
4353
4386
|
height: calc(100% - 45px);
|
|
4354
4387
|
}
|
|
4355
4388
|
|
|
4356
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
4357
|
-
height: calc(100% - 45px) !important;
|
|
4358
|
-
}
|
|
4359
|
-
|
|
4360
4389
|
.e-listbox-wrapper,
|
|
4361
4390
|
.e-listbox-container:not(.e-listboxtool-container):not(.e-sortableclone),
|
|
4362
4391
|
.e-listboxtool-container.e-listbox-container .e-ul {
|
|
@@ -4376,6 +4405,11 @@ ejs-listbox {
|
|
|
4376
4405
|
font-size: 20px;
|
|
4377
4406
|
}
|
|
4378
4407
|
|
|
4408
|
+
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
4409
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
4410
|
+
height: calc(100% - 43px);
|
|
4411
|
+
}
|
|
4412
|
+
|
|
4379
4413
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
4380
4414
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
4381
4415
|
height: calc(100% - 79px);
|
|
@@ -4611,4 +4645,22 @@ ejs-listbox {
|
|
|
4611
4645
|
.e-listbox-container.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
4612
4646
|
padding-left: 4.1333em;
|
|
4613
4647
|
padding-right: 1.0666em;
|
|
4648
|
+
}
|
|
4649
|
+
|
|
4650
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
4651
|
+
@keyframes material-spinner-rotate {
|
|
4652
|
+
0% {
|
|
4653
|
+
transform: rotate(0deg);
|
|
4654
|
+
}
|
|
4655
|
+
100% {
|
|
4656
|
+
transform: rotate(360deg);
|
|
4657
|
+
}
|
|
4658
|
+
}
|
|
4659
|
+
@keyframes fabric-spinner-rotate {
|
|
4660
|
+
0% {
|
|
4661
|
+
transform: rotate(0deg);
|
|
4662
|
+
}
|
|
4663
|
+
100% {
|
|
4664
|
+
transform: rotate(360deg);
|
|
4665
|
+
}
|
|
4614
4666
|
}
|