@syncfusion/ej2-dropdowns 20.2.39 → 20.2.43-3197
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/{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 +2243 -445
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +2285 -458
- 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/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 +195 -89
- 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 +9 -5
- package/src/multi-select/multi-select.js +296 -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);
|
|
@@ -360,6 +363,10 @@
|
|
|
360
363
|
width: 14px;
|
|
361
364
|
}
|
|
362
365
|
|
|
366
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
367
|
+
margin: 0 0 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
363
370
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
364
371
|
margin: 3px 0 0;
|
|
365
372
|
}
|
|
@@ -378,7 +385,7 @@
|
|
|
378
385
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
379
386
|
.e-small.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
380
387
|
.e-multiselect.e-input-group.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
381
|
-
right:
|
|
388
|
+
right: 30px;
|
|
382
389
|
}
|
|
383
390
|
|
|
384
391
|
.e-bigger.e-small .e-multiselect .e-down-icon .e-chips-close.e-close-hooker {
|
|
@@ -386,7 +393,7 @@
|
|
|
386
393
|
}
|
|
387
394
|
|
|
388
395
|
.e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
389
|
-
left:
|
|
396
|
+
left: 30px;
|
|
390
397
|
right: auto;
|
|
391
398
|
}
|
|
392
399
|
|
|
@@ -418,12 +425,12 @@
|
|
|
418
425
|
border: 0;
|
|
419
426
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
420
427
|
font-size: 14px;
|
|
421
|
-
font-weight:
|
|
428
|
+
font-weight: normal;
|
|
422
429
|
height: 30px;
|
|
423
430
|
min-height: 30px;
|
|
424
431
|
outline: none;
|
|
425
|
-
padding: 0;
|
|
426
|
-
text-indent:
|
|
432
|
+
padding: 0 0 0 8px;
|
|
433
|
+
text-indent: 0;
|
|
427
434
|
}
|
|
428
435
|
|
|
429
436
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -432,7 +439,7 @@
|
|
|
432
439
|
color: inherit;
|
|
433
440
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
434
441
|
font-size: 14px;
|
|
435
|
-
font-weight:
|
|
442
|
+
font-weight: normal;
|
|
436
443
|
height: 30px;
|
|
437
444
|
min-height: 30px;
|
|
438
445
|
outline: none;
|
|
@@ -455,6 +462,7 @@
|
|
|
455
462
|
min-height: 36px;
|
|
456
463
|
}
|
|
457
464
|
|
|
465
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
458
466
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
459
467
|
display: none;
|
|
460
468
|
}
|
|
@@ -594,7 +602,7 @@
|
|
|
594
602
|
padding: 12px 4px;
|
|
595
603
|
}
|
|
596
604
|
.e-multiselect.e-rtl .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
597
|
-
left:
|
|
605
|
+
left: 30px;
|
|
598
606
|
position: absolute;
|
|
599
607
|
right: auto;
|
|
600
608
|
left: 0;
|
|
@@ -1098,6 +1106,20 @@ ejs-multiselect {
|
|
|
1098
1106
|
display: none;
|
|
1099
1107
|
}
|
|
1100
1108
|
|
|
1109
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1110
|
+
margin-right: 0;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1114
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1115
|
+
cursor: not-allowed;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1119
|
+
.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 {
|
|
1120
|
+
cursor: pointer;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1101
1123
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1102
1124
|
color: #fff;
|
|
1103
1125
|
}
|
|
@@ -1114,6 +1136,7 @@ ejs-multiselect {
|
|
|
1114
1136
|
box-sizing: border-box;
|
|
1115
1137
|
}
|
|
1116
1138
|
|
|
1139
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1117
1140
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1118
1141
|
-webkit-text-fill-color: #fff;
|
|
1119
1142
|
color: #fff;
|
|
@@ -1240,19 +1263,19 @@ ejs-multiselect {
|
|
|
1240
1263
|
border: 0 solid transparent;
|
|
1241
1264
|
}
|
|
1242
1265
|
|
|
1243
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1266
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1244
1267
|
color: #6c757d;
|
|
1245
1268
|
}
|
|
1246
1269
|
|
|
1247
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1270
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1248
1271
|
color: #6c757d;
|
|
1249
1272
|
}
|
|
1250
1273
|
|
|
1251
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1274
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1252
1275
|
color: #6c757d;
|
|
1253
1276
|
}
|
|
1254
1277
|
|
|
1255
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1278
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1256
1279
|
color: #6c757d;
|
|
1257
1280
|
}
|
|
1258
1281
|
|
|
@@ -1292,6 +1315,10 @@ ejs-multiselect {
|
|
|
1292
1315
|
left: 0;
|
|
1293
1316
|
}
|
|
1294
1317
|
|
|
1318
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1319
|
+
left: 0;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1295
1322
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1296
1323
|
height: 26px;
|
|
1297
1324
|
}
|
|
@@ -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);
|
|
@@ -360,6 +363,10 @@
|
|
|
360
363
|
width: 14px;
|
|
361
364
|
}
|
|
362
365
|
|
|
366
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
367
|
+
margin: 0 0 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
363
370
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
364
371
|
margin: 3px 0 0;
|
|
365
372
|
}
|
|
@@ -378,7 +385,7 @@
|
|
|
378
385
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
379
386
|
.e-small.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
380
387
|
.e-multiselect.e-input-group.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
381
|
-
right:
|
|
388
|
+
right: 30px;
|
|
382
389
|
}
|
|
383
390
|
|
|
384
391
|
.e-bigger.e-small .e-multiselect .e-down-icon .e-chips-close.e-close-hooker {
|
|
@@ -386,7 +393,7 @@
|
|
|
386
393
|
}
|
|
387
394
|
|
|
388
395
|
.e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
|
|
389
|
-
left:
|
|
396
|
+
left: 30px;
|
|
390
397
|
right: auto;
|
|
391
398
|
}
|
|
392
399
|
|
|
@@ -418,12 +425,12 @@
|
|
|
418
425
|
border: 0;
|
|
419
426
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
420
427
|
font-size: 14px;
|
|
421
|
-
font-weight:
|
|
428
|
+
font-weight: normal;
|
|
422
429
|
height: 30px;
|
|
423
430
|
min-height: 30px;
|
|
424
431
|
outline: none;
|
|
425
|
-
padding: 0;
|
|
426
|
-
text-indent:
|
|
432
|
+
padding: 0 0 0 8px;
|
|
433
|
+
text-indent: 0;
|
|
427
434
|
}
|
|
428
435
|
|
|
429
436
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -432,7 +439,7 @@
|
|
|
432
439
|
color: inherit;
|
|
433
440
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
434
441
|
font-size: 14px;
|
|
435
|
-
font-weight:
|
|
442
|
+
font-weight: normal;
|
|
436
443
|
height: 30px;
|
|
437
444
|
min-height: 30px;
|
|
438
445
|
outline: none;
|
|
@@ -455,6 +462,7 @@
|
|
|
455
462
|
min-height: 36px;
|
|
456
463
|
}
|
|
457
464
|
|
|
465
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
458
466
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
459
467
|
display: none;
|
|
460
468
|
}
|
|
@@ -594,7 +602,7 @@
|
|
|
594
602
|
padding: 12px 4px;
|
|
595
603
|
}
|
|
596
604
|
.e-multiselect.e-rtl .e-multi-select-wrapper .e-chips-close.e-close-hooker {
|
|
597
|
-
left:
|
|
605
|
+
left: 30px;
|
|
598
606
|
position: absolute;
|
|
599
607
|
right: auto;
|
|
600
608
|
left: 0;
|
|
@@ -1098,6 +1106,20 @@ ejs-multiselect {
|
|
|
1098
1106
|
display: none;
|
|
1099
1107
|
}
|
|
1100
1108
|
|
|
1109
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1110
|
+
margin-right: 0;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1114
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1115
|
+
cursor: not-allowed;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1119
|
+
.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 {
|
|
1120
|
+
cursor: pointer;
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1101
1123
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1102
1124
|
color: #212529;
|
|
1103
1125
|
}
|
|
@@ -1114,6 +1136,7 @@ ejs-multiselect {
|
|
|
1114
1136
|
box-sizing: border-box;
|
|
1115
1137
|
}
|
|
1116
1138
|
|
|
1139
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1117
1140
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1118
1141
|
-webkit-text-fill-color: #fff;
|
|
1119
1142
|
color: #fff;
|
|
@@ -1240,19 +1263,19 @@ ejs-multiselect {
|
|
|
1240
1263
|
border: 0 solid transparent;
|
|
1241
1264
|
}
|
|
1242
1265
|
|
|
1243
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1266
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1244
1267
|
color: #6c757d;
|
|
1245
1268
|
}
|
|
1246
1269
|
|
|
1247
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1270
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1248
1271
|
color: #6c757d;
|
|
1249
1272
|
}
|
|
1250
1273
|
|
|
1251
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1274
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1252
1275
|
color: #6c757d;
|
|
1253
1276
|
}
|
|
1254
1277
|
|
|
1255
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1278
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1256
1279
|
color: #6c757d;
|
|
1257
1280
|
}
|
|
1258
1281
|
|
|
@@ -1292,6 +1315,10 @@ ejs-multiselect {
|
|
|
1292
1315
|
left: 0;
|
|
1293
1316
|
}
|
|
1294
1317
|
|
|
1318
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1319
|
+
left: 0;
|
|
1320
|
+
}
|
|
1321
|
+
|
|
1295
1322
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1296
1323
|
height: 26px;
|
|
1297
1324
|
}
|
|
@@ -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);
|
|
@@ -54,7 +56,7 @@
|
|
|
54
56
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
55
57
|
content: "\e7a7";
|
|
56
58
|
cursor: pointer;
|
|
57
|
-
left:
|
|
59
|
+
left: 0;
|
|
58
60
|
position: relative;
|
|
59
61
|
top: 8px;
|
|
60
62
|
}
|
|
@@ -62,7 +64,7 @@
|
|
|
62
64
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
63
65
|
content: "\e7a7";
|
|
64
66
|
cursor: pointer;
|
|
65
|
-
left:
|
|
67
|
+
left: 0;
|
|
66
68
|
position: relative;
|
|
67
69
|
top: 10px;
|
|
68
70
|
}
|
|
@@ -309,8 +311,12 @@
|
|
|
309
311
|
float: right;
|
|
310
312
|
font-family: "e-icons";
|
|
311
313
|
height: 26px;
|
|
312
|
-
margin:
|
|
313
|
-
width:
|
|
314
|
+
margin: 8px 8px 8px 8px;
|
|
315
|
+
width: auto;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
319
|
+
margin: 8px 0 8px 20px;
|
|
314
320
|
}
|
|
315
321
|
|
|
316
322
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -325,7 +331,7 @@
|
|
|
325
331
|
position: absolute;
|
|
326
332
|
right: 0;
|
|
327
333
|
top: 100%;
|
|
328
|
-
width:
|
|
334
|
+
width: auto;
|
|
329
335
|
}
|
|
330
336
|
|
|
331
337
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -352,12 +358,12 @@
|
|
|
352
358
|
border: 0;
|
|
353
359
|
font-family: inherit;
|
|
354
360
|
font-size: 14px;
|
|
355
|
-
font-weight:
|
|
361
|
+
font-weight: normal;
|
|
356
362
|
height: 28px;
|
|
357
363
|
min-height: 28px;
|
|
358
364
|
outline: none;
|
|
359
|
-
padding: 0;
|
|
360
|
-
text-indent:
|
|
365
|
+
padding: 0 0 0 10px;
|
|
366
|
+
text-indent: 0;
|
|
361
367
|
}
|
|
362
368
|
|
|
363
369
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -366,7 +372,7 @@
|
|
|
366
372
|
color: inherit;
|
|
367
373
|
font-family: inherit;
|
|
368
374
|
font-size: 14px;
|
|
369
|
-
font-weight:
|
|
375
|
+
font-weight: normal;
|
|
370
376
|
height: 28px;
|
|
371
377
|
min-height: 28px;
|
|
372
378
|
outline: none;
|
|
@@ -389,6 +395,7 @@
|
|
|
389
395
|
min-height: 38px;
|
|
390
396
|
}
|
|
391
397
|
|
|
398
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
392
399
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
393
400
|
display: none;
|
|
394
401
|
}
|
|
@@ -738,7 +745,7 @@ ejs-multiselect {
|
|
|
738
745
|
|
|
739
746
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
740
747
|
height: 22px;
|
|
741
|
-
width:
|
|
748
|
+
width: auto;
|
|
742
749
|
}
|
|
743
750
|
|
|
744
751
|
.e-small .e-multi-select-wrapper {
|
|
@@ -757,7 +764,7 @@ ejs-multiselect {
|
|
|
757
764
|
|
|
758
765
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
759
766
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
760
|
-
margin-top: -
|
|
767
|
+
margin-top: -3em;
|
|
761
768
|
}
|
|
762
769
|
|
|
763
770
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -767,7 +774,7 @@ ejs-multiselect {
|
|
|
767
774
|
|
|
768
775
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
769
776
|
height: 26px;
|
|
770
|
-
width:
|
|
777
|
+
width: auto;
|
|
771
778
|
}
|
|
772
779
|
|
|
773
780
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -1021,6 +1028,20 @@ ejs-multiselect {
|
|
|
1021
1028
|
display: none;
|
|
1022
1029
|
}
|
|
1023
1030
|
|
|
1031
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1032
|
+
margin-right: 0;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1036
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1037
|
+
cursor: not-allowed;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1041
|
+
.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 {
|
|
1042
|
+
cursor: pointer;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1024
1045
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1025
1046
|
color: #fff;
|
|
1026
1047
|
}
|
|
@@ -1037,6 +1058,7 @@ ejs-multiselect {
|
|
|
1037
1058
|
box-sizing: border-box;
|
|
1038
1059
|
}
|
|
1039
1060
|
|
|
1061
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1040
1062
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1041
1063
|
-webkit-text-fill-color: #dadada;
|
|
1042
1064
|
color: #dadada;
|
|
@@ -1165,19 +1187,19 @@ ejs-multiselect {
|
|
|
1165
1187
|
border: 1px solid transparent;
|
|
1166
1188
|
}
|
|
1167
1189
|
|
|
1168
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1190
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1169
1191
|
color: #6f6c6c;
|
|
1170
1192
|
}
|
|
1171
1193
|
|
|
1172
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1194
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1173
1195
|
color: #6f6c6c;
|
|
1174
1196
|
}
|
|
1175
1197
|
|
|
1176
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1198
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1177
1199
|
color: #6f6c6c;
|
|
1178
1200
|
}
|
|
1179
1201
|
|
|
1180
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1202
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1181
1203
|
color: #6f6c6c;
|
|
1182
1204
|
}
|
|
1183
1205
|
|
|
@@ -1214,6 +1236,10 @@ ejs-multiselect {
|
|
|
1214
1236
|
left: 7px;
|
|
1215
1237
|
}
|
|
1216
1238
|
|
|
1239
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1240
|
+
left: -35px;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1217
1243
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1218
1244
|
height: 26px;
|
|
1219
1245
|
}
|
|
@@ -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);
|
|
@@ -54,7 +56,7 @@
|
|
|
54
56
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
55
57
|
content: "\e7a7";
|
|
56
58
|
cursor: pointer;
|
|
57
|
-
left:
|
|
59
|
+
left: 0;
|
|
58
60
|
position: relative;
|
|
59
61
|
top: 8px;
|
|
60
62
|
}
|
|
@@ -62,7 +64,7 @@
|
|
|
62
64
|
.e-multi-select-wrapper .e-close-hooker::before {
|
|
63
65
|
content: "\e7a7";
|
|
64
66
|
cursor: pointer;
|
|
65
|
-
left:
|
|
67
|
+
left: 0;
|
|
66
68
|
position: relative;
|
|
67
69
|
top: 10px;
|
|
68
70
|
}
|
|
@@ -309,8 +311,12 @@
|
|
|
309
311
|
float: right;
|
|
310
312
|
font-family: "e-icons";
|
|
311
313
|
height: 26px;
|
|
312
|
-
margin:
|
|
313
|
-
width:
|
|
314
|
+
margin: 8px 8px 8px 8px;
|
|
315
|
+
width: auto;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
319
|
+
margin: 8px 0 8px 20px;
|
|
314
320
|
}
|
|
315
321
|
|
|
316
322
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -325,7 +331,7 @@
|
|
|
325
331
|
position: absolute;
|
|
326
332
|
right: 0;
|
|
327
333
|
top: 100%;
|
|
328
|
-
width:
|
|
334
|
+
width: auto;
|
|
329
335
|
}
|
|
330
336
|
|
|
331
337
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -352,12 +358,12 @@
|
|
|
352
358
|
border: 0;
|
|
353
359
|
font-family: inherit;
|
|
354
360
|
font-size: 14px;
|
|
355
|
-
font-weight:
|
|
361
|
+
font-weight: normal;
|
|
356
362
|
height: 28px;
|
|
357
363
|
min-height: 28px;
|
|
358
364
|
outline: none;
|
|
359
|
-
padding: 0;
|
|
360
|
-
text-indent:
|
|
365
|
+
padding: 0 0 0 10px;
|
|
366
|
+
text-indent: 0;
|
|
361
367
|
}
|
|
362
368
|
|
|
363
369
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -366,7 +372,7 @@
|
|
|
366
372
|
color: inherit;
|
|
367
373
|
font-family: inherit;
|
|
368
374
|
font-size: 14px;
|
|
369
|
-
font-weight:
|
|
375
|
+
font-weight: normal;
|
|
370
376
|
height: 28px;
|
|
371
377
|
min-height: 28px;
|
|
372
378
|
outline: none;
|
|
@@ -389,6 +395,7 @@
|
|
|
389
395
|
min-height: 38px;
|
|
390
396
|
}
|
|
391
397
|
|
|
398
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
392
399
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
393
400
|
display: none;
|
|
394
401
|
}
|
|
@@ -738,7 +745,7 @@ ejs-multiselect {
|
|
|
738
745
|
|
|
739
746
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
740
747
|
height: 22px;
|
|
741
|
-
width:
|
|
748
|
+
width: auto;
|
|
742
749
|
}
|
|
743
750
|
|
|
744
751
|
.e-small .e-multi-select-wrapper {
|
|
@@ -757,7 +764,7 @@ ejs-multiselect {
|
|
|
757
764
|
|
|
758
765
|
.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
759
766
|
.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
760
|
-
margin-top: -
|
|
767
|
+
margin-top: -3em;
|
|
761
768
|
}
|
|
762
769
|
|
|
763
770
|
.e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
|
|
@@ -767,7 +774,7 @@ ejs-multiselect {
|
|
|
767
774
|
|
|
768
775
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
769
776
|
height: 26px;
|
|
770
|
-
width:
|
|
777
|
+
width: auto;
|
|
771
778
|
}
|
|
772
779
|
|
|
773
780
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -1021,6 +1028,20 @@ ejs-multiselect {
|
|
|
1021
1028
|
display: none;
|
|
1022
1029
|
}
|
|
1023
1030
|
|
|
1031
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1032
|
+
margin-right: 0;
|
|
1033
|
+
}
|
|
1034
|
+
|
|
1035
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1036
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1037
|
+
cursor: not-allowed;
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1041
|
+
.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 {
|
|
1042
|
+
cursor: pointer;
|
|
1043
|
+
}
|
|
1044
|
+
|
|
1024
1045
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1025
1046
|
color: #666;
|
|
1026
1047
|
}
|
|
@@ -1037,6 +1058,7 @@ ejs-multiselect {
|
|
|
1037
1058
|
box-sizing: border-box;
|
|
1038
1059
|
}
|
|
1039
1060
|
|
|
1061
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1040
1062
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1041
1063
|
-webkit-text-fill-color: #666;
|
|
1042
1064
|
color: #666;
|
|
@@ -1165,19 +1187,19 @@ ejs-multiselect {
|
|
|
1165
1187
|
border: 1px solid transparent;
|
|
1166
1188
|
}
|
|
1167
1189
|
|
|
1168
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1190
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1169
1191
|
color: #a6a6a6;
|
|
1170
1192
|
}
|
|
1171
1193
|
|
|
1172
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1194
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1173
1195
|
color: #a6a6a6;
|
|
1174
1196
|
}
|
|
1175
1197
|
|
|
1176
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1198
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1177
1199
|
color: #a6a6a6;
|
|
1178
1200
|
}
|
|
1179
1201
|
|
|
1180
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1202
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1181
1203
|
color: #a6a6a6;
|
|
1182
1204
|
}
|
|
1183
1205
|
|
|
@@ -1214,6 +1236,10 @@ ejs-multiselect {
|
|
|
1214
1236
|
left: 7px;
|
|
1215
1237
|
}
|
|
1216
1238
|
|
|
1239
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1240
|
+
left: -35px;
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1217
1243
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1218
1244
|
height: 26px;
|
|
1219
1245
|
}
|