@syncfusion/ej2-dropdowns 22.2.12 → 23.1.38
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 +260 -0
- package/CHANGELOG.md +4 -209
- package/dist/ej2-dropdowns.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js +3 -3
- package/dist/ej2-dropdowns.umd.min.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es2015.js +1149 -70
- package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
- package/dist/es6/ej2-dropdowns.es5.js +1203 -66
- package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
- package/dist/global/ej2-dropdowns.min.js +3 -3
- package/dist/global/ej2-dropdowns.min.js.map +1 -1
- package/dist/global/index.d.ts +2 -2
- package/package.json +13 -12
- package/src/auto-complete/auto-complete.js +40 -2
- package/src/combo-box/combo-box.js +9 -3
- package/src/common/index.d.ts +2 -0
- package/src/common/index.js +1 -0
- package/src/common/interface.d.ts +76 -0
- package/src/common/interface.js +1 -0
- package/src/common/virtual-scroll.d.ts +62 -0
- package/src/common/virtual-scroll.js +379 -0
- package/src/drop-down-base/drop-down-base.d.ts +10 -4
- package/src/drop-down-base/drop-down-base.js +72 -8
- package/src/drop-down-list/drop-down-list-model.d.ts +8 -1
- package/src/drop-down-list/drop-down-list.d.ts +56 -1
- package/src/drop-down-list/drop-down-list.js +661 -40
- package/src/drop-down-list/index.d.ts +1 -0
- package/src/drop-down-list/index.js +1 -0
- package/src/drop-down-tree/drop-down-tree.d.ts +1 -1
- package/src/global.js +3 -0
- package/src/mention/mention.js +8 -1
- package/src/multi-select/checkbox-selection.js +1 -1
- package/src/multi-select/multi-select.d.ts +1 -0
- package/src/multi-select/multi-select.js +36 -9
- package/styles/auto-complete/bootstrap-dark.scss +1 -1
- package/styles/auto-complete/bootstrap.scss +1 -1
- package/styles/auto-complete/bootstrap4.scss +1 -1
- package/styles/auto-complete/bootstrap5-dark.scss +1 -1
- package/styles/auto-complete/bootstrap5.scss +1 -1
- package/styles/auto-complete/fabric-dark.scss +1 -1
- package/styles/auto-complete/fabric.scss +1 -1
- package/styles/auto-complete/fluent-dark.scss +1 -1
- package/styles/auto-complete/fluent.scss +1 -1
- package/styles/auto-complete/highcontrast-light.scss +1 -1
- package/styles/auto-complete/highcontrast.scss +1 -1
- package/styles/auto-complete/material-dark.css +0 -1
- package/styles/auto-complete/material-dark.scss +1 -1
- package/styles/auto-complete/material.css +0 -1
- package/styles/auto-complete/material.scss +1 -1
- package/styles/auto-complete/material3-dark.css +0 -1
- package/styles/auto-complete/material3-dark.scss +1 -1
- package/styles/auto-complete/material3.css +0 -1
- package/styles/auto-complete/material3.scss +1 -1
- package/styles/auto-complete/tailwind-dark.css +0 -1
- package/styles/auto-complete/tailwind-dark.scss +1 -1
- package/styles/auto-complete/tailwind.css +0 -1
- package/styles/auto-complete/tailwind.scss +1 -1
- package/styles/bootstrap-dark.css +70 -15
- package/styles/bootstrap.css +70 -15
- package/styles/bootstrap4.css +71 -16
- package/styles/bootstrap5-dark.css +71 -16
- package/styles/bootstrap5.css +71 -16
- package/styles/combo-box/bootstrap-dark.scss +1 -1
- package/styles/combo-box/bootstrap.scss +1 -1
- package/styles/combo-box/bootstrap4.scss +1 -1
- package/styles/combo-box/bootstrap5-dark.scss +1 -1
- package/styles/combo-box/bootstrap5.scss +1 -1
- package/styles/combo-box/fabric-dark.scss +1 -1
- package/styles/combo-box/fabric.scss +1 -1
- package/styles/combo-box/fluent-dark.scss +1 -1
- package/styles/combo-box/fluent.scss +1 -1
- package/styles/combo-box/highcontrast-light.scss +1 -1
- package/styles/combo-box/highcontrast.scss +1 -1
- package/styles/combo-box/material-dark.css +0 -1
- package/styles/combo-box/material-dark.scss +1 -1
- package/styles/combo-box/material.css +0 -1
- package/styles/combo-box/material.scss +1 -1
- package/styles/combo-box/material3-dark.css +0 -1
- package/styles/combo-box/material3-dark.scss +1 -1
- package/styles/combo-box/material3.css +0 -1
- package/styles/combo-box/material3.scss +1 -1
- package/styles/combo-box/tailwind-dark.css +0 -1
- package/styles/combo-box/tailwind-dark.scss +1 -1
- package/styles/combo-box/tailwind.css +0 -1
- package/styles/combo-box/tailwind.scss +1 -1
- package/styles/drop-down-base/bootstrap-dark.scss +1 -1
- package/styles/drop-down-base/bootstrap.scss +1 -1
- package/styles/drop-down-base/bootstrap4.scss +1 -1
- package/styles/drop-down-base/bootstrap5-dark.scss +1 -1
- package/styles/drop-down-base/bootstrap5.scss +1 -1
- package/styles/drop-down-base/fabric-dark.scss +1 -1
- package/styles/drop-down-base/fabric.scss +1 -1
- package/styles/drop-down-base/fluent-dark.scss +1 -1
- package/styles/drop-down-base/fluent.scss +1 -1
- package/styles/drop-down-base/highcontrast-light.scss +1 -1
- package/styles/drop-down-base/highcontrast.scss +1 -1
- package/styles/drop-down-base/material-dark.css +0 -1
- package/styles/drop-down-base/material-dark.scss +1 -1
- package/styles/drop-down-base/material.css +0 -1
- package/styles/drop-down-base/material.scss +1 -1
- package/styles/drop-down-base/material3-dark.css +0 -1
- package/styles/drop-down-base/material3-dark.scss +1 -1
- package/styles/drop-down-base/material3.css +0 -1
- package/styles/drop-down-base/material3.scss +1 -1
- package/styles/drop-down-base/tailwind-dark.css +0 -1
- package/styles/drop-down-base/tailwind-dark.scss +1 -1
- package/styles/drop-down-base/tailwind.css +0 -1
- package/styles/drop-down-base/tailwind.scss +1 -1
- package/styles/drop-down-list/bootstrap-dark.scss +2 -1
- package/styles/drop-down-list/bootstrap.scss +2 -1
- package/styles/drop-down-list/bootstrap4.scss +2 -1
- package/styles/drop-down-list/bootstrap5-dark.scss +2 -1
- package/styles/drop-down-list/bootstrap5.scss +2 -1
- package/styles/drop-down-list/fabric-dark.scss +2 -1
- package/styles/drop-down-list/fabric.scss +2 -1
- package/styles/drop-down-list/fluent-dark.scss +2 -1
- package/styles/drop-down-list/fluent.scss +2 -1
- package/styles/drop-down-list/highcontrast-light.scss +2 -1
- package/styles/drop-down-list/highcontrast.scss +2 -1
- package/styles/drop-down-list/material-dark.css +0 -1
- package/styles/drop-down-list/material-dark.scss +2 -1
- package/styles/drop-down-list/material.css +0 -1
- package/styles/drop-down-list/material.scss +2 -1
- package/styles/drop-down-list/material3-dark.css +0 -1
- package/styles/drop-down-list/material3-dark.scss +2 -1
- package/styles/drop-down-list/material3.css +0 -1
- package/styles/drop-down-list/material3.scss +2 -1
- package/styles/drop-down-list/tailwind-dark.css +0 -1
- package/styles/drop-down-list/tailwind-dark.scss +2 -1
- package/styles/drop-down-list/tailwind.css +0 -1
- package/styles/drop-down-list/tailwind.scss +2 -1
- package/styles/drop-down-tree/bootstrap-dark.scss +1 -1
- package/styles/drop-down-tree/bootstrap.scss +1 -1
- package/styles/drop-down-tree/bootstrap4.scss +1 -1
- package/styles/drop-down-tree/bootstrap5-dark.scss +1 -1
- package/styles/drop-down-tree/bootstrap5.scss +1 -1
- package/styles/drop-down-tree/fabric-dark.scss +1 -1
- package/styles/drop-down-tree/fabric.scss +1 -1
- package/styles/drop-down-tree/fluent-dark.scss +1 -1
- package/styles/drop-down-tree/fluent.scss +1 -1
- package/styles/drop-down-tree/highcontrast-light.scss +1 -1
- package/styles/drop-down-tree/highcontrast.scss +1 -1
- package/styles/drop-down-tree/material-dark.css +0 -1
- package/styles/drop-down-tree/material-dark.scss +1 -1
- package/styles/drop-down-tree/material.css +0 -1
- package/styles/drop-down-tree/material.scss +1 -1
- package/styles/drop-down-tree/material3-dark.css +0 -1
- package/styles/drop-down-tree/material3-dark.scss +1 -1
- package/styles/drop-down-tree/material3.css +0 -1
- package/styles/drop-down-tree/material3.scss +1 -1
- package/styles/drop-down-tree/tailwind-dark.css +0 -1
- package/styles/drop-down-tree/tailwind-dark.scss +1 -1
- package/styles/drop-down-tree/tailwind.css +0 -1
- package/styles/drop-down-tree/tailwind.scss +1 -1
- package/styles/fabric-dark.css +70 -15
- package/styles/fabric.css +70 -15
- package/styles/fluent-dark.css +71 -16
- package/styles/fluent.css +71 -16
- package/styles/highcontrast-light.css +70 -15
- package/styles/highcontrast.css +70 -15
- package/styles/list-box/_bootstrap-dark-definition.scss +6 -2
- package/styles/list-box/_bootstrap-definition.scss +7 -3
- package/styles/list-box/_bootstrap4-definition.scss +10 -6
- package/styles/list-box/_bootstrap5-definition.scss +6 -4
- package/styles/list-box/_fabric-dark-definition.scss +6 -2
- package/styles/list-box/_fabric-definition.scss +6 -2
- package/styles/list-box/_fluent-definition.scss +10 -8
- package/styles/list-box/_highcontrast-definition.scss +6 -2
- package/styles/list-box/_highcontrast-light-definition.scss +6 -2
- package/styles/list-box/_layout.scss +0 -6
- package/styles/list-box/_material-dark-definition.scss +8 -4
- package/styles/list-box/_material-definition.scss +8 -4
- package/styles/list-box/_material3-definition.scss +10 -8
- package/styles/list-box/_tailwind-definition.scss +9 -7
- package/styles/list-box/_theme.scss +72 -7
- package/styles/list-box/bootstrap-dark.css +70 -15
- package/styles/list-box/bootstrap-dark.scss +1 -1
- package/styles/list-box/bootstrap.css +70 -15
- package/styles/list-box/bootstrap.scss +1 -1
- package/styles/list-box/bootstrap4.css +71 -16
- package/styles/list-box/bootstrap4.scss +1 -1
- package/styles/list-box/bootstrap5-dark.css +71 -16
- package/styles/list-box/bootstrap5-dark.scss +1 -1
- package/styles/list-box/bootstrap5.css +71 -16
- package/styles/list-box/bootstrap5.scss +1 -1
- package/styles/list-box/fabric-dark.css +70 -15
- package/styles/list-box/fabric-dark.scss +1 -1
- package/styles/list-box/fabric.css +70 -15
- package/styles/list-box/fabric.scss +1 -1
- package/styles/list-box/fluent-dark.css +71 -16
- package/styles/list-box/fluent-dark.scss +1 -1
- package/styles/list-box/fluent.css +71 -16
- package/styles/list-box/fluent.scss +1 -1
- package/styles/list-box/highcontrast-light.css +70 -15
- package/styles/list-box/highcontrast-light.scss +1 -1
- package/styles/list-box/highcontrast.css +70 -15
- package/styles/list-box/highcontrast.scss +1 -1
- package/styles/list-box/material-dark.css +71 -17
- package/styles/list-box/material-dark.scss +1 -1
- package/styles/list-box/material.css +71 -17
- package/styles/list-box/material.scss +1 -1
- package/styles/list-box/material3-dark.css +71 -17
- package/styles/list-box/material3-dark.scss +1 -1
- package/styles/list-box/material3.css +71 -17
- package/styles/list-box/material3.scss +1 -1
- package/styles/list-box/tailwind-dark.css +71 -17
- package/styles/list-box/tailwind-dark.scss +1 -1
- package/styles/list-box/tailwind.css +71 -17
- package/styles/list-box/tailwind.scss +1 -1
- package/styles/material-dark.css +71 -17
- package/styles/material.css +71 -17
- package/styles/material3-dark.css +71 -17
- package/styles/material3-dark.scss +1 -1
- package/styles/material3.css +71 -17
- package/styles/material3.scss +1 -1
- package/styles/mention/bootstrap-dark.scss +1 -1
- package/styles/mention/bootstrap.scss +1 -1
- package/styles/mention/bootstrap4.scss +1 -1
- package/styles/mention/bootstrap5-dark.scss +1 -1
- package/styles/mention/bootstrap5.scss +1 -1
- package/styles/mention/fabric-dark.scss +1 -1
- package/styles/mention/fabric.scss +1 -1
- package/styles/mention/fluent-dark.scss +1 -1
- package/styles/mention/fluent.scss +1 -1
- package/styles/mention/highcontrast-light.scss +1 -1
- package/styles/mention/highcontrast.scss +1 -1
- package/styles/mention/material-dark.css +0 -1
- package/styles/mention/material-dark.scss +1 -1
- package/styles/mention/material.css +0 -1
- package/styles/mention/material.scss +1 -1
- package/styles/mention/material3-dark.css +0 -1
- package/styles/mention/material3-dark.scss +1 -1
- package/styles/mention/material3.css +0 -1
- package/styles/mention/material3.scss +1 -1
- package/styles/mention/tailwind-dark.css +0 -1
- package/styles/mention/tailwind-dark.scss +1 -1
- package/styles/mention/tailwind.css +0 -1
- package/styles/mention/tailwind.scss +1 -1
- package/styles/multi-select/bootstrap-dark.scss +1 -1
- package/styles/multi-select/bootstrap.scss +1 -1
- package/styles/multi-select/bootstrap4.scss +1 -1
- package/styles/multi-select/bootstrap5-dark.scss +1 -1
- package/styles/multi-select/bootstrap5.scss +1 -1
- package/styles/multi-select/fabric-dark.scss +1 -1
- package/styles/multi-select/fabric.scss +1 -1
- package/styles/multi-select/fluent-dark.scss +1 -1
- package/styles/multi-select/fluent.scss +1 -1
- package/styles/multi-select/highcontrast-light.scss +1 -1
- package/styles/multi-select/highcontrast.scss +1 -1
- package/styles/multi-select/material-dark.css +0 -1
- package/styles/multi-select/material-dark.scss +1 -1
- package/styles/multi-select/material.css +0 -1
- package/styles/multi-select/material.scss +1 -1
- package/styles/multi-select/material3-dark.css +0 -1
- package/styles/multi-select/material3-dark.scss +1 -1
- package/styles/multi-select/material3.css +0 -1
- package/styles/multi-select/material3.scss +1 -1
- package/styles/multi-select/tailwind-dark.css +0 -1
- package/styles/multi-select/tailwind-dark.scss +1 -1
- package/styles/multi-select/tailwind.css +0 -1
- package/styles/multi-select/tailwind.scss +1 -1
- package/styles/tailwind-dark.css +71 -24
- package/styles/tailwind.css +71 -24
- package/tslint.json +111 -0
|
@@ -89,11 +89,6 @@
|
|
|
89
89
|
padding: 13px 16px;
|
|
90
90
|
position: relative;
|
|
91
91
|
}
|
|
92
|
-
.e-listbox-wrapper.e-filter-list,
|
|
93
|
-
.e-listbox-container.e-filter-list,
|
|
94
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
95
|
-
overflow: inherit;
|
|
96
|
-
}
|
|
97
92
|
.e-listbox-wrapper .e-list-parent,
|
|
98
93
|
.e-listbox-container .e-list-parent,
|
|
99
94
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -377,9 +372,6 @@ ejs-listbox {
|
|
|
377
372
|
overflow: auto;
|
|
378
373
|
}
|
|
379
374
|
|
|
380
|
-
.e-listbox-wrapper.e-filter-list {
|
|
381
|
-
overflow: inherit;
|
|
382
|
-
}
|
|
383
375
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
384
376
|
overflow: auto;
|
|
385
377
|
}
|
|
@@ -581,27 +573,66 @@ ejs-listbox {
|
|
|
581
573
|
}
|
|
582
574
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
583
575
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
584
|
-
height: calc(100% - 46px);
|
|
576
|
+
height: calc(100% - 46px) !important; /* stylelint-disable-line declaration-no-important */
|
|
577
|
+
}
|
|
578
|
+
|
|
579
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
580
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
584
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
585
585
|
}
|
|
586
586
|
|
|
587
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
588
587
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
589
|
-
height:
|
|
588
|
+
height: 100%;
|
|
590
589
|
}
|
|
591
590
|
|
|
592
591
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
593
592
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
594
|
-
height: calc(100% -
|
|
593
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
597
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
598
|
+
}
|
|
599
|
+
|
|
600
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
601
|
+
height: calc(100% - 52px) !important; /* stylelint-disable-line declaration-no-important */
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
605
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
609
|
+
height: 100%;
|
|
595
610
|
}
|
|
596
611
|
|
|
597
612
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
613
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
614
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
615
|
+
}
|
|
616
|
+
|
|
598
617
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
599
|
-
height:
|
|
618
|
+
height: 100%;
|
|
600
619
|
}
|
|
601
620
|
|
|
602
621
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
622
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
623
|
+
height: calc(100% - 54px) !important; /* stylelint-disable-line declaration-no-important */
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
627
|
+
height: calc(100% - 91.5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
631
|
+
height: calc(100% - 106px) !important; /* stylelint-disable-line declaration-no-important */
|
|
632
|
+
}
|
|
633
|
+
|
|
603
634
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
604
|
-
height:
|
|
635
|
+
height: 100%;
|
|
605
636
|
}
|
|
606
637
|
|
|
607
638
|
.e-listbox-wrapper,
|
|
@@ -634,7 +665,7 @@ ejs-listbox {
|
|
|
634
665
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
635
666
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
636
667
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
637
|
-
height: calc(100% -
|
|
668
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
638
669
|
}
|
|
639
670
|
|
|
640
671
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -908,4 +939,28 @@ ejs-listbox {
|
|
|
908
939
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
909
940
|
padding-left: 3.9285em;
|
|
910
941
|
padding-right: 1.0714em;
|
|
942
|
+
}
|
|
943
|
+
|
|
944
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
945
|
+
height: 100%;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
949
|
+
height: 100%;
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
953
|
+
height: 100%;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
957
|
+
height: calc(100% - 51px) !important; /* stylelint-disable-line declaration-no-important */
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
961
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
965
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
911
966
|
}
|
|
@@ -99,11 +99,6 @@
|
|
|
99
99
|
padding: 10px 16px 10px 16px;
|
|
100
100
|
position: relative;
|
|
101
101
|
}
|
|
102
|
-
.e-listbox-wrapper.e-filter-list,
|
|
103
|
-
.e-listbox-container.e-filter-list,
|
|
104
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
105
|
-
overflow: inherit;
|
|
106
|
-
}
|
|
107
102
|
.e-listbox-wrapper .e-list-parent,
|
|
108
103
|
.e-listbox-container .e-list-parent,
|
|
109
104
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -387,9 +382,6 @@ ejs-listbox {
|
|
|
387
382
|
overflow: auto;
|
|
388
383
|
}
|
|
389
384
|
|
|
390
|
-
.e-listbox-wrapper.e-filter-list {
|
|
391
|
-
overflow: inherit;
|
|
392
|
-
}
|
|
393
385
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
394
386
|
overflow: auto;
|
|
395
387
|
}
|
|
@@ -635,27 +627,66 @@ ejs-listbox {
|
|
|
635
627
|
|
|
636
628
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
637
629
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
638
|
-
height: calc(100% -
|
|
630
|
+
height: calc(100% - 43px) !important; /* stylelint-disable-line declaration-no-important */
|
|
631
|
+
}
|
|
632
|
+
|
|
633
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
634
|
+
height: calc(100% - 59px) !important; /* stylelint-disable-line declaration-no-important */
|
|
635
|
+
}
|
|
636
|
+
|
|
637
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
638
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
639
639
|
}
|
|
640
640
|
|
|
641
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
642
641
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
643
|
-
height:
|
|
642
|
+
height: 100%;
|
|
644
643
|
}
|
|
645
644
|
|
|
646
645
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
647
646
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
648
|
-
height: calc(100% -
|
|
647
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
651
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
655
|
+
height: calc(100% - 51px) !important; /* stylelint-disable-line declaration-no-important */
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
659
|
+
height: calc(100% - 59px) !important; /* stylelint-disable-line declaration-no-important */
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
663
|
+
height: 100%;
|
|
649
664
|
}
|
|
650
665
|
|
|
651
666
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
667
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
668
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
669
|
+
}
|
|
670
|
+
|
|
652
671
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
653
|
-
height:
|
|
672
|
+
height: 100%;
|
|
654
673
|
}
|
|
655
674
|
|
|
656
675
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
676
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
677
|
+
height: calc(100% - 56px) !important; /* stylelint-disable-line declaration-no-important */
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
681
|
+
height: calc(100% - 90.5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
682
|
+
}
|
|
683
|
+
|
|
684
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
685
|
+
height: calc(100% - 108px) !important; /* stylelint-disable-line declaration-no-important */
|
|
686
|
+
}
|
|
687
|
+
|
|
657
688
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
658
|
-
height:
|
|
689
|
+
height: 100%;
|
|
659
690
|
}
|
|
660
691
|
|
|
661
692
|
.e-listbox-wrapper,
|
|
@@ -682,13 +713,13 @@ ejs-listbox {
|
|
|
682
713
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
683
714
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
684
715
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
685
|
-
height: calc(100% -
|
|
716
|
+
height: calc(100% - 51px);
|
|
686
717
|
}
|
|
687
718
|
|
|
688
719
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
689
720
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
690
721
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
691
|
-
height: calc(100% -
|
|
722
|
+
height: calc(100% - 41px) !important; /* stylelint-disable-line declaration-no-important */
|
|
692
723
|
}
|
|
693
724
|
|
|
694
725
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -962,4 +993,28 @@ ejs-listbox {
|
|
|
962
993
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
963
994
|
padding-left: 3.9285em;
|
|
964
995
|
padding-right: 1.0714em;
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
999
|
+
height: 100%;
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
1003
|
+
height: 100%;
|
|
1004
|
+
}
|
|
1005
|
+
|
|
1006
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
1007
|
+
height: 100%;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
1011
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1012
|
+
}
|
|
1013
|
+
|
|
1014
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
1015
|
+
height: calc(100% - 41px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1016
|
+
}
|
|
1017
|
+
|
|
1018
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
1019
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
965
1020
|
}
|
|
@@ -115,11 +115,6 @@
|
|
|
115
115
|
padding: 10px 12px;
|
|
116
116
|
position: relative;
|
|
117
117
|
}
|
|
118
|
-
.e-listbox-wrapper.e-filter-list,
|
|
119
|
-
.e-listbox-container.e-filter-list,
|
|
120
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
121
|
-
overflow: inherit;
|
|
122
|
-
}
|
|
123
118
|
.e-listbox-wrapper .e-list-parent,
|
|
124
119
|
.e-listbox-container .e-list-parent,
|
|
125
120
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -403,9 +398,6 @@ ejs-listbox {
|
|
|
403
398
|
overflow: auto;
|
|
404
399
|
}
|
|
405
400
|
|
|
406
|
-
.e-listbox-wrapper.e-filter-list {
|
|
407
|
-
overflow: inherit;
|
|
408
|
-
}
|
|
409
401
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
410
402
|
overflow: auto;
|
|
411
403
|
}
|
|
@@ -607,27 +599,66 @@ ejs-listbox {
|
|
|
607
599
|
}
|
|
608
600
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
609
601
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
610
|
-
height: calc(100% - 45px);
|
|
602
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
606
|
+
height: calc(100% - 56px) !important; /* stylelint-disable-line declaration-no-important */
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
610
|
+
height: calc(100% - 55px) !important; /* stylelint-disable-line declaration-no-important */
|
|
611
611
|
}
|
|
612
612
|
|
|
613
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
614
613
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
615
|
-
height:
|
|
614
|
+
height: 100%;
|
|
616
615
|
}
|
|
617
616
|
|
|
618
617
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
619
618
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
620
|
-
height: calc(100% -
|
|
619
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
623
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
627
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
631
|
+
height: calc(100% - 56px) !important; /* stylelint-disable-line declaration-no-important */
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
635
|
+
height: 100%;
|
|
621
636
|
}
|
|
622
637
|
|
|
623
638
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
639
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
640
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
641
|
+
}
|
|
642
|
+
|
|
624
643
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
625
|
-
height:
|
|
644
|
+
height: 100%;
|
|
626
645
|
}
|
|
627
646
|
|
|
628
647
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
648
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
649
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
653
|
+
height: calc(100% - 86px) !important; /* stylelint-disable-line declaration-no-important */
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
657
|
+
height: calc(100% - 104px) !important; /* stylelint-disable-line declaration-no-important */
|
|
658
|
+
}
|
|
659
|
+
|
|
629
660
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
630
|
-
height:
|
|
661
|
+
height: 100%;
|
|
631
662
|
}
|
|
632
663
|
|
|
633
664
|
.e-listbox-wrapper,
|
|
@@ -654,13 +685,13 @@ ejs-listbox {
|
|
|
654
685
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
655
686
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
656
687
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
657
|
-
height: calc(100% -
|
|
688
|
+
height: calc(100% - 50px);
|
|
658
689
|
}
|
|
659
690
|
|
|
660
691
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
661
692
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
662
693
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
663
|
-
height: calc(100% -
|
|
694
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
664
695
|
}
|
|
665
696
|
|
|
666
697
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -928,4 +959,28 @@ ejs-listbox {
|
|
|
928
959
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
929
960
|
padding-left: 10px;
|
|
930
961
|
padding-right: 16px;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
965
|
+
height: 100%;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
969
|
+
height: 100%;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
973
|
+
height: 100%;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
977
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
981
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
985
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
931
986
|
}
|
|
@@ -115,11 +115,6 @@
|
|
|
115
115
|
padding: 10px 12px;
|
|
116
116
|
position: relative;
|
|
117
117
|
}
|
|
118
|
-
.e-listbox-wrapper.e-filter-list,
|
|
119
|
-
.e-listbox-container.e-filter-list,
|
|
120
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
121
|
-
overflow: inherit;
|
|
122
|
-
}
|
|
123
118
|
.e-listbox-wrapper .e-list-parent,
|
|
124
119
|
.e-listbox-container .e-list-parent,
|
|
125
120
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -403,9 +398,6 @@ ejs-listbox {
|
|
|
403
398
|
overflow: auto;
|
|
404
399
|
}
|
|
405
400
|
|
|
406
|
-
.e-listbox-wrapper.e-filter-list {
|
|
407
|
-
overflow: inherit;
|
|
408
|
-
}
|
|
409
401
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
410
402
|
overflow: auto;
|
|
411
403
|
}
|
|
@@ -607,27 +599,66 @@ ejs-listbox {
|
|
|
607
599
|
}
|
|
608
600
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
609
601
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
610
|
-
height: calc(100% - 45px);
|
|
602
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
606
|
+
height: calc(100% - 56px) !important; /* stylelint-disable-line declaration-no-important */
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
610
|
+
height: calc(100% - 55px) !important; /* stylelint-disable-line declaration-no-important */
|
|
611
611
|
}
|
|
612
612
|
|
|
613
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
614
613
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
615
|
-
height:
|
|
614
|
+
height: 100%;
|
|
616
615
|
}
|
|
617
616
|
|
|
618
617
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
619
618
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
620
|
-
height: calc(100% -
|
|
619
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
620
|
+
}
|
|
621
|
+
|
|
622
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
623
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
627
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
631
|
+
height: calc(100% - 56px) !important; /* stylelint-disable-line declaration-no-important */
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
635
|
+
height: 100%;
|
|
621
636
|
}
|
|
622
637
|
|
|
623
638
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
639
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
640
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
641
|
+
}
|
|
642
|
+
|
|
624
643
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
625
|
-
height:
|
|
644
|
+
height: 100%;
|
|
626
645
|
}
|
|
627
646
|
|
|
628
647
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
648
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
649
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
653
|
+
height: calc(100% - 86px) !important; /* stylelint-disable-line declaration-no-important */
|
|
654
|
+
}
|
|
655
|
+
|
|
656
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
657
|
+
height: calc(100% - 104px) !important; /* stylelint-disable-line declaration-no-important */
|
|
658
|
+
}
|
|
659
|
+
|
|
629
660
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
630
|
-
height:
|
|
661
|
+
height: 100%;
|
|
631
662
|
}
|
|
632
663
|
|
|
633
664
|
.e-listbox-wrapper,
|
|
@@ -654,13 +685,13 @@ ejs-listbox {
|
|
|
654
685
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
655
686
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
656
687
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
657
|
-
height: calc(100% -
|
|
688
|
+
height: calc(100% - 50px);
|
|
658
689
|
}
|
|
659
690
|
|
|
660
691
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
661
692
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
662
693
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
663
|
-
height: calc(100% -
|
|
694
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
664
695
|
}
|
|
665
696
|
|
|
666
697
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -928,4 +959,28 @@ ejs-listbox {
|
|
|
928
959
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
929
960
|
padding-left: 10px;
|
|
930
961
|
padding-right: 16px;
|
|
962
|
+
}
|
|
963
|
+
|
|
964
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
965
|
+
height: 100%;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
969
|
+
height: 100%;
|
|
970
|
+
}
|
|
971
|
+
|
|
972
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
973
|
+
height: 100%;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
977
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
978
|
+
}
|
|
979
|
+
|
|
980
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
981
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
985
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
931
986
|
}
|