@syncfusion/ej2-dropdowns 29.2.11-81740 → 29.2.11
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 +261 -0
- package/{ReadMe.md → README.md} +217 -217
- package/dist/ej2-dropdowns.min.js +10 -0
- package/dist/ej2-dropdowns.umd.min.js +10 -1
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +69 -80
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +226 -237
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +11 -0
- package/dist/global/ej2-dropdowns.min.js.map +1 -0
- package/dist/global/index.d.ts +14 -0
- package/helpers/e2e/autocomplete.d.ts +16 -0
- package/helpers/e2e/autocomplete.js +60 -0
- package/helpers/e2e/combobox.d.ts +17 -0
- package/helpers/e2e/combobox.js +63 -0
- package/helpers/e2e/dropdownlist.d.ts +20 -0
- package/helpers/e2e/dropdownlist.js +72 -0
- package/helpers/e2e/index.d.ts +4 -0
- package/helpers/e2e/index.js +11 -0
- package/helpers/e2e/listboxHelper.d.ts +22 -0
- package/helpers/e2e/listboxHelper.js +56 -0
- package/helpers/e2e/multiselect.d.ts +31 -0
- package/helpers/e2e/multiselect.js +105 -0
- package/license +2 -2
- package/package.json +36 -36
- package/src/auto-complete/auto-complete-model.d.ts +190 -190
- package/src/auto-complete/auto-complete.d.ts +12 -12
- package/src/auto-complete/auto-complete.js +21 -21
- package/src/combo-box/combo-box-model.d.ts +232 -232
- package/src/combo-box/combo-box.d.ts +26 -26
- package/src/combo-box/combo-box.js +29 -29
- package/src/common/incremental-search.js +1 -1
- package/src/common/virtual-scroll.js +46 -46
- package/src/drop-down-base/drop-down-base-model.d.ts +205 -205
- package/src/drop-down-base/drop-down-base.d.ts +15 -15
- package/src/drop-down-base/drop-down-base.js +20 -20
- package/src/drop-down-list/drop-down-list-model.d.ts +310 -310
- package/src/drop-down-list/drop-down-list.d.ts +5 -5
- package/src/drop-down-list/drop-down-list.js +21 -21
- package/src/drop-down-tree/drop-down-tree-model.d.ts +493 -493
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
- package/src/drop-down-tree/drop-down-tree.js +19 -19
- package/src/list-box/list-box-model.d.ts +237 -237
- package/src/list-box/list-box.d.ts +2 -2
- package/src/list-box/list-box.js +19 -19
- package/src/mention/mention-model.d.ts +272 -272
- package/src/mention/mention.d.ts +1 -1
- package/src/mention/mention.js +27 -29
- package/src/multi-select/multi-select-model.d.ts +564 -564
- package/src/multi-select/multi-select.d.ts +1 -1
- package/src/multi-select/multi-select.js +25 -34
- package/styles/auto-complete/_all.scss +1 -1
- package/styles/auto-complete/_bds-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
- package/styles/auto-complete/_bootstrap-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
- package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
- package/styles/auto-complete/_bootstrap5.3-definition.scss +2 -2
- package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
- package/styles/auto-complete/_fabric-definition.scss +2 -2
- package/styles/auto-complete/_fluent-definition.scss +2 -2
- package/styles/auto-complete/_fluent2-definition.scss +2 -2
- package/styles/auto-complete/_fusionnew-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-definition.scss +2 -2
- package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
- package/styles/auto-complete/_material-dark-definition.scss +2 -2
- package/styles/auto-complete/_material-definition.scss +2 -2
- package/styles/auto-complete/_material3-definition.scss +2 -2
- package/styles/auto-complete/_tailwind-definition.scss +2 -2
- package/styles/auto-complete/_tailwind3-definition.scss +2 -2
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/combo-box/_all.scss +1 -1
- package/styles/combo-box/_bds-definition.scss +2 -2
- package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
- package/styles/combo-box/_bootstrap-definition.scss +2 -2
- package/styles/combo-box/_bootstrap4-definition.scss +11 -11
- package/styles/combo-box/_bootstrap5-definition.scss +2 -2
- package/styles/combo-box/_bootstrap5.3-definition.scss +2 -2
- package/styles/combo-box/_fabric-dark-definition.scss +2 -2
- package/styles/combo-box/_fabric-definition.scss +2 -2
- package/styles/combo-box/_fluent-definition.scss +2 -2
- package/styles/combo-box/_fluent2-definition.scss +2 -2
- package/styles/combo-box/_fusionnew-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-definition.scss +2 -2
- package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
- package/styles/combo-box/_material-dark-definition.scss +2 -2
- package/styles/combo-box/_material-definition.scss +2 -2
- package/styles/combo-box/_material3-definition.scss +2 -2
- package/styles/combo-box/_tailwind-definition.scss +2 -2
- package/styles/combo-box/_tailwind3-definition.scss +2 -2
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/drop-down-base/_all.scss +2 -2
- package/styles/drop-down-base/_bds-definition.scss +112 -112
- package/styles/drop-down-base/_bigger.scss +198 -198
- package/styles/drop-down-base/_bootstrap-dark-definition.scss +80 -80
- package/styles/drop-down-base/_bootstrap-definition.scss +78 -78
- package/styles/drop-down-base/_bootstrap4-definition.scss +83 -83
- package/styles/drop-down-base/_bootstrap5-definition.scss +98 -98
- package/styles/drop-down-base/_bootstrap5.3-definition.scss +98 -98
- package/styles/drop-down-base/_definition.scss +23 -23
- package/styles/drop-down-base/_fabric-dark-definition.scss +81 -81
- package/styles/drop-down-base/_fabric-definition.scss +79 -79
- package/styles/drop-down-base/_fluent-definition.scss +102 -102
- package/styles/drop-down-base/_fluent2-definition.scss +113 -113
- package/styles/drop-down-base/_fusionnew-definition.scss +98 -98
- package/styles/drop-down-base/_highcontrast-definition.scss +96 -96
- package/styles/drop-down-base/_highcontrast-light-definition.scss +96 -96
- package/styles/drop-down-base/_layout.scss +148 -148
- package/styles/drop-down-base/_material-dark-definition.scss +82 -82
- package/styles/drop-down-base/_material-definition.scss +81 -81
- package/styles/drop-down-base/_material3-definition.scss +73 -73
- package/styles/drop-down-base/_tailwind-definition.scss +107 -107
- package/styles/drop-down-base/_tailwind3-definition.scss +98 -98
- package/styles/drop-down-base/_theme.scss +303 -303
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-list/_all.scss +3 -3
- package/styles/drop-down-list/_bds-definition.scss +100 -100
- package/styles/drop-down-list/_bigger.scss +713 -713
- package/styles/drop-down-list/_bootstrap-dark-definition.scss +94 -94
- package/styles/drop-down-list/_bootstrap-definition.scss +93 -93
- package/styles/drop-down-list/_bootstrap4-definition.scss +122 -122
- package/styles/drop-down-list/_bootstrap5-definition.scss +135 -135
- package/styles/drop-down-list/_bootstrap5.3-definition.scss +136 -136
- package/styles/drop-down-list/_fabric-dark-definition.scss +72 -72
- package/styles/drop-down-list/_fabric-definition.scss +69 -69
- package/styles/drop-down-list/_fluent-definition.scss +128 -128
- package/styles/drop-down-list/_fluent2-definition.scss +101 -101
- package/styles/drop-down-list/_fusionnew-definition.scss +134 -134
- package/styles/drop-down-list/_highcontrast-definition.scss +83 -83
- package/styles/drop-down-list/_highcontrast-light-definition.scss +85 -85
- package/styles/drop-down-list/_layout.scss +284 -284
- package/styles/drop-down-list/_material-dark-definition.scss +110 -110
- package/styles/drop-down-list/_material-definition.scss +112 -112
- package/styles/drop-down-list/_material3-definition.scss +114 -114
- package/styles/drop-down-list/_tailwind-definition.scss +100 -100
- package/styles/drop-down-list/_tailwind3-definition.scss +135 -135
- package/styles/drop-down-list/_theme.scss +17 -17
- package/styles/drop-down-list/icons/_bds.scss +14 -14
- package/styles/drop-down-list/icons/_bootstrap-dark.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap4.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap5.3.scss +18 -18
- package/styles/drop-down-list/icons/_bootstrap5.scss +18 -18
- package/styles/drop-down-list/icons/_fabric-dark.scss +18 -18
- package/styles/drop-down-list/icons/_fabric.scss +18 -18
- package/styles/drop-down-list/icons/_fluent.scss +18 -18
- package/styles/drop-down-list/icons/_fluent2.scss +18 -18
- package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
- package/styles/drop-down-list/icons/_highcontrast.scss +18 -18
- package/styles/drop-down-list/icons/_material-dark.scss +18 -18
- package/styles/drop-down-list/icons/_material.scss +18 -18
- package/styles/drop-down-list/icons/_material3.scss +18 -18
- package/styles/drop-down-list/icons/_tailwind.scss +18 -18
- package/styles/drop-down-list/icons/_tailwind3.scss +14 -14
- package/styles/drop-down-list/material3-dark.scss +1 -1
- package/styles/drop-down-list/material3.scss +1 -1
- package/styles/drop-down-tree/_all.scss +2 -2
- package/styles/drop-down-tree/_bds-definition.scss +74 -74
- package/styles/drop-down-tree/_bigger.scss +561 -561
- package/styles/drop-down-tree/_bootstrap-dark-definition.scss +81 -81
- package/styles/drop-down-tree/_bootstrap-definition.scss +81 -81
- package/styles/drop-down-tree/_bootstrap4-definition.scss +85 -85
- package/styles/drop-down-tree/_bootstrap5-definition.scss +73 -73
- package/styles/drop-down-tree/_bootstrap5.3-definition.scss +74 -74
- package/styles/drop-down-tree/_fabric-dark-definition.scss +81 -81
- package/styles/drop-down-tree/_fabric-definition.scss +81 -81
- package/styles/drop-down-tree/_fluent-definition.scss +78 -78
- package/styles/drop-down-tree/_fluent2-definition.scss +85 -85
- package/styles/drop-down-tree/_fusionnew-definition.scss +69 -69
- package/styles/drop-down-tree/_highcontrast-definition.scss +81 -81
- package/styles/drop-down-tree/_highcontrast-light-definition.scss +81 -81
- package/styles/drop-down-tree/_layout.scss +942 -942
- package/styles/drop-down-tree/_material-dark-definition.scss +82 -82
- package/styles/drop-down-tree/_material-definition.scss +84 -84
- package/styles/drop-down-tree/_material3-definition.scss +84 -84
- package/styles/drop-down-tree/_tailwind-definition.scss +74 -74
- package/styles/drop-down-tree/_tailwind3-definition.scss +75 -75
- package/styles/drop-down-tree/_theme.scss +135 -135
- package/styles/drop-down-tree/icons/_bds.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap5.3.scss +11 -11
- package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_fabric.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent.scss +11 -11
- package/styles/drop-down-tree/icons/_fluent2.scss +14 -14
- package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
- package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
- package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_material.scss +11 -11
- package/styles/drop-down-tree/icons/_material3.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
- package/styles/drop-down-tree/icons/_tailwind3.scss +11 -11
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/list-box/_all.scss +2 -2
- package/styles/list-box/_bds-definition.scss +136 -136
- package/styles/list-box/_bigger.scss +190 -190
- package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
- package/styles/list-box/_bootstrap-definition.scss +119 -119
- package/styles/list-box/_bootstrap4-definition.scss +126 -126
- package/styles/list-box/_bootstrap5-definition.scss +121 -121
- package/styles/list-box/_bootstrap5.3-definition.scss +123 -123
- package/styles/list-box/_fabric-dark-definition.scss +124 -124
- package/styles/list-box/_fabric-definition.scss +119 -119
- package/styles/list-box/_fluent-definition.scss +120 -120
- package/styles/list-box/_fluent2-definition.scss +121 -121
- package/styles/list-box/_fusionnew-definition.scss +111 -111
- package/styles/list-box/_highcontrast-definition.scss +119 -119
- package/styles/list-box/_highcontrast-light-definition.scss +124 -124
- package/styles/list-box/_layout.scss +496 -496
- package/styles/list-box/_material-dark-definition.scss +124 -124
- package/styles/list-box/_material-definition.scss +119 -119
- package/styles/list-box/_material3-definition.scss +119 -119
- package/styles/list-box/_tailwind-definition.scss +119 -119
- package/styles/list-box/_tailwind3-definition.scss +123 -123
- package/styles/list-box/_theme.scss +327 -327
- package/styles/list-box/icons/_bds.scss +25 -25
- package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
- package/styles/list-box/icons/_bootstrap.scss +25 -25
- package/styles/list-box/icons/_bootstrap4.scss +25 -25
- package/styles/list-box/icons/_bootstrap5.3.scss +25 -25
- package/styles/list-box/icons/_bootstrap5.scss +25 -25
- package/styles/list-box/icons/_fabric-dark.scss +25 -25
- package/styles/list-box/icons/_fabric.scss +25 -25
- package/styles/list-box/icons/_fluent.scss +25 -25
- package/styles/list-box/icons/_fluent2.scss +25 -25
- package/styles/list-box/icons/_fusionnew.scss +25 -25
- package/styles/list-box/icons/_highcontrast-light.scss +25 -25
- package/styles/list-box/icons/_highcontrast.scss +25 -25
- package/styles/list-box/icons/_material-dark.scss +25 -25
- package/styles/list-box/icons/_material.scss +25 -25
- package/styles/list-box/icons/_material3.scss +25 -25
- package/styles/list-box/icons/_tailwind-dark.scss +25 -25
- package/styles/list-box/icons/_tailwind.scss +25 -25
- package/styles/list-box/icons/_tailwind3.scss +25 -25
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.scss +1 -1
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.scss +1 -1
- package/styles/mention/_all.scss +1 -1
- package/styles/mention/_bds-definition.scss +1 -1
- package/styles/mention/_bootstrap-dark-definition.scss +3 -3
- package/styles/mention/_bootstrap-definition.scss +3 -3
- package/styles/mention/_bootstrap4-definition.scss +3 -3
- package/styles/mention/_bootstrap5-definition.scss +1 -1
- package/styles/mention/_bootstrap5.3-definition.scss +1 -1
- package/styles/mention/_fabric-dark-definition.scss +2 -2
- package/styles/mention/_fabric-definition.scss +3 -3
- package/styles/mention/_fluent-definition.scss +1 -1
- package/styles/mention/_fluent2-definition.scss +1 -1
- package/styles/mention/_fusionnew-definition.scss +1 -1
- package/styles/mention/_highcontrast-definition.scss +3 -3
- package/styles/mention/_highcontrast-light-definition.scss +3 -3
- package/styles/mention/_layout.scss +6 -6
- package/styles/mention/_material-dark-definition.scss +3 -3
- package/styles/mention/_material-definition.scss +3 -3
- package/styles/mention/_material3-definition.scss +1 -1
- package/styles/mention/_tailwind-definition.scss +1 -1
- package/styles/mention/_tailwind3-definition.scss +1 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/multi-select/_all.scss +2 -2
- package/styles/multi-select/_bds-definition.scss +231 -231
- package/styles/multi-select/_bigger.scss +2002 -2002
- package/styles/multi-select/_bootstrap-dark-definition.scss +198 -198
- package/styles/multi-select/_bootstrap-definition.scss +187 -187
- package/styles/multi-select/_bootstrap4-definition.scss +236 -236
- package/styles/multi-select/_bootstrap5-definition.scss +229 -229
- package/styles/multi-select/_bootstrap5.3-definition.scss +229 -229
- package/styles/multi-select/_fabric-dark-definition.scss +190 -190
- package/styles/multi-select/_fabric-definition.scss +181 -181
- package/styles/multi-select/_fluent-definition.scss +236 -236
- package/styles/multi-select/_fluent2-definition.scss +234 -234
- package/styles/multi-select/_fusionnew-definition.scss +222 -222
- package/styles/multi-select/_highcontrast-definition.scss +302 -302
- package/styles/multi-select/_highcontrast-light-definition.scss +296 -296
- package/styles/multi-select/_layout.scss +1335 -1335
- package/styles/multi-select/_material-dark-definition.scss +248 -248
- package/styles/multi-select/_material-definition.scss +250 -250
- package/styles/multi-select/_material3-definition.scss +233 -233
- package/styles/multi-select/_tailwind-definition.scss +231 -231
- package/styles/multi-select/_tailwind3-definition.scss +227 -227
- package/styles/multi-select/_theme.scss +564 -564
- package/styles/multi-select/icons/_bds.scss +26 -26
- package/styles/multi-select/icons/_bootstrap-dark.scss +30 -30
- package/styles/multi-select/icons/_bootstrap.scss +30 -30
- package/styles/multi-select/icons/_bootstrap4.scss +32 -32
- package/styles/multi-select/icons/_bootstrap5.3.scss +30 -30
- package/styles/multi-select/icons/_bootstrap5.scss +30 -30
- package/styles/multi-select/icons/_fabric-dark.scss +30 -30
- package/styles/multi-select/icons/_fabric.scss +30 -30
- package/styles/multi-select/icons/_fluent.scss +38 -38
- package/styles/multi-select/icons/_fluent2.scss +347 -347
- package/styles/multi-select/icons/_fusionnew.scss +26 -26
- package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
- package/styles/multi-select/icons/_highcontrast.scss +30 -30
- package/styles/multi-select/icons/_material-dark.scss +348 -348
- package/styles/multi-select/icons/_material.scss +348 -348
- package/styles/multi-select/icons/_material3.scss +350 -350
- package/styles/multi-select/icons/_tailwind.scss +30 -30
- package/styles/multi-select/icons/_tailwind3.scss +26 -26
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.scss +1 -1
- package/tslint.json +111 -0
|
@@ -1,190 +1,190 @@
|
|
|
1
|
-
@include export-module('listbox-bigger') {
|
|
2
|
-
.e-bigger .e-listbox-wrapper,
|
|
3
|
-
.e-listbox-wrapper.e-bigger,
|
|
4
|
-
.e-bigger .e-listbox-container,
|
|
5
|
-
.e-listbox-container.e-bigger {
|
|
6
|
-
@if ($skin-name == 'bootstrap4') {
|
|
7
|
-
font-size: 16px;
|
|
8
|
-
}
|
|
9
|
-
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark') {
|
|
10
|
-
border-radius: 6px;
|
|
11
|
-
}
|
|
12
|
-
@if $skin-name == 'tailwind3' {
|
|
13
|
-
border-radius: 8px;
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
&.e-listboxtool-container .e-list-wrap {
|
|
17
|
-
@if $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'tailwind' {
|
|
18
|
-
width: calc(100% - 20%) !important; /* stylelint-disable-line declaration-no-important */
|
|
19
|
-
}
|
|
20
|
-
@else if $skin-name == 'material' or $skin-name == 'bootstrap4' or $skin-name == 'bootstrap' {
|
|
21
|
-
width: calc(100% - 15%) !important; /* stylelint-disable-line declaration-no-important */
|
|
22
|
-
}
|
|
23
|
-
@else if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
24
|
-
width: calc(100% - 17%) !important; /* stylelint-disable-line declaration-no-important */
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
.e-list-item {
|
|
29
|
-
border-bottom: $listbox-border-bottom solid $listbox-border-bottom-color;
|
|
30
|
-
border-left: $listbox-border-left solid $listbox-border-left-color;
|
|
31
|
-
border-right: $listbox-border-right solid $listbox-border-right-color;
|
|
32
|
-
border-top: $listbox-border-top solid $listbox-border-top-color;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
&:not(.e-list-template) .e-list-item,
|
|
36
|
-
.e-selectall-parent,
|
|
37
|
-
.e-list-group-item,
|
|
38
|
-
.e-list-header {
|
|
39
|
-
padding: $listbox-bigger-item-padding;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
&:not(.e-list-template) .e-list-item,
|
|
43
|
-
.e-selectall-parent {
|
|
44
|
-
height: $listbox-touch-item-height;
|
|
45
|
-
line-height: $listbox-touch-item-line-height;
|
|
46
|
-
position: relative;
|
|
47
|
-
@if ($skin-name == 'bootstrap4') {
|
|
48
|
-
padding: 12px 20px;
|
|
49
|
-
}
|
|
50
|
-
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' or $skin-name == 'tailwind3') {
|
|
51
|
-
font-size: 16px;
|
|
52
|
-
}
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
.e-list-parent {
|
|
56
|
-
min-height: $listbox-touch-item-height;
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
.e-text-content {
|
|
60
|
-
font-size: $listbox-touch-item-font-size;
|
|
61
|
-
}
|
|
62
|
-
|
|
63
|
-
.e-list-group-item {
|
|
64
|
-
height: $listbox-touch-groupheader-height;
|
|
65
|
-
line-height: $listbox-touch-groupheader-line-height;
|
|
66
|
-
@if ($skin-name == 'bootstrap4') {
|
|
67
|
-
font-size: 16px;
|
|
68
|
-
padding: 12px 20px;
|
|
69
|
-
}
|
|
70
|
-
@if $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' {
|
|
71
|
-
padding: 9px 16px;
|
|
72
|
-
}
|
|
73
|
-
@if ($skin-name == 'tailwind3') {
|
|
74
|
-
font-size: 14px;
|
|
75
|
-
padding: 10px 16px;
|
|
76
|
-
}
|
|
77
|
-
}
|
|
78
|
-
|
|
79
|
-
.e-list-header {
|
|
80
|
-
align-items: center;
|
|
81
|
-
display: flex;
|
|
82
|
-
font-weight: $listbox-touch-header-font-weight;
|
|
83
|
-
height: $listbox-touch-header-height;
|
|
84
|
-
@if ($skin-name == 'bootstrap4') {
|
|
85
|
-
font-size: 20px;
|
|
86
|
-
line-height: 1.2;
|
|
87
|
-
padding: 0 0 0 20px;
|
|
88
|
-
}
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
.e-list-header .e-text.header,
|
|
92
|
-
.e-list-header .e-headertemplate-text.nested-header {
|
|
93
|
-
display: none;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
.e-list-header .e-text {
|
|
97
|
-
font-size: $listbox-touch-header-font-size;
|
|
98
|
-
}
|
|
99
|
-
|
|
100
|
-
.e-but-back {
|
|
101
|
-
@if ($skin-name == 'bootstrap4') {
|
|
102
|
-
margin-top: -3px;
|
|
103
|
-
padding-right: 12px;
|
|
104
|
-
}
|
|
105
|
-
}
|
|
106
|
-
|
|
107
|
-
.e-list-icon {
|
|
108
|
-
@if ($skin-name == 'bootstrap4') {
|
|
109
|
-
margin-right: 12px;
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
.e-icon-collapsible {
|
|
114
|
-
@if ($skin-name == 'bootstrap4') {
|
|
115
|
-
font-size: 12px;
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
.e-checkbox-wrapper {
|
|
120
|
-
@if ($skin-name == 'bootstrap4') {
|
|
121
|
-
margin: 0 12px 0 0;
|
|
122
|
-
}
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
&.e-rtl {
|
|
126
|
-
.e-checkbox-wrapper {
|
|
127
|
-
@if ($skin-name == 'bootstrap4') {
|
|
128
|
-
margin: 0 0 0 12px;
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
}
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
135
|
-
height: $listbox-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
136
|
-
}
|
|
137
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
138
|
-
height: $listbox-mat-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
139
|
-
}
|
|
140
|
-
|
|
141
|
-
.e-bigger .e-listbox-container.e-filter-list .e-list-parent,
|
|
142
|
-
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
143
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent,
|
|
144
|
-
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
145
|
-
height: 100%;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
149
|
-
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
150
|
-
height: $listbox-filterselect-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
151
|
-
}
|
|
152
|
-
|
|
153
|
-
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
154
|
-
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
155
|
-
height: $listbox-select-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
159
|
-
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
160
|
-
height: $listbox-filter-bigger-small-height !important; /* stylelint-disable-line declaration-no-important */
|
|
161
|
-
}
|
|
162
|
-
|
|
163
|
-
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
164
|
-
height: $listbox-ej2-filterselect-bigger-height !important;/* stylelint-disable-line declaration-no-important */
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
.e-bigger.e-listbox-wrapper,
|
|
168
|
-
.e-bigger.e-listbox-container {
|
|
169
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
|
|
170
|
-
font-size: $listbox-touch-item-font-size;
|
|
171
|
-
}
|
|
172
|
-
|
|
173
|
-
& .e-list-header,
|
|
174
|
-
& .e-list-group-item {
|
|
175
|
-
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
|
|
176
|
-
font-size: $listbox-touch-header-font-size;
|
|
177
|
-
}
|
|
178
|
-
}
|
|
179
|
-
}
|
|
180
|
-
|
|
181
|
-
@if $skin-name == 'tailwind3' {
|
|
182
|
-
.e-bigger .e-listboxtool-wrapper .e-listbox-tool .e-btn-icon {
|
|
183
|
-
font-size: 18px;
|
|
184
|
-
}
|
|
185
|
-
|
|
186
|
-
.e-bigger .e-listbox-wrapper .e-filter-parent {
|
|
187
|
-
padding: 12px;
|
|
188
|
-
}
|
|
189
|
-
}
|
|
190
|
-
}
|
|
1
|
+
@include export-module('listbox-bigger') {
|
|
2
|
+
.e-bigger .e-listbox-wrapper,
|
|
3
|
+
.e-listbox-wrapper.e-bigger,
|
|
4
|
+
.e-bigger .e-listbox-container,
|
|
5
|
+
.e-listbox-container.e-bigger {
|
|
6
|
+
@if ($skin-name == 'bootstrap4') {
|
|
7
|
+
font-size: 16px;
|
|
8
|
+
}
|
|
9
|
+
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark') {
|
|
10
|
+
border-radius: 6px;
|
|
11
|
+
}
|
|
12
|
+
@if $skin-name == 'tailwind3' {
|
|
13
|
+
border-radius: 8px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.e-listboxtool-container .e-list-wrap {
|
|
17
|
+
@if $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' or $skin-name == 'bootstrap5.3' or $skin-name == 'tailwind' {
|
|
18
|
+
width: calc(100% - 20%) !important; /* stylelint-disable-line declaration-no-important */
|
|
19
|
+
}
|
|
20
|
+
@else if $skin-name == 'material' or $skin-name == 'bootstrap4' or $skin-name == 'bootstrap' {
|
|
21
|
+
width: calc(100% - 15%) !important; /* stylelint-disable-line declaration-no-important */
|
|
22
|
+
}
|
|
23
|
+
@else if $skin-name == 'fabric' or $skin-name == 'highcontrast' {
|
|
24
|
+
width: calc(100% - 17%) !important; /* stylelint-disable-line declaration-no-important */
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
.e-list-item {
|
|
29
|
+
border-bottom: $listbox-border-bottom solid $listbox-border-bottom-color;
|
|
30
|
+
border-left: $listbox-border-left solid $listbox-border-left-color;
|
|
31
|
+
border-right: $listbox-border-right solid $listbox-border-right-color;
|
|
32
|
+
border-top: $listbox-border-top solid $listbox-border-top-color;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
&:not(.e-list-template) .e-list-item,
|
|
36
|
+
.e-selectall-parent,
|
|
37
|
+
.e-list-group-item,
|
|
38
|
+
.e-list-header {
|
|
39
|
+
padding: $listbox-bigger-item-padding;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
&:not(.e-list-template) .e-list-item,
|
|
43
|
+
.e-selectall-parent {
|
|
44
|
+
height: $listbox-touch-item-height;
|
|
45
|
+
line-height: $listbox-touch-item-line-height;
|
|
46
|
+
position: relative;
|
|
47
|
+
@if ($skin-name == 'bootstrap4') {
|
|
48
|
+
padding: 12px 20px;
|
|
49
|
+
}
|
|
50
|
+
@if ($theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' or $skin-name == 'tailwind3') {
|
|
51
|
+
font-size: 16px;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
.e-list-parent {
|
|
56
|
+
min-height: $listbox-touch-item-height;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.e-text-content {
|
|
60
|
+
font-size: $listbox-touch-item-font-size;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
.e-list-group-item {
|
|
64
|
+
height: $listbox-touch-groupheader-height;
|
|
65
|
+
line-height: $listbox-touch-groupheader-line-height;
|
|
66
|
+
@if ($skin-name == 'bootstrap4') {
|
|
67
|
+
font-size: 16px;
|
|
68
|
+
padding: 12px 20px;
|
|
69
|
+
}
|
|
70
|
+
@if $theme-name == 'bootstrap5.3' or $theme-name == 'bootstrap5.3-dark' {
|
|
71
|
+
padding: 9px 16px;
|
|
72
|
+
}
|
|
73
|
+
@if ($skin-name == 'tailwind3') {
|
|
74
|
+
font-size: 14px;
|
|
75
|
+
padding: 10px 16px;
|
|
76
|
+
}
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.e-list-header {
|
|
80
|
+
align-items: center;
|
|
81
|
+
display: flex;
|
|
82
|
+
font-weight: $listbox-touch-header-font-weight;
|
|
83
|
+
height: $listbox-touch-header-height;
|
|
84
|
+
@if ($skin-name == 'bootstrap4') {
|
|
85
|
+
font-size: 20px;
|
|
86
|
+
line-height: 1.2;
|
|
87
|
+
padding: 0 0 0 20px;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.e-list-header .e-text.header,
|
|
92
|
+
.e-list-header .e-headertemplate-text.nested-header {
|
|
93
|
+
display: none;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
.e-list-header .e-text {
|
|
97
|
+
font-size: $listbox-touch-header-font-size;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.e-but-back {
|
|
101
|
+
@if ($skin-name == 'bootstrap4') {
|
|
102
|
+
margin-top: -3px;
|
|
103
|
+
padding-right: 12px;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-list-icon {
|
|
108
|
+
@if ($skin-name == 'bootstrap4') {
|
|
109
|
+
margin-right: 12px;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.e-icon-collapsible {
|
|
114
|
+
@if ($skin-name == 'bootstrap4') {
|
|
115
|
+
font-size: 12px;
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-checkbox-wrapper {
|
|
120
|
+
@if ($skin-name == 'bootstrap4') {
|
|
121
|
+
margin: 0 12px 0 0;
|
|
122
|
+
}
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
&.e-rtl {
|
|
126
|
+
.e-checkbox-wrapper {
|
|
127
|
+
@if ($skin-name == 'bootstrap4') {
|
|
128
|
+
margin: 0 0 0 12px;
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
135
|
+
height: $listbox-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
136
|
+
}
|
|
137
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
138
|
+
height: $listbox-mat-filter-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-parent,
|
|
142
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent,
|
|
143
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent,
|
|
144
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
145
|
+
height: 100%;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
149
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
150
|
+
height: $listbox-filterselect-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
151
|
+
}
|
|
152
|
+
|
|
153
|
+
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
154
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
155
|
+
height: $listbox-select-bigger-height !important; /* stylelint-disable-line declaration-no-important */
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
159
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
160
|
+
height: $listbox-filter-bigger-small-height !important; /* stylelint-disable-line declaration-no-important */
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
164
|
+
height: $listbox-ej2-filterselect-bigger-height !important;/* stylelint-disable-line declaration-no-important */
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-bigger.e-listbox-wrapper,
|
|
168
|
+
.e-bigger.e-listbox-container {
|
|
169
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
|
|
170
|
+
font-size: $listbox-touch-item-font-size;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
& .e-list-header,
|
|
174
|
+
& .e-list-group-item {
|
|
175
|
+
@if ($skin-name == 'tailwind' or $skin-name == 'tailwind-dark') {
|
|
176
|
+
font-size: $listbox-touch-header-font-size;
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
@if $skin-name == 'tailwind3' {
|
|
182
|
+
.e-bigger .e-listboxtool-wrapper .e-listbox-tool .e-btn-icon {
|
|
183
|
+
font-size: 18px;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.e-bigger .e-listbox-wrapper .e-filter-parent {
|
|
187
|
+
padding: 12px;
|
|
188
|
+
}
|
|
189
|
+
}
|
|
190
|
+
}
|
|
@@ -1,126 +1,126 @@
|
|
|
1
|
-
@use 'sass:color';
|
|
2
|
-
|
|
3
|
-
//default
|
|
4
|
-
$listbox-font-family: $font-family !default;
|
|
5
|
-
$listbox-text-color: rgba($grey-dark-font, 1) !default;
|
|
6
|
-
$listbox-text-disabled: $grey-light-font !default;
|
|
7
|
-
$listbox-icon-color: $grey-dark-font !default;
|
|
8
|
-
$listbox-icon-disabled: rgba($grey-dark-font, .5) !default;
|
|
9
|
-
$listbox-icon-margin-right: 10px !default;
|
|
10
|
-
$listbox-icon-back-margin: -2px !default;
|
|
11
|
-
$listbox-rtl-icon-back-margin: -1px !default;
|
|
12
|
-
$listbox-icon-line-height: 34px !default;
|
|
13
|
-
$listbox-icon-collapsible: '\e943' !default;
|
|
14
|
-
$listbox-icon-collapsible-rtl: '\e981' !default;
|
|
15
|
-
$listbox-icon-back-rtl: '\e85f' !default;
|
|
16
|
-
$listbox-back-icon: '\e94b' !default;
|
|
17
|
-
$listbox-background: $grey-base !default;
|
|
18
|
-
$listbox-line-color: rgba($grey-base, .1) !default;
|
|
19
|
-
$listbox-item-hover-bg: $grey !default;
|
|
20
|
-
$listbox-item-height: 40px !default;
|
|
21
|
-
$listbox-item-line-height: 1 !default;
|
|
22
|
-
$listbox-item-padding: 13px 16px !default;
|
|
23
|
-
$listbox-bigger-item-padding: 12px 16px !default;
|
|
24
|
-
$checkmark-bgcolor: $grey-base !default;
|
|
25
|
-
$checkmark-border-color: $grey-dark-font !default;
|
|
26
|
-
$checkmark-color: $grey-dark-font !default;
|
|
27
|
-
$listbox-border-bottom: 1px !default;
|
|
28
|
-
$listbox-border-top: 0 !default;
|
|
29
|
-
$listbox-border-left: 0 !default;
|
|
30
|
-
$listbox-border-right: 0 !default;
|
|
31
|
-
$listbox-hover-border-color: transparent !default;
|
|
32
|
-
$listbox-border-bottom-color: rgba($grey-44, 1) !default;
|
|
33
|
-
$listbox-border-top-color: transparent !default;
|
|
34
|
-
$listbox-border-right-color: transparent !default;
|
|
35
|
-
$listbox-border-left-color: transparent !default;
|
|
36
|
-
$listbox-group-first-border-bottom: 1px !default;
|
|
37
|
-
$listbox-group-border-top: 0 !default;
|
|
38
|
-
$listbox-group-border-bottom: 1px !default;
|
|
39
|
-
$listbox-text-hover-color: rgba($grey-light-font, .87) !default;
|
|
40
|
-
$listbox-item-active-bg: $grey-44 !default;
|
|
41
|
-
$listbox-text-active-color: rgba($grey-light-font, .87) !default;
|
|
42
|
-
$listbox-header-text-color: rgba($grey-light-font, .95) !default;
|
|
43
|
-
$listbox-header-text-disabled: $grey-light-font !default;
|
|
44
|
-
$listbox-header-text-padding: 20px !default;
|
|
45
|
-
$listbox-header-bg: $grey-white !default;
|
|
46
|
-
$listbox-header-icon-color: $grey-light-font !default;
|
|
47
|
-
$listbox-header-icon-disabled: $grey-light-font !default;
|
|
48
|
-
$listbox-header-border: $grey-44 !default;
|
|
49
|
-
$listbox-header-font-size: 14px !default;
|
|
50
|
-
$listbox-header-height: 40px !default;
|
|
51
|
-
$listbox-header-font-weight: bold !default;
|
|
52
|
-
$listbox-header-line-height: 1px !default;
|
|
53
|
-
$listbox-header-padding-bottom: 4px !default;
|
|
54
|
-
$listbox-groupheader-text-color: color.adjust($brand-primary, $lightness: 15%) !default;
|
|
55
|
-
$listbox-groupheader-bg: $grey-base !default;
|
|
56
|
-
$listbox-groupheader-border: $grey-44 !default;
|
|
57
|
-
$listbox-groupheader-icon: $grey-dark-font !default;
|
|
58
|
-
$listbox-groupheader-item-height: 40px !default;
|
|
59
|
-
$listbox-groupheader-item-line-height: 36px !default;
|
|
60
|
-
$listbox-groupheader-font-size: 14px !default;
|
|
61
|
-
$listbox-border-size: 0 !default;
|
|
62
|
-
$listbox-font-size: 14px !default;
|
|
63
|
-
$listbox-back-padding-right: 10px !default;
|
|
64
|
-
$listbox-touch-item-height: 48px !default;
|
|
65
|
-
$listbox-touch-item-line-height: 1.6 !default;
|
|
66
|
-
$listbox-touch-item-font-size: 15px !default;
|
|
67
|
-
$listbox-touch-groupheader-height: 48px !default;
|
|
68
|
-
$listbox-touch-groupheader-line-height: 45px !default;
|
|
69
|
-
$listbox-touch-header-height: 48px !default;
|
|
70
|
-
$listbox-touch-header-font-weight: bold !default;
|
|
71
|
-
$listbox-touch-back-icon-padding: 2px !default;
|
|
72
|
-
$listbox-touch-header-font-size: 15px !default;
|
|
73
|
-
$listbox-touch-header-line-height: 6px !default;
|
|
74
|
-
$listbox-touch-header-icon-margin-top: 2px !default;
|
|
75
|
-
$listbox-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
76
|
-
$listbox-checkbox-right-margin: -4px 0 0 10px !default;
|
|
77
|
-
$listbox-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
78
|
-
$listbox-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
79
|
-
|
|
80
|
-
//ListView In-built template variables
|
|
81
|
-
$listbox-template-padding: .7142em 1.0714em !default;
|
|
82
|
-
$listbox-template-avatar-padding-right: 1.0714em !default;
|
|
83
|
-
$listbox-template-avatar-padding-left: 4.6428em !default;
|
|
84
|
-
$listbox-template-avatar-rightposition-padding-right: 4.6428em !default;
|
|
85
|
-
$listbox-template-avatar-rightposition-padding-left: 1.0714em !default;
|
|
86
|
-
$listbox-template-avatar-size: 2.8571em !default;
|
|
87
|
-
$listbox-template-avatar-top: .7142em !default;
|
|
88
|
-
$listbox-template-avatar-left: 1.0667em !default;
|
|
89
|
-
$listbox-template-avatar-rightposition-right: 1.0667em !default;
|
|
90
|
-
$listbox-template-badge-height: 1.333em !default;
|
|
91
|
-
$listbox-template-badge-width: 2em !default;
|
|
92
|
-
$listbox-template-badge-line-height: 1.433em !default;
|
|
93
|
-
$listbox-template-badge-font-size: 15px !default;
|
|
94
|
-
$listbox-template-badge-right: 1em !default;
|
|
95
|
-
$listbox-template-avatar-badge-padding-right: 3.9285em !default;
|
|
96
|
-
$listbox-template-avatar-badge-padding-left: 4.6428em !default;
|
|
97
|
-
$listbox-template-badgewithoutavatar-padding-right: 3.9285em !default;
|
|
98
|
-
$listbox-template-badgewithoutavatar-padding-left: 1.0714em !default;
|
|
99
|
-
$listbox-template-item-padding: .83em 0 !default;
|
|
100
|
-
$listbox-template-multiline-header-color: $grey-light-font !default;
|
|
101
|
-
$listbox-template-multiline-content-color: $grey-light !default;
|
|
102
|
-
$listbox-template-multiline-header-padding: .038em 0 !default;
|
|
103
|
-
$listbox-template-multiline-content-padding: .038em 0 !default;
|
|
104
|
-
$listbox-template-multiline-header-font-size: 18px !default;
|
|
105
|
-
$listbox-template-multiline-padding: .7142em 1.0714em !default;
|
|
106
|
-
$listbox-template-multiline-content-font-size: 14px !default;
|
|
107
|
-
$listbox-template-multiline-avatar-top: .7142em !default;
|
|
108
|
-
|
|
109
|
-
$listbox-border-color: $grey-88;
|
|
110
|
-
$badge-color: $brand-primary-font !default;
|
|
111
|
-
$badge-bgcolor: $brand-primary !default;
|
|
112
|
-
|
|
113
|
-
$select-all-border-color: $grey-88 !default;
|
|
114
|
-
|
|
115
|
-
$listbox-filter-small-height: calc(100% - 46px) !default;
|
|
116
|
-
$listbox-filter-bigger-small-height: calc(100% - 54px) !default;
|
|
117
|
-
$listbox-select-height: calc(100% - 40px) !default;
|
|
118
|
-
$listbox-select-bigger-height: calc(100% - 48px) !default;
|
|
119
|
-
$listbox-filterselect-height: calc(100% - 40px) !default;
|
|
120
|
-
$listbox-filterselect-bigger-height: calc(100% - 48px) !default;
|
|
121
|
-
$listbox-mat-filter-height: calc(100% - 51px) !default;
|
|
122
|
-
$listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
|
|
123
|
-
$listbox-filter-height: calc(100% - 52px) !default;
|
|
124
|
-
$listbox-filter-bigger-height: calc(100% - 58px) !default;
|
|
125
|
-
$listbox-ej2-filterselect-height: calc(100% - 91.5px) !default;
|
|
126
|
-
$listbox-ej2-filterselect-bigger-height: calc(100% - 106px) !default;
|
|
1
|
+
@use 'sass:color';
|
|
2
|
+
|
|
3
|
+
//default
|
|
4
|
+
$listbox-font-family: $font-family !default;
|
|
5
|
+
$listbox-text-color: rgba($grey-dark-font, 1) !default;
|
|
6
|
+
$listbox-text-disabled: $grey-light-font !default;
|
|
7
|
+
$listbox-icon-color: $grey-dark-font !default;
|
|
8
|
+
$listbox-icon-disabled: rgba($grey-dark-font, .5) !default;
|
|
9
|
+
$listbox-icon-margin-right: 10px !default;
|
|
10
|
+
$listbox-icon-back-margin: -2px !default;
|
|
11
|
+
$listbox-rtl-icon-back-margin: -1px !default;
|
|
12
|
+
$listbox-icon-line-height: 34px !default;
|
|
13
|
+
$listbox-icon-collapsible: '\e943' !default;
|
|
14
|
+
$listbox-icon-collapsible-rtl: '\e981' !default;
|
|
15
|
+
$listbox-icon-back-rtl: '\e85f' !default;
|
|
16
|
+
$listbox-back-icon: '\e94b' !default;
|
|
17
|
+
$listbox-background: $grey-base !default;
|
|
18
|
+
$listbox-line-color: rgba($grey-base, .1) !default;
|
|
19
|
+
$listbox-item-hover-bg: $grey !default;
|
|
20
|
+
$listbox-item-height: 40px !default;
|
|
21
|
+
$listbox-item-line-height: 1 !default;
|
|
22
|
+
$listbox-item-padding: 13px 16px !default;
|
|
23
|
+
$listbox-bigger-item-padding: 12px 16px !default;
|
|
24
|
+
$checkmark-bgcolor: $grey-base !default;
|
|
25
|
+
$checkmark-border-color: $grey-dark-font !default;
|
|
26
|
+
$checkmark-color: $grey-dark-font !default;
|
|
27
|
+
$listbox-border-bottom: 1px !default;
|
|
28
|
+
$listbox-border-top: 0 !default;
|
|
29
|
+
$listbox-border-left: 0 !default;
|
|
30
|
+
$listbox-border-right: 0 !default;
|
|
31
|
+
$listbox-hover-border-color: transparent !default;
|
|
32
|
+
$listbox-border-bottom-color: rgba($grey-44, 1) !default;
|
|
33
|
+
$listbox-border-top-color: transparent !default;
|
|
34
|
+
$listbox-border-right-color: transparent !default;
|
|
35
|
+
$listbox-border-left-color: transparent !default;
|
|
36
|
+
$listbox-group-first-border-bottom: 1px !default;
|
|
37
|
+
$listbox-group-border-top: 0 !default;
|
|
38
|
+
$listbox-group-border-bottom: 1px !default;
|
|
39
|
+
$listbox-text-hover-color: rgba($grey-light-font, .87) !default;
|
|
40
|
+
$listbox-item-active-bg: $grey-44 !default;
|
|
41
|
+
$listbox-text-active-color: rgba($grey-light-font, .87) !default;
|
|
42
|
+
$listbox-header-text-color: rgba($grey-light-font, .95) !default;
|
|
43
|
+
$listbox-header-text-disabled: $grey-light-font !default;
|
|
44
|
+
$listbox-header-text-padding: 20px !default;
|
|
45
|
+
$listbox-header-bg: $grey-white !default;
|
|
46
|
+
$listbox-header-icon-color: $grey-light-font !default;
|
|
47
|
+
$listbox-header-icon-disabled: $grey-light-font !default;
|
|
48
|
+
$listbox-header-border: $grey-44 !default;
|
|
49
|
+
$listbox-header-font-size: 14px !default;
|
|
50
|
+
$listbox-header-height: 40px !default;
|
|
51
|
+
$listbox-header-font-weight: bold !default;
|
|
52
|
+
$listbox-header-line-height: 1px !default;
|
|
53
|
+
$listbox-header-padding-bottom: 4px !default;
|
|
54
|
+
$listbox-groupheader-text-color: color.adjust($brand-primary, $lightness: 15%) !default;
|
|
55
|
+
$listbox-groupheader-bg: $grey-base !default;
|
|
56
|
+
$listbox-groupheader-border: $grey-44 !default;
|
|
57
|
+
$listbox-groupheader-icon: $grey-dark-font !default;
|
|
58
|
+
$listbox-groupheader-item-height: 40px !default;
|
|
59
|
+
$listbox-groupheader-item-line-height: 36px !default;
|
|
60
|
+
$listbox-groupheader-font-size: 14px !default;
|
|
61
|
+
$listbox-border-size: 0 !default;
|
|
62
|
+
$listbox-font-size: 14px !default;
|
|
63
|
+
$listbox-back-padding-right: 10px !default;
|
|
64
|
+
$listbox-touch-item-height: 48px !default;
|
|
65
|
+
$listbox-touch-item-line-height: 1.6 !default;
|
|
66
|
+
$listbox-touch-item-font-size: 15px !default;
|
|
67
|
+
$listbox-touch-groupheader-height: 48px !default;
|
|
68
|
+
$listbox-touch-groupheader-line-height: 45px !default;
|
|
69
|
+
$listbox-touch-header-height: 48px !default;
|
|
70
|
+
$listbox-touch-header-font-weight: bold !default;
|
|
71
|
+
$listbox-touch-back-icon-padding: 2px !default;
|
|
72
|
+
$listbox-touch-header-font-size: 15px !default;
|
|
73
|
+
$listbox-touch-header-line-height: 6px !default;
|
|
74
|
+
$listbox-touch-header-icon-margin-top: 2px !default;
|
|
75
|
+
$listbox-checkbox-left-margin: -4px 10px 0 0 !default;
|
|
76
|
+
$listbox-checkbox-right-margin: -4px 0 0 10px !default;
|
|
77
|
+
$listbox-rtl-checkbox-left-margin: -4px 0 0 10px !default;
|
|
78
|
+
$listbox-rtl-checkbox-right-margin: -4px 10px 0 0 !default;
|
|
79
|
+
|
|
80
|
+
//ListView In-built template variables
|
|
81
|
+
$listbox-template-padding: .7142em 1.0714em !default;
|
|
82
|
+
$listbox-template-avatar-padding-right: 1.0714em !default;
|
|
83
|
+
$listbox-template-avatar-padding-left: 4.6428em !default;
|
|
84
|
+
$listbox-template-avatar-rightposition-padding-right: 4.6428em !default;
|
|
85
|
+
$listbox-template-avatar-rightposition-padding-left: 1.0714em !default;
|
|
86
|
+
$listbox-template-avatar-size: 2.8571em !default;
|
|
87
|
+
$listbox-template-avatar-top: .7142em !default;
|
|
88
|
+
$listbox-template-avatar-left: 1.0667em !default;
|
|
89
|
+
$listbox-template-avatar-rightposition-right: 1.0667em !default;
|
|
90
|
+
$listbox-template-badge-height: 1.333em !default;
|
|
91
|
+
$listbox-template-badge-width: 2em !default;
|
|
92
|
+
$listbox-template-badge-line-height: 1.433em !default;
|
|
93
|
+
$listbox-template-badge-font-size: 15px !default;
|
|
94
|
+
$listbox-template-badge-right: 1em !default;
|
|
95
|
+
$listbox-template-avatar-badge-padding-right: 3.9285em !default;
|
|
96
|
+
$listbox-template-avatar-badge-padding-left: 4.6428em !default;
|
|
97
|
+
$listbox-template-badgewithoutavatar-padding-right: 3.9285em !default;
|
|
98
|
+
$listbox-template-badgewithoutavatar-padding-left: 1.0714em !default;
|
|
99
|
+
$listbox-template-item-padding: .83em 0 !default;
|
|
100
|
+
$listbox-template-multiline-header-color: $grey-light-font !default;
|
|
101
|
+
$listbox-template-multiline-content-color: $grey-light !default;
|
|
102
|
+
$listbox-template-multiline-header-padding: .038em 0 !default;
|
|
103
|
+
$listbox-template-multiline-content-padding: .038em 0 !default;
|
|
104
|
+
$listbox-template-multiline-header-font-size: 18px !default;
|
|
105
|
+
$listbox-template-multiline-padding: .7142em 1.0714em !default;
|
|
106
|
+
$listbox-template-multiline-content-font-size: 14px !default;
|
|
107
|
+
$listbox-template-multiline-avatar-top: .7142em !default;
|
|
108
|
+
|
|
109
|
+
$listbox-border-color: $grey-88;
|
|
110
|
+
$badge-color: $brand-primary-font !default;
|
|
111
|
+
$badge-bgcolor: $brand-primary !default;
|
|
112
|
+
|
|
113
|
+
$select-all-border-color: $grey-88 !default;
|
|
114
|
+
|
|
115
|
+
$listbox-filter-small-height: calc(100% - 46px) !default;
|
|
116
|
+
$listbox-filter-bigger-small-height: calc(100% - 54px) !default;
|
|
117
|
+
$listbox-select-height: calc(100% - 40px) !default;
|
|
118
|
+
$listbox-select-bigger-height: calc(100% - 48px) !default;
|
|
119
|
+
$listbox-filterselect-height: calc(100% - 40px) !default;
|
|
120
|
+
$listbox-filterselect-bigger-height: calc(100% - 48px) !default;
|
|
121
|
+
$listbox-mat-filter-height: calc(100% - 51px) !default;
|
|
122
|
+
$listbox-mat-filter-bigger-height: calc(100% - 58px) !default;
|
|
123
|
+
$listbox-filter-height: calc(100% - 52px) !default;
|
|
124
|
+
$listbox-filter-bigger-height: calc(100% - 58px) !default;
|
|
125
|
+
$listbox-ej2-filterselect-height: calc(100% - 91.5px) !default;
|
|
126
|
+
$listbox-ej2-filterselect-bigger-height: calc(100% - 106px) !default;
|