@syncfusion/ej2-dropdowns 20.2.39 → 20.2.43-1234
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.eslintrc.json +16 -1
- package/CHANGELOG.md +123 -2
- package/GitLeaksReport.json +1 -0
- package/{README.md → ReadMe.md} +1 -1
- package/dist/ej2-dropdowns.min.js +1 -0
- package/dist/ej2-dropdowns.umd.min.js +1 -10
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +2260 -446
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2303 -459
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +1 -10
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +0 -9
- package/gitleaks-ci/gitleaks +0 -0
- package/gitleaks-ci.tar.gz +0 -0
- package/mention.d.ts +4 -0
- package/mention.js +4 -0
- package/package.json +76 -76
- package/src/auto-complete/auto-complete-model.d.ts +12 -11
- package/src/auto-complete/auto-complete.d.ts +20 -18
- package/src/auto-complete/auto-complete.js +67 -37
- package/src/combo-box/combo-box-model.d.ts +17 -17
- package/src/combo-box/combo-box.d.ts +33 -33
- package/src/combo-box/combo-box.js +33 -29
- package/src/common/incremental-search.d.ts +3 -4
- package/src/common/incremental-search.js +22 -7
- package/src/drop-down-base/drop-down-base-model.d.ts +13 -31
- package/src/drop-down-base/drop-down-base.d.ts +22 -41
- package/src/drop-down-base/drop-down-base.js +75 -59
- package/src/drop-down-list/drop-down-list-model.d.ts +19 -1
- package/src/drop-down-list/drop-down-list.d.ts +35 -11
- package/src/drop-down-list/drop-down-list.js +196 -90
- package/src/drop-down-tree/drop-down-tree-model.d.ts +16 -2
- package/src/drop-down-tree/drop-down-tree.d.ts +15 -1
- package/src/drop-down-tree/drop-down-tree.js +51 -15
- package/src/index.d.ts +1 -0
- package/src/index.js +1 -0
- package/src/list-box/list-box-model.d.ts +18 -0
- package/src/list-box/list-box.d.ts +22 -0
- package/src/list-box/list-box.js +86 -31
- 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 +457 -0
- package/src/mention/mention.js +1465 -0
- package/src/multi-select/checkbox-selection.js +11 -12
- package/src/multi-select/float-label.js +4 -2
- package/src/multi-select/multi-select-model.d.ts +1 -1
- package/src/multi-select/multi-select.d.ts +10 -5
- package/src/multi-select/multi-select.js +313 -189
- 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 +121 -44
- package/styles/bootstrap-dark.scss +1 -0
- package/styles/bootstrap.css +121 -44
- package/styles/bootstrap.scss +1 -0
- package/styles/bootstrap4.css +134 -55
- package/styles/bootstrap4.scss +1 -0
- package/styles/bootstrap5-dark.css +135 -50
- package/styles/bootstrap5-dark.scss +1 -0
- package/styles/bootstrap5.css +135 -50
- 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 +9 -2
- package/styles/drop-down-base/_bootstrap-definition.scss +7 -1
- package/styles/drop-down-base/_bootstrap4-definition.scss +7 -1
- package/styles/drop-down-base/_bootstrap5-definition.scss +9 -3
- package/styles/drop-down-base/_fabric-dark-definition.scss +7 -1
- package/styles/drop-down-base/_fabric-definition.scss +7 -1
- package/styles/drop-down-base/_fluent-definition.scss +9 -2
- package/styles/drop-down-base/_fusionnew-definition.scss +9 -3
- package/styles/drop-down-base/_highcontrast-definition.scss +17 -6
- package/styles/drop-down-base/_highcontrast-light-definition.scss +19 -7
- package/styles/drop-down-base/_layout.scss +44 -3
- package/styles/drop-down-base/_material-dark-definition.scss +8 -1
- package/styles/drop-down-base/_material-definition.scss +7 -0
- package/styles/drop-down-base/_material3-definition.scss +9 -3
- package/styles/drop-down-base/_tailwind-definition.scss +9 -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 +11 -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 +8 -0
- package/styles/drop-down-list/bootstrap.css +8 -0
- package/styles/drop-down-list/bootstrap4.css +8 -0
- package/styles/drop-down-list/bootstrap5-dark.css +9 -0
- package/styles/drop-down-list/bootstrap5.css +9 -0
- package/styles/drop-down-list/fabric-dark.css +8 -0
- package/styles/drop-down-list/fabric.css +8 -0
- package/styles/drop-down-list/fluent-dark.css +9 -0
- package/styles/drop-down-list/fluent.css +9 -0
- package/styles/drop-down-list/highcontrast-light.css +8 -0
- package/styles/drop-down-list/highcontrast.css +8 -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 +8 -0
- package/styles/drop-down-list/material.css +8 -0
- package/styles/drop-down-list/tailwind-dark.css +9 -0
- package/styles/drop-down-list/tailwind.css +9 -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 +10 -3
- 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 +9 -1
- package/styles/drop-down-tree/bootstrap5.css +9 -1
- 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 +129 -52
- package/styles/fabric-dark.scss +1 -0
- package/styles/fabric.css +129 -52
- package/styles/fabric.scss +1 -0
- package/styles/fluent-dark.css +129 -47
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +129 -47
- package/styles/fluent.scss +1 -0
- package/styles/highcontrast-light.css +124 -44
- package/styles/highcontrast-light.scss +1 -0
- package/styles/highcontrast.css +133 -53
- 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 +120 -43
- package/styles/material-dark.scss +1 -0
- package/styles/material.css +120 -43
- 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 +11 -1
- package/styles/multi-select/_bootstrap-definition.scss +9 -0
- package/styles/multi-select/_bootstrap4-definition.scss +20 -9
- package/styles/multi-select/_bootstrap5-definition.scss +11 -3
- package/styles/multi-select/_fabric-dark-definition.scss +16 -7
- package/styles/multi-select/_fabric-definition.scss +15 -6
- package/styles/multi-select/_fluent-definition.scss +11 -2
- package/styles/multi-select/_fusionnew-definition.scss +10 -2
- package/styles/multi-select/_highcontrast-definition.scss +59 -29
- package/styles/multi-select/_highcontrast-light-definition.scss +55 -25
- package/styles/multi-select/_layout.scss +91 -78
- package/styles/multi-select/_material-dark-definition.scss +10 -1
- package/styles/multi-select/_material-definition.scss +8 -0
- package/styles/multi-select/_material3-definition.scss +9 -2
- package/styles/multi-select/_tailwind-definition.scss +11 -4
- package/styles/multi-select/_theme.scss +20 -21
- package/styles/multi-select/bootstrap-dark.css +34 -8
- package/styles/multi-select/bootstrap.css +34 -8
- package/styles/multi-select/bootstrap4.css +46 -19
- package/styles/multi-select/bootstrap5-dark.css +38 -11
- package/styles/multi-select/bootstrap5.css +38 -11
- package/styles/multi-select/fabric-dark.css +42 -16
- package/styles/multi-select/fabric.css +42 -16
- package/styles/multi-select/fluent-dark.css +36 -9
- package/styles/multi-select/fluent.css +36 -9
- package/styles/multi-select/highcontrast-light.css +37 -8
- package/styles/multi-select/highcontrast.css +46 -17
- 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 +33 -7
- package/styles/multi-select/material.css +33 -7
- package/styles/multi-select/tailwind-dark.css +38 -9
- package/styles/multi-select/tailwind.css +38 -9
- package/styles/tailwind-dark.css +132 -47
- package/styles/tailwind-dark.scss +1 -0
- package/styles/tailwind.css +132 -47
- package/styles/tailwind.scss +1 -0
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -382,6 +385,10 @@
|
|
|
382
385
|
width: 14px;
|
|
383
386
|
}
|
|
384
387
|
|
|
388
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
389
|
+
margin: 0 0 0;
|
|
390
|
+
}
|
|
391
|
+
|
|
385
392
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
386
393
|
margin: 3px 0 0;
|
|
387
394
|
}
|
|
@@ -458,12 +465,12 @@
|
|
|
458
465
|
border: 0;
|
|
459
466
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
460
467
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
468
|
+
font-weight: normal;
|
|
462
469
|
height: 30px;
|
|
463
470
|
min-height: 30px;
|
|
464
471
|
outline: none;
|
|
465
|
-
padding: 0;
|
|
466
|
-
text-indent:
|
|
472
|
+
padding: 0 0 0 8px;
|
|
473
|
+
text-indent: 0;
|
|
467
474
|
}
|
|
468
475
|
|
|
469
476
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -472,7 +479,7 @@
|
|
|
472
479
|
color: inherit;
|
|
473
480
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
474
481
|
font-size: 14px;
|
|
475
|
-
font-weight:
|
|
482
|
+
font-weight: normal;
|
|
476
483
|
height: 30px;
|
|
477
484
|
min-height: 30px;
|
|
478
485
|
outline: none;
|
|
@@ -495,6 +502,7 @@
|
|
|
495
502
|
min-height: 36px;
|
|
496
503
|
}
|
|
497
504
|
|
|
505
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
498
506
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
499
507
|
display: none;
|
|
500
508
|
}
|
|
@@ -1138,6 +1146,20 @@ ejs-multiselect {
|
|
|
1138
1146
|
display: none;
|
|
1139
1147
|
}
|
|
1140
1148
|
|
|
1149
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1150
|
+
margin-right: 0;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1154
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1155
|
+
cursor: not-allowed;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1159
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
1160
|
+
cursor: pointer;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1141
1163
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1142
1164
|
color: #f3f2f1;
|
|
1143
1165
|
}
|
|
@@ -1154,6 +1176,7 @@ ejs-multiselect {
|
|
|
1154
1176
|
box-sizing: border-box;
|
|
1155
1177
|
}
|
|
1156
1178
|
|
|
1179
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1157
1180
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1158
1181
|
-webkit-text-fill-color: #f3f2f1;
|
|
1159
1182
|
color: #f3f2f1;
|
|
@@ -1299,19 +1322,19 @@ ejs-multiselect {
|
|
|
1299
1322
|
border: 0 solid transparent;
|
|
1300
1323
|
}
|
|
1301
1324
|
|
|
1302
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1325
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1303
1326
|
color: #a19f9d;
|
|
1304
1327
|
}
|
|
1305
1328
|
|
|
1306
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1329
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1307
1330
|
color: #a19f9d;
|
|
1308
1331
|
}
|
|
1309
1332
|
|
|
1310
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1333
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1311
1334
|
color: #a19f9d;
|
|
1312
1335
|
}
|
|
1313
1336
|
|
|
1314
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1337
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1315
1338
|
color: #a19f9d;
|
|
1316
1339
|
}
|
|
1317
1340
|
|
|
@@ -1341,7 +1364,7 @@ ejs-multiselect {
|
|
|
1341
1364
|
}
|
|
1342
1365
|
|
|
1343
1366
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1344
|
-
left:
|
|
1367
|
+
left: 0;
|
|
1345
1368
|
top: 2px;
|
|
1346
1369
|
font-size: 8px;
|
|
1347
1370
|
}
|
|
@@ -1350,6 +1373,10 @@ ejs-multiselect {
|
|
|
1350
1373
|
left: 0;
|
|
1351
1374
|
}
|
|
1352
1375
|
|
|
1376
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1377
|
+
left: 0;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1353
1380
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
1354
1381
|
left: -2px;
|
|
1355
1382
|
}
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable-line no-empty-source */
|
|
3
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
4
|
@keyframes material-spinner-rotate {
|
|
2
5
|
0% {
|
|
3
6
|
transform: rotate(0);
|
|
@@ -382,6 +385,10 @@
|
|
|
382
385
|
width: 14px;
|
|
383
386
|
}
|
|
384
387
|
|
|
388
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
389
|
+
margin: 0 0 0;
|
|
390
|
+
}
|
|
391
|
+
|
|
385
392
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
386
393
|
margin: 3px 0 0;
|
|
387
394
|
}
|
|
@@ -458,12 +465,12 @@
|
|
|
458
465
|
border: 0;
|
|
459
466
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
460
467
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
468
|
+
font-weight: normal;
|
|
462
469
|
height: 30px;
|
|
463
470
|
min-height: 30px;
|
|
464
471
|
outline: none;
|
|
465
|
-
padding: 0;
|
|
466
|
-
text-indent:
|
|
472
|
+
padding: 0 0 0 8px;
|
|
473
|
+
text-indent: 0;
|
|
467
474
|
}
|
|
468
475
|
|
|
469
476
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -472,7 +479,7 @@
|
|
|
472
479
|
color: inherit;
|
|
473
480
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
474
481
|
font-size: 14px;
|
|
475
|
-
font-weight:
|
|
482
|
+
font-weight: normal;
|
|
476
483
|
height: 30px;
|
|
477
484
|
min-height: 30px;
|
|
478
485
|
outline: none;
|
|
@@ -495,6 +502,7 @@
|
|
|
495
502
|
min-height: 36px;
|
|
496
503
|
}
|
|
497
504
|
|
|
505
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
498
506
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
499
507
|
display: none;
|
|
500
508
|
}
|
|
@@ -1138,6 +1146,20 @@ ejs-multiselect {
|
|
|
1138
1146
|
display: none;
|
|
1139
1147
|
}
|
|
1140
1148
|
|
|
1149
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1150
|
+
margin-right: 0;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1154
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1155
|
+
cursor: not-allowed;
|
|
1156
|
+
}
|
|
1157
|
+
|
|
1158
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1159
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
1160
|
+
cursor: pointer;
|
|
1161
|
+
}
|
|
1162
|
+
|
|
1141
1163
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1142
1164
|
color: #201f1e;
|
|
1143
1165
|
}
|
|
@@ -1154,6 +1176,7 @@ ejs-multiselect {
|
|
|
1154
1176
|
box-sizing: border-box;
|
|
1155
1177
|
}
|
|
1156
1178
|
|
|
1179
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1157
1180
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1158
1181
|
-webkit-text-fill-color: #201f1e;
|
|
1159
1182
|
color: #201f1e;
|
|
@@ -1299,19 +1322,19 @@ ejs-multiselect {
|
|
|
1299
1322
|
border: 0 solid transparent;
|
|
1300
1323
|
}
|
|
1301
1324
|
|
|
1302
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1325
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1303
1326
|
color: #605e5c;
|
|
1304
1327
|
}
|
|
1305
1328
|
|
|
1306
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1329
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1307
1330
|
color: #605e5c;
|
|
1308
1331
|
}
|
|
1309
1332
|
|
|
1310
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1333
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1311
1334
|
color: #605e5c;
|
|
1312
1335
|
}
|
|
1313
1336
|
|
|
1314
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1337
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1315
1338
|
color: #605e5c;
|
|
1316
1339
|
}
|
|
1317
1340
|
|
|
@@ -1341,7 +1364,7 @@ ejs-multiselect {
|
|
|
1341
1364
|
}
|
|
1342
1365
|
|
|
1343
1366
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1344
|
-
left:
|
|
1367
|
+
left: 0;
|
|
1345
1368
|
top: 2px;
|
|
1346
1369
|
font-size: 8px;
|
|
1347
1370
|
}
|
|
@@ -1350,6 +1373,10 @@ ejs-multiselect {
|
|
|
1350
1373
|
left: 0;
|
|
1351
1374
|
}
|
|
1352
1375
|
|
|
1376
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1377
|
+
left: 0;
|
|
1378
|
+
}
|
|
1379
|
+
|
|
1353
1380
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
1354
1381
|
left: -2px;
|
|
1355
1382
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -45,6 +47,9 @@
|
|
|
45
47
|
color: #000;
|
|
46
48
|
top: 12px;
|
|
47
49
|
}
|
|
50
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
51
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
52
|
+
}
|
|
48
53
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
49
54
|
color: #4f4f4f;
|
|
50
55
|
font-family: inherit;
|
|
@@ -404,6 +409,10 @@
|
|
|
404
409
|
width: 26px;
|
|
405
410
|
}
|
|
406
411
|
|
|
412
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
413
|
+
margin: 0;
|
|
414
|
+
}
|
|
415
|
+
|
|
407
416
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
408
417
|
margin: 3px 0 0;
|
|
409
418
|
}
|
|
@@ -454,12 +463,12 @@
|
|
|
454
463
|
border: 0;
|
|
455
464
|
font-family: inherit;
|
|
456
465
|
font-size: 14px;
|
|
457
|
-
font-weight:
|
|
466
|
+
font-weight: normal;
|
|
458
467
|
height: 28px;
|
|
459
468
|
min-height: 28px;
|
|
460
469
|
outline: none;
|
|
461
|
-
padding: 0;
|
|
462
|
-
text-indent:
|
|
470
|
+
padding: 0 0 0 10px;
|
|
471
|
+
text-indent: 0;
|
|
463
472
|
}
|
|
464
473
|
|
|
465
474
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -468,7 +477,7 @@
|
|
|
468
477
|
color: inherit;
|
|
469
478
|
font-family: inherit;
|
|
470
479
|
font-size: 14px;
|
|
471
|
-
font-weight:
|
|
480
|
+
font-weight: normal;
|
|
472
481
|
height: 28px;
|
|
473
482
|
min-height: 28px;
|
|
474
483
|
outline: none;
|
|
@@ -491,6 +500,7 @@
|
|
|
491
500
|
min-height: 38px;
|
|
492
501
|
}
|
|
493
502
|
|
|
503
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
494
504
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
495
505
|
display: none;
|
|
496
506
|
}
|
|
@@ -1119,6 +1129,20 @@ ejs-multiselect {
|
|
|
1119
1129
|
display: none;
|
|
1120
1130
|
}
|
|
1121
1131
|
|
|
1132
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1133
|
+
margin-right: 0;
|
|
1134
|
+
}
|
|
1135
|
+
|
|
1136
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1137
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1138
|
+
cursor: not-allowed;
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1142
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
1143
|
+
cursor: pointer;
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1122
1146
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1123
1147
|
color: #fff;
|
|
1124
1148
|
}
|
|
@@ -1135,6 +1159,7 @@ ejs-multiselect {
|
|
|
1135
1159
|
box-sizing: border-box;
|
|
1136
1160
|
}
|
|
1137
1161
|
|
|
1162
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1138
1163
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1139
1164
|
-webkit-text-fill-color: #fff;
|
|
1140
1165
|
color: #fff;
|
|
@@ -1251,19 +1276,19 @@ ejs-multiselect {
|
|
|
1251
1276
|
border: 1px solid transparent;
|
|
1252
1277
|
}
|
|
1253
1278
|
|
|
1254
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1279
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1255
1280
|
color: #000;
|
|
1256
1281
|
}
|
|
1257
1282
|
|
|
1258
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1283
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1259
1284
|
color: #000;
|
|
1260
1285
|
}
|
|
1261
1286
|
|
|
1262
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1287
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1263
1288
|
color: #000;
|
|
1264
1289
|
}
|
|
1265
1290
|
|
|
1266
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1291
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1267
1292
|
color: #000;
|
|
1268
1293
|
}
|
|
1269
1294
|
|
|
@@ -1320,6 +1345,10 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
1320
1345
|
left: 7px;
|
|
1321
1346
|
}
|
|
1322
1347
|
|
|
1348
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1349
|
+
left: 7px;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1323
1352
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1324
1353
|
height: 26px;
|
|
1325
1354
|
}
|
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
2
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1
3
|
@keyframes material-spinner-rotate {
|
|
2
4
|
0% {
|
|
3
5
|
transform: rotate(0);
|
|
@@ -45,6 +47,9 @@
|
|
|
45
47
|
color: #fff;
|
|
46
48
|
top: 12px;
|
|
47
49
|
}
|
|
50
|
+
.e-multiselect .e-multi-select-wrapper input {
|
|
51
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
52
|
+
}
|
|
48
53
|
.e-multiselect .e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
49
54
|
color: #969696;
|
|
50
55
|
font-family: inherit;
|
|
@@ -147,7 +152,7 @@
|
|
|
147
152
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
148
153
|
content: "\e7a7";
|
|
149
154
|
cursor: pointer;
|
|
150
|
-
left:
|
|
155
|
+
left: 0;
|
|
151
156
|
position: relative;
|
|
152
157
|
top: 8px;
|
|
153
158
|
}
|
|
@@ -155,7 +160,7 @@
|
|
|
155
160
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
156
161
|
content: "\e7a7";
|
|
157
162
|
cursor: pointer;
|
|
158
|
-
left:
|
|
163
|
+
left: 0;
|
|
159
164
|
position: relative;
|
|
160
165
|
top: 10px;
|
|
161
166
|
}
|
|
@@ -402,8 +407,12 @@
|
|
|
402
407
|
float: right;
|
|
403
408
|
font-family: "e-icons";
|
|
404
409
|
height: 26px;
|
|
405
|
-
margin: 0;
|
|
406
|
-
width:
|
|
410
|
+
margin: 10px 10px 10px 0;
|
|
411
|
+
width: auto;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
415
|
+
margin: 8px 0 8px 20px;
|
|
407
416
|
}
|
|
408
417
|
|
|
409
418
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -418,7 +427,7 @@
|
|
|
418
427
|
position: absolute;
|
|
419
428
|
right: 0;
|
|
420
429
|
top: 100%;
|
|
421
|
-
width:
|
|
430
|
+
width: auto;
|
|
422
431
|
}
|
|
423
432
|
|
|
424
433
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -456,12 +465,12 @@
|
|
|
456
465
|
border: 0;
|
|
457
466
|
font-family: inherit;
|
|
458
467
|
font-size: 14px;
|
|
459
|
-
font-weight:
|
|
468
|
+
font-weight: normal;
|
|
460
469
|
height: 28px;
|
|
461
470
|
min-height: 28px;
|
|
462
471
|
outline: none;
|
|
463
|
-
padding: 0;
|
|
464
|
-
text-indent:
|
|
472
|
+
padding: 0 0 0 10px;
|
|
473
|
+
text-indent: 0;
|
|
465
474
|
}
|
|
466
475
|
|
|
467
476
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -470,7 +479,7 @@
|
|
|
470
479
|
color: inherit;
|
|
471
480
|
font-family: inherit;
|
|
472
481
|
font-size: 14px;
|
|
473
|
-
font-weight:
|
|
482
|
+
font-weight: normal;
|
|
474
483
|
height: 28px;
|
|
475
484
|
min-height: 28px;
|
|
476
485
|
outline: none;
|
|
@@ -493,6 +502,7 @@
|
|
|
493
502
|
min-height: 38px;
|
|
494
503
|
}
|
|
495
504
|
|
|
505
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
496
506
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
497
507
|
display: none;
|
|
498
508
|
}
|
|
@@ -838,7 +848,7 @@ ejs-multiselect {
|
|
|
838
848
|
|
|
839
849
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
840
850
|
height: 22px;
|
|
841
|
-
width:
|
|
851
|
+
width: auto;
|
|
842
852
|
}
|
|
843
853
|
|
|
844
854
|
.e-small .e-multi-select-wrapper {
|
|
@@ -857,7 +867,7 @@ ejs-multiselect {
|
|
|
857
867
|
|
|
858
868
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
859
869
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
860
|
-
margin-top: -
|
|
870
|
+
margin-top: -3.2em;
|
|
861
871
|
}
|
|
862
872
|
|
|
863
873
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -867,7 +877,7 @@ ejs-multiselect {
|
|
|
867
877
|
|
|
868
878
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
869
879
|
height: 26px;
|
|
870
|
-
width:
|
|
880
|
+
width: auto;
|
|
871
881
|
}
|
|
872
882
|
|
|
873
883
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -886,7 +896,7 @@ ejs-multiselect {
|
|
|
886
896
|
|
|
887
897
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
888
898
|
.e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
889
|
-
margin-top: -3.
|
|
899
|
+
margin-top: -3.4em;
|
|
890
900
|
right: 0;
|
|
891
901
|
}
|
|
892
902
|
|
|
@@ -1121,6 +1131,20 @@ ejs-multiselect {
|
|
|
1121
1131
|
display: none;
|
|
1122
1132
|
}
|
|
1123
1133
|
|
|
1134
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1135
|
+
margin-right: 0;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1139
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1140
|
+
cursor: not-allowed;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1143
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1144
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon .e-multi-searcher .e-dropdownbase.e-control.e-multiselect.e-lib {
|
|
1145
|
+
cursor: pointer;
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1124
1148
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1125
1149
|
color: #000;
|
|
1126
1150
|
}
|
|
@@ -1137,6 +1161,7 @@ ejs-multiselect {
|
|
|
1137
1161
|
box-sizing: border-box;
|
|
1138
1162
|
}
|
|
1139
1163
|
|
|
1164
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1140
1165
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1141
1166
|
-webkit-text-fill-color: #000;
|
|
1142
1167
|
color: #000;
|
|
@@ -1253,19 +1278,19 @@ ejs-multiselect {
|
|
|
1253
1278
|
border: 1px solid transparent;
|
|
1254
1279
|
}
|
|
1255
1280
|
|
|
1256
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1281
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1257
1282
|
color: #fff;
|
|
1258
1283
|
}
|
|
1259
1284
|
|
|
1260
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1285
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1261
1286
|
color: #fff;
|
|
1262
1287
|
}
|
|
1263
1288
|
|
|
1264
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1289
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1265
1290
|
color: #fff;
|
|
1266
1291
|
}
|
|
1267
1292
|
|
|
1268
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1293
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1269
1294
|
color: #fff;
|
|
1270
1295
|
}
|
|
1271
1296
|
|
|
@@ -1322,6 +1347,10 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
1322
1347
|
left: 7px;
|
|
1323
1348
|
}
|
|
1324
1349
|
|
|
1350
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1351
|
+
left: -35px;
|
|
1352
|
+
}
|
|
1353
|
+
|
|
1325
1354
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1326
1355
|
height: 26px;
|
|
1327
1356
|
}
|