@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
|
@@ -4,7 +4,7 @@ $ddl-delim-font-size: $text-sm !default;
|
|
|
4
4
|
$ddl-rtl-wrapper: 0 2px 0 32px !default;
|
|
5
5
|
$ddl-chip-mobile-bg: $primary !default;
|
|
6
6
|
$ddl-search-wrapper-width: calc(100% - 32px) !default;
|
|
7
|
-
$ddl-bigger-search-wrapper-width: calc(100% -
|
|
7
|
+
$ddl-bigger-search-wrapper-width: calc(100% - 50px) !default;
|
|
8
8
|
$ddl-bigger-small-search-wrapper-width: calc(100% - 32px) !default;
|
|
9
9
|
$ddl-small-search-wrapper-width: calc(100% - 30px) !default;
|
|
10
10
|
$ddl-popup-shadow-value: $shadow-lg !default;
|
|
@@ -19,8 +19,11 @@ $ddl-chip-padding: 0 4px 0 8px !default;
|
|
|
19
19
|
$ddl-chip-close-top: 0 !default;
|
|
20
20
|
$ddl-chip-close-left: 0 !default;
|
|
21
21
|
$ddl-chip-close-margin: 0 0 0 !default;
|
|
22
|
+
$ddl-chip-close-rtl-margin: 0 0 0 !default;
|
|
22
23
|
$ddl-chip-close-square: $text-base !default;
|
|
24
|
+
$ddl-chip-close-width: $text-base !default;
|
|
23
25
|
$ddl-chip-hooker-square: 28px !default;
|
|
26
|
+
$ddl-chip-hooker-width: 28px !default;
|
|
24
27
|
$ddl-chip-close-font: $text-base !default;
|
|
25
28
|
$ddl-chip-height: 22px !default;
|
|
26
29
|
$ddl-chip-mobile-height: 30px !default;
|
|
@@ -75,6 +78,7 @@ $ddl-sel-chip-close-mobile-left: 12px !default;
|
|
|
75
78
|
$ddl-chip-sel-mobile-close-height: 40px !default;
|
|
76
79
|
$ddl-chip-sel-mobile-close-margin: 0 0 0 0 !default;
|
|
77
80
|
$ddl-input-text-indent: 10px !default;
|
|
81
|
+
$ddl-input-placeholder-padding: 4px 0 4px 12px !default;
|
|
78
82
|
$ddl-rtl-chip-sel-close-left: -12px !default;
|
|
79
83
|
$ddl-popup-active-focus-border-width: 1px !default;
|
|
80
84
|
$ddl-popup-active-focus-shadow-item: none !default;
|
|
@@ -127,18 +131,22 @@ $ddl-small-clear-icon-width: 28px !default;
|
|
|
127
131
|
$ddl-bigger-small-clear-icon-height: 32px !default;
|
|
128
132
|
$ddl-bigger-small-clear-icon-width: 32px !default;
|
|
129
133
|
$ddl-bigger-chip-close-square: $text-xl !default;
|
|
134
|
+
$ddl-bigger-chip-close-width: $text-xl !default;
|
|
130
135
|
$ddl-bigger-chip-close-font: $text-xl !default;
|
|
136
|
+
|
|
131
137
|
// Small size
|
|
132
138
|
$ddl-select-all-height-small: 24px !default;
|
|
133
139
|
$ddl-small-chip-height: 18px !default;
|
|
134
140
|
$ddl-chip-small-font-size: 12px !default;
|
|
135
141
|
$ddl-small-chip-close-square: $text-sm !default;
|
|
142
|
+
$ddl-small-chip-close-width: $text-sm !default;
|
|
136
143
|
$ddl-small-chip-close-font: $text-sm !default;
|
|
137
144
|
$ddl-control-small-height: 24px !default;
|
|
138
145
|
$ddl-small-input-height: 24px !default;
|
|
139
146
|
$ddl-delim-small-font-size: 12px !default;
|
|
140
147
|
$ddl-small-closer-margin-top: -1.65em !default;
|
|
141
148
|
$ddl-chip-close-hooker-small-left: 6px !default;
|
|
149
|
+
$ddl-chip-close-hooker-small-bigger-left: 6px !default;
|
|
142
150
|
$ddl-delimviewheight-small: 24px !default;
|
|
143
151
|
$ddl-multiselect-filled-input-min-height-small: 32px !default;
|
|
144
152
|
$ddl-multiselect-filled-float-input-min-height-small: 22px !default;
|
|
@@ -154,6 +162,7 @@ $ddl-multiselect-filled-floatlabel-fontsize-bigger: 12px !default;
|
|
|
154
162
|
$ddl-select-all-height-bigger-small: 32px !default;
|
|
155
163
|
$ddl-bigger-small-chip-height: 26px !default;
|
|
156
164
|
$ddl-bigger-small-chip-close-square: $text-lg !default;
|
|
165
|
+
$ddl-bigger-small-chip-close-width: $text-lg !default;
|
|
157
166
|
$ddl-bigger-small-chip-close-font: $text-lg !default;
|
|
158
167
|
$ddl-control-bigger-small-height: 28px !default;
|
|
159
168
|
$ddl-bigger-small-input-height: 32px !default;
|
|
@@ -189,7 +198,6 @@ $ddl-delim-font-color: $content-text-color !default;
|
|
|
189
198
|
$ddl-close-icon-color: $icon-color !default;
|
|
190
199
|
$ddl-close-icon-hover-color: $icon-color-hover !default;
|
|
191
200
|
|
|
192
|
-
|
|
193
201
|
@include export-module('multiselect-tailwind') {
|
|
194
202
|
.e-multi-select-wrapper .e-chips-collection .e-chips .e-chips-close.e-icon::before {
|
|
195
203
|
line-height: 30px;
|
|
@@ -217,9 +225,8 @@ $ddl-close-icon-hover-color: $icon-color-hover !default;
|
|
|
217
225
|
width: $ddl-chip-hooker-square;
|
|
218
226
|
}
|
|
219
227
|
|
|
220
|
-
.e-multi-select-wrapper .e-searcher input[type='text'] {
|
|
228
|
+
.e-multi-select-wrapper .e-searcher input[type = 'text'] {
|
|
221
229
|
color: $content-text-color;
|
|
222
230
|
height: 100%;
|
|
223
231
|
}
|
|
224
232
|
}
|
|
225
|
-
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
2
2
|
color: $ddl-sel-chip-close;
|
|
3
3
|
}
|
|
4
4
|
|
|
@@ -14,19 +14,19 @@
|
|
|
14
14
|
box-sizing: border-box;
|
|
15
15
|
}
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
.e-multi-select-wrapper .e-chips
|
|
17
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
18
|
+
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
19
19
|
-webkit-text-fill-color: $ddl-chip-font-color;
|
|
20
20
|
color: $ddl-chip-font-color;
|
|
21
21
|
font-family: $ddl-chip-font-family;
|
|
22
22
|
font-size: $ddl-chip-font-size;
|
|
23
23
|
}
|
|
24
24
|
|
|
25
|
-
.e-multi-select-wrapper .e-chips.e-chip-selected
|
|
25
|
+
.e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent {
|
|
26
26
|
color: $ddl-sel-chip-font-color;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
-
.e-multi-select-wrapper .e-chips.e-chip-selected
|
|
29
|
+
.e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover {
|
|
30
30
|
color: $ddl-sel-chip-hover-font-color;
|
|
31
31
|
}
|
|
32
32
|
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
background-color: $ddl-chip-hover-bg-color;
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
.e-multi-select-wrapper .e-chips
|
|
43
|
+
.e-multi-select-wrapper .e-chips > .e-chipcontent:hover {
|
|
44
44
|
color: $ddl-chip-hover-font-color;
|
|
45
45
|
}
|
|
46
46
|
|
|
@@ -94,7 +94,6 @@
|
|
|
94
94
|
color: $ddl-multi-list-default-font-color;
|
|
95
95
|
}
|
|
96
96
|
|
|
97
|
-
|
|
98
97
|
#{&}.e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active,
|
|
99
98
|
#{&}.e-popup.e-multi-select-list-wrapper.e-checkbox .e-dropdownbase .e-list-item.e-active.e-hover {
|
|
100
99
|
@if $ddl-multiselect-skin-name == 'tailwind' {
|
|
@@ -203,23 +202,19 @@
|
|
|
203
202
|
border: $ddl-popup-normal-border-width solid transparent;
|
|
204
203
|
}
|
|
205
204
|
|
|
206
|
-
|
|
207
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
205
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
208
206
|
color: $ddl-input-placeholder;
|
|
209
207
|
}
|
|
210
208
|
|
|
211
|
-
|
|
212
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
209
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
213
210
|
color: $ddl-input-placeholder;
|
|
214
211
|
}
|
|
215
212
|
|
|
216
|
-
|
|
217
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
213
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
218
214
|
color: $ddl-input-placeholder;
|
|
219
215
|
}
|
|
220
216
|
|
|
221
|
-
|
|
222
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
217
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {/* stylelint-disable-line selector-no-vendor-prefix */
|
|
223
218
|
color: $ddl-input-placeholder;
|
|
224
219
|
}
|
|
225
220
|
|
|
@@ -300,7 +295,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
300
295
|
height: $ddl-small-chip-height;
|
|
301
296
|
}
|
|
302
297
|
|
|
303
|
-
.e-small .e-multi-select-wrapper .e-chips
|
|
298
|
+
.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
304
299
|
font-size: $ddl-chip-small-font-size;
|
|
305
300
|
}
|
|
306
301
|
|
|
@@ -316,6 +311,10 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
316
311
|
left: $ddl-chip-close-hooker-small-left;
|
|
317
312
|
}
|
|
318
313
|
|
|
314
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
315
|
+
left: $ddl-chip-close-hooker-small-bigger-left;
|
|
316
|
+
}
|
|
317
|
+
|
|
319
318
|
.e-small .e-multi-select-wrapper .e-down-icon .e-close-hooker::before {
|
|
320
319
|
@if $ddl-multiselect-skin-name == 'FluentUI' {
|
|
321
320
|
left: $ddl-small-down-icon-left;
|
|
@@ -327,7 +326,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
327
326
|
height: $ddl-bigger-small-chip-height;
|
|
328
327
|
}
|
|
329
328
|
|
|
330
|
-
.e-bigger.e-small .e-multi-select-wrapper .e-chips
|
|
329
|
+
.e-bigger.e-small .e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
331
330
|
font-size: $ddl-chip-bigger-small-font-size;
|
|
332
331
|
}
|
|
333
332
|
|
|
@@ -386,15 +385,15 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
|
|
|
386
385
|
}
|
|
387
386
|
}
|
|
388
387
|
|
|
389
|
-
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
390
|
-
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
388
|
+
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent,
|
|
389
|
+
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent {
|
|
391
390
|
@if $ddl-multiselect-skin-name == 'material' {
|
|
392
391
|
color: $ddl-chip-font-color;
|
|
393
392
|
}
|
|
394
393
|
}
|
|
395
394
|
|
|
396
|
-
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
397
|
-
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected
|
|
395
|
+
.e-multiselect.e-outline .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover,
|
|
396
|
+
.e-multiselect.e-filled .e-multi-select-wrapper .e-chips.e-chip-selected > .e-chipcontent:hover {
|
|
398
397
|
@if $ddl-multiselect-skin-name == 'material' {
|
|
399
398
|
color: $ddl-chip-font-color;
|
|
400
399
|
}
|
|
@@ -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);
|
|
@@ -320,6 +322,10 @@
|
|
|
320
322
|
width: 30px;
|
|
321
323
|
}
|
|
322
324
|
|
|
325
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
326
|
+
margin: 0 0 0;
|
|
327
|
+
}
|
|
328
|
+
|
|
323
329
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
324
330
|
margin: 1px 0 0;
|
|
325
331
|
}
|
|
@@ -359,12 +365,12 @@
|
|
|
359
365
|
border: 0;
|
|
360
366
|
font-family: inherit;
|
|
361
367
|
font-size: 15px;
|
|
362
|
-
font-weight:
|
|
368
|
+
font-weight: normal;
|
|
363
369
|
height: 32px;
|
|
364
370
|
min-height: 32px;
|
|
365
371
|
outline: none;
|
|
366
|
-
padding: 0;
|
|
367
|
-
text-indent:
|
|
372
|
+
padding: 0 0 0 12px;
|
|
373
|
+
text-indent: 0;
|
|
368
374
|
}
|
|
369
375
|
|
|
370
376
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -373,7 +379,7 @@
|
|
|
373
379
|
color: inherit;
|
|
374
380
|
font-family: inherit;
|
|
375
381
|
font-size: 14px;
|
|
376
|
-
font-weight:
|
|
382
|
+
font-weight: normal;
|
|
377
383
|
height: 32px;
|
|
378
384
|
min-height: 32px;
|
|
379
385
|
outline: none;
|
|
@@ -396,6 +402,7 @@
|
|
|
396
402
|
min-height: 38px;
|
|
397
403
|
}
|
|
398
404
|
|
|
405
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
399
406
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
400
407
|
display: none;
|
|
401
408
|
}
|
|
@@ -1020,6 +1027,20 @@ ejs-multiselect {
|
|
|
1020
1027
|
display: none;
|
|
1021
1028
|
}
|
|
1022
1029
|
|
|
1030
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1031
|
+
margin-right: 0;
|
|
1032
|
+
}
|
|
1033
|
+
|
|
1034
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1035
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1036
|
+
cursor: not-allowed;
|
|
1037
|
+
}
|
|
1038
|
+
|
|
1039
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1040
|
+
.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 {
|
|
1041
|
+
cursor: pointer;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1023
1044
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1024
1045
|
color: #f0f0f0;
|
|
1025
1046
|
}
|
|
@@ -1036,6 +1057,7 @@ ejs-multiselect {
|
|
|
1036
1057
|
box-sizing: border-box;
|
|
1037
1058
|
}
|
|
1038
1059
|
|
|
1060
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1039
1061
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1040
1062
|
-webkit-text-fill-color: #f0f0f0;
|
|
1041
1063
|
color: #f0f0f0;
|
|
@@ -1164,19 +1186,19 @@ ejs-multiselect {
|
|
|
1164
1186
|
border: 1px solid transparent;
|
|
1165
1187
|
}
|
|
1166
1188
|
|
|
1167
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1189
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1168
1190
|
color: #767676;
|
|
1169
1191
|
}
|
|
1170
1192
|
|
|
1171
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1193
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1172
1194
|
color: #767676;
|
|
1173
1195
|
}
|
|
1174
1196
|
|
|
1175
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1197
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1176
1198
|
color: #767676;
|
|
1177
1199
|
}
|
|
1178
1200
|
|
|
1179
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1201
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1180
1202
|
color: #767676;
|
|
1181
1203
|
}
|
|
1182
1204
|
|
|
@@ -1213,6 +1235,10 @@ ejs-multiselect {
|
|
|
1213
1235
|
left: 8px;
|
|
1214
1236
|
}
|
|
1215
1237
|
|
|
1238
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1239
|
+
left: 8px;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1216
1242
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1217
1243
|
height: 28px;
|
|
1218
1244
|
}
|
|
@@ -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);
|
|
@@ -318,6 +320,10 @@
|
|
|
318
320
|
width: 30px;
|
|
319
321
|
}
|
|
320
322
|
|
|
323
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
324
|
+
margin: 0 0 0;
|
|
325
|
+
}
|
|
326
|
+
|
|
321
327
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
322
328
|
margin: 1px 0 0;
|
|
323
329
|
}
|
|
@@ -357,12 +363,12 @@
|
|
|
357
363
|
border: 0;
|
|
358
364
|
font-family: inherit;
|
|
359
365
|
font-size: 15px;
|
|
360
|
-
font-weight:
|
|
366
|
+
font-weight: normal;
|
|
361
367
|
height: 32px;
|
|
362
368
|
min-height: 32px;
|
|
363
369
|
outline: none;
|
|
364
|
-
padding: 0;
|
|
365
|
-
text-indent:
|
|
370
|
+
padding: 0 0 0 12px;
|
|
371
|
+
text-indent: 0;
|
|
366
372
|
}
|
|
367
373
|
|
|
368
374
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -371,7 +377,7 @@
|
|
|
371
377
|
color: inherit;
|
|
372
378
|
font-family: inherit;
|
|
373
379
|
font-size: 14px;
|
|
374
|
-
font-weight:
|
|
380
|
+
font-weight: normal;
|
|
375
381
|
height: 32px;
|
|
376
382
|
min-height: 32px;
|
|
377
383
|
outline: none;
|
|
@@ -394,6 +400,7 @@
|
|
|
394
400
|
min-height: 38px;
|
|
395
401
|
}
|
|
396
402
|
|
|
403
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
397
404
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
398
405
|
display: none;
|
|
399
406
|
}
|
|
@@ -1018,6 +1025,20 @@ ejs-multiselect {
|
|
|
1018
1025
|
display: none;
|
|
1019
1026
|
}
|
|
1020
1027
|
|
|
1028
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1029
|
+
margin-right: 0;
|
|
1030
|
+
}
|
|
1031
|
+
|
|
1032
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1033
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1034
|
+
cursor: not-allowed;
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1038
|
+
.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 {
|
|
1039
|
+
cursor: pointer;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1021
1042
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1022
1043
|
color: #333;
|
|
1023
1044
|
}
|
|
@@ -1034,6 +1055,7 @@ ejs-multiselect {
|
|
|
1034
1055
|
box-sizing: border-box;
|
|
1035
1056
|
}
|
|
1036
1057
|
|
|
1058
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1037
1059
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1038
1060
|
-webkit-text-fill-color: #333;
|
|
1039
1061
|
color: #333;
|
|
@@ -1162,19 +1184,19 @@ ejs-multiselect {
|
|
|
1162
1184
|
border: 1px solid transparent;
|
|
1163
1185
|
}
|
|
1164
1186
|
|
|
1165
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1187
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1166
1188
|
color: #999;
|
|
1167
1189
|
}
|
|
1168
1190
|
|
|
1169
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1191
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1170
1192
|
color: #999;
|
|
1171
1193
|
}
|
|
1172
1194
|
|
|
1173
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1195
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1174
1196
|
color: #999;
|
|
1175
1197
|
}
|
|
1176
1198
|
|
|
1177
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1199
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1178
1200
|
color: #999;
|
|
1179
1201
|
}
|
|
1180
1202
|
|
|
@@ -1211,6 +1233,10 @@ ejs-multiselect {
|
|
|
1211
1233
|
left: 8px;
|
|
1212
1234
|
}
|
|
1213
1235
|
|
|
1236
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1237
|
+
left: 8px;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1214
1240
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1215
1241
|
height: 28px;
|
|
1216
1242
|
}
|
|
@@ -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);
|
|
@@ -67,7 +69,7 @@
|
|
|
67
69
|
|
|
68
70
|
.e-bigger .e-multi-select-wrapper .e-chips-close {
|
|
69
71
|
height: 30px;
|
|
70
|
-
width:
|
|
72
|
+
width: auto;
|
|
71
73
|
}
|
|
72
74
|
|
|
73
75
|
.e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus.e-hover {
|
|
@@ -130,7 +132,7 @@
|
|
|
130
132
|
.e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
131
133
|
content: "\e745";
|
|
132
134
|
cursor: pointer;
|
|
133
|
-
left:
|
|
135
|
+
left: 0;
|
|
134
136
|
position: relative;
|
|
135
137
|
top: 8px;
|
|
136
138
|
}
|
|
@@ -139,7 +141,7 @@
|
|
|
139
141
|
content: "\e745";
|
|
140
142
|
cursor: pointer;
|
|
141
143
|
height: 10px;
|
|
142
|
-
left:
|
|
144
|
+
left: 0;
|
|
143
145
|
position: relative;
|
|
144
146
|
top: 10px;
|
|
145
147
|
}
|
|
@@ -395,8 +397,12 @@
|
|
|
395
397
|
float: right;
|
|
396
398
|
font-family: "e-icons";
|
|
397
399
|
height: 24px;
|
|
398
|
-
margin:
|
|
399
|
-
width:
|
|
400
|
+
margin: 10px 10px 10px 0;
|
|
401
|
+
width: auto;
|
|
402
|
+
}
|
|
403
|
+
|
|
404
|
+
.e-rtl .e-multi-select-wrapper .e-chips-close {
|
|
405
|
+
margin: 8px 0 8px 20px;
|
|
400
406
|
}
|
|
401
407
|
|
|
402
408
|
.e-multi-select-wrapper .e-mob-chip.e-chips .e-chips-close {
|
|
@@ -411,7 +417,7 @@
|
|
|
411
417
|
position: absolute;
|
|
412
418
|
right: 0;
|
|
413
419
|
top: 100%;
|
|
414
|
-
width:
|
|
420
|
+
width: auto;
|
|
415
421
|
}
|
|
416
422
|
|
|
417
423
|
.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
|
|
@@ -444,12 +450,12 @@
|
|
|
444
450
|
border: 0;
|
|
445
451
|
font-family: inherit;
|
|
446
452
|
font-size: 14px;
|
|
447
|
-
font-weight:
|
|
453
|
+
font-weight: normal;
|
|
448
454
|
height: 29px;
|
|
449
455
|
min-height: 29px;
|
|
450
456
|
outline: none;
|
|
451
|
-
padding: 0;
|
|
452
|
-
text-indent:
|
|
457
|
+
padding: 0 0 0 8px;
|
|
458
|
+
text-indent: 0;
|
|
453
459
|
}
|
|
454
460
|
|
|
455
461
|
.e-multiselect.e-filled .e-multi-select-wrapper input[type=text] {
|
|
@@ -458,7 +464,7 @@
|
|
|
458
464
|
color: inherit;
|
|
459
465
|
font-family: inherit;
|
|
460
466
|
font-size: 14px;
|
|
461
|
-
font-weight:
|
|
467
|
+
font-weight: normal;
|
|
462
468
|
height: 29px;
|
|
463
469
|
min-height: 29px;
|
|
464
470
|
outline: none;
|
|
@@ -482,6 +488,7 @@
|
|
|
482
488
|
min-height: 36px;
|
|
483
489
|
}
|
|
484
490
|
|
|
491
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
485
492
|
.e-multi-select-wrapper input[type=text]::-ms-clear {
|
|
486
493
|
display: none;
|
|
487
494
|
}
|
|
@@ -827,7 +834,7 @@ ejs-multiselect {
|
|
|
827
834
|
|
|
828
835
|
.e-small .e-multi-select-wrapper .e-chips-close {
|
|
829
836
|
height: 18px;
|
|
830
|
-
width:
|
|
837
|
+
width: auto;
|
|
831
838
|
}
|
|
832
839
|
|
|
833
840
|
.e-small .e-multi-select-wrapper {
|
|
@@ -860,7 +867,8 @@ ejs-multiselect {
|
|
|
860
867
|
|
|
861
868
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close {
|
|
862
869
|
height: 24px;
|
|
863
|
-
width:
|
|
870
|
+
width: auto;
|
|
871
|
+
margin: 3px 10px 10px 0;
|
|
864
872
|
}
|
|
865
873
|
|
|
866
874
|
.e-bigger.e-small .e-multi-select-wrapper {
|
|
@@ -879,7 +887,7 @@ ejs-multiselect {
|
|
|
879
887
|
|
|
880
888
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips-close.e-close-hooker,
|
|
881
889
|
.e-bigger.e-small .e-multiselect.e-control-container .e-multi-select-wrapper .e-clear-icon {
|
|
882
|
-
margin-top: -2.
|
|
890
|
+
margin-top: -2.5em;
|
|
883
891
|
right: 0;
|
|
884
892
|
}
|
|
885
893
|
|
|
@@ -1118,6 +1126,20 @@ ejs-multiselect {
|
|
|
1118
1126
|
display: none;
|
|
1119
1127
|
}
|
|
1120
1128
|
|
|
1129
|
+
.e-multiselect.e-input-group.e-control-wrapper .e-input-group-icon {
|
|
1130
|
+
margin-right: 0;
|
|
1131
|
+
}
|
|
1132
|
+
|
|
1133
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-input-group-icon.e-ddl-icon.e-icons,
|
|
1134
|
+
.e-multiselect.e-control-container.e-input-group.e-disabled .e-clear-icon {
|
|
1135
|
+
cursor: not-allowed;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.e-multiselect.e-control-wrapper.e-control-container.e-input-group.e-checkbox .e-multi-select-wrapper.e-down-icon,
|
|
1139
|
+
.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 {
|
|
1140
|
+
cursor: pointer;
|
|
1141
|
+
}
|
|
1142
|
+
|
|
1121
1143
|
.e-multi-select-wrapper .e-chips.e-chip-selected .e-chips-close::before {
|
|
1122
1144
|
color: #fff;
|
|
1123
1145
|
}
|
|
@@ -1134,6 +1156,7 @@ ejs-multiselect {
|
|
|
1134
1156
|
box-sizing: border-box;
|
|
1135
1157
|
}
|
|
1136
1158
|
|
|
1159
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
1137
1160
|
.e-multi-select-wrapper .e-chips > .e-chipcontent {
|
|
1138
1161
|
-webkit-text-fill-color: #fff;
|
|
1139
1162
|
color: #fff;
|
|
@@ -1266,19 +1289,19 @@ ejs-multiselect {
|
|
|
1266
1289
|
border: 1px solid transparent;
|
|
1267
1290
|
}
|
|
1268
1291
|
|
|
1269
|
-
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder {
|
|
1292
|
+
.e-multi-select-wrapper input.e-dropdownbase:-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1270
1293
|
color: #6c757d;
|
|
1271
1294
|
}
|
|
1272
1295
|
|
|
1273
|
-
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder {
|
|
1296
|
+
.e-multi-select-wrapper input.e-dropdownbase::-moz-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1274
1297
|
color: #6c757d;
|
|
1275
1298
|
}
|
|
1276
1299
|
|
|
1277
|
-
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder {
|
|
1300
|
+
.e-multi-select-wrapper input.e-dropdownbase:-ms-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1278
1301
|
color: #6c757d;
|
|
1279
1302
|
}
|
|
1280
1303
|
|
|
1281
|
-
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder {
|
|
1304
|
+
.e-multi-select-wrapper input.e-dropdownbase::-webkit-input-placeholder { /* stylelint-disable-line selector-no-vendor-prefix */
|
|
1282
1305
|
color: #6c757d;
|
|
1283
1306
|
}
|
|
1284
1307
|
|
|
@@ -1322,7 +1345,7 @@ ejs-multiselect {
|
|
|
1322
1345
|
}
|
|
1323
1346
|
|
|
1324
1347
|
.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1325
|
-
left:
|
|
1348
|
+
left: 0;
|
|
1326
1349
|
top: 5px;
|
|
1327
1350
|
font-size: 8px;
|
|
1328
1351
|
}
|
|
@@ -1331,6 +1354,10 @@ ejs-multiselect {
|
|
|
1331
1354
|
left: 4px;
|
|
1332
1355
|
}
|
|
1333
1356
|
|
|
1357
|
+
.e-small.e-bigger .e-multi-select-wrapper .e-close-hooker::before {
|
|
1358
|
+
left: 4px;
|
|
1359
|
+
}
|
|
1360
|
+
|
|
1334
1361
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips {
|
|
1335
1362
|
height: 30px;
|
|
1336
1363
|
}
|
|
@@ -1340,7 +1367,7 @@ ejs-multiselect {
|
|
|
1340
1367
|
}
|
|
1341
1368
|
|
|
1342
1369
|
.e-bigger.e-small .e-multi-select-wrapper .e-chips .e-chips-close::before {
|
|
1343
|
-
left:
|
|
1370
|
+
left: 0;
|
|
1344
1371
|
top: 11px;
|
|
1345
1372
|
font-size: 10px;
|
|
1346
1373
|
}
|