@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
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
1
|
:root {
|
|
3
2
|
--color-sf-black: 0, 0, 0;
|
|
4
3
|
--color-sf-white: 255, 255, 255;
|
|
@@ -139,11 +138,6 @@
|
|
|
139
138
|
padding: 10px 16px;
|
|
140
139
|
position: relative;
|
|
141
140
|
}
|
|
142
|
-
.e-listbox-wrapper.e-filter-list,
|
|
143
|
-
.e-listbox-container.e-filter-list,
|
|
144
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
145
|
-
overflow: inherit;
|
|
146
|
-
}
|
|
147
141
|
.e-listbox-wrapper .e-list-parent,
|
|
148
142
|
.e-listbox-container .e-list-parent,
|
|
149
143
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -428,9 +422,6 @@ ejs-listbox {
|
|
|
428
422
|
overflow: auto;
|
|
429
423
|
}
|
|
430
424
|
|
|
431
|
-
.e-listbox-wrapper.e-filter-list {
|
|
432
|
-
overflow: inherit;
|
|
433
|
-
}
|
|
434
425
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
435
426
|
overflow: auto;
|
|
436
427
|
}
|
|
@@ -626,27 +617,66 @@ ejs-listbox {
|
|
|
626
617
|
}
|
|
627
618
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
628
619
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
629
|
-
height: calc(100% -
|
|
620
|
+
height: calc(100% - 35px) !important; /* stylelint-disable-line declaration-no-important */
|
|
621
|
+
}
|
|
622
|
+
|
|
623
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
624
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
628
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
630
629
|
}
|
|
631
630
|
|
|
632
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
633
631
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
634
|
-
height:
|
|
632
|
+
height: 100%;
|
|
635
633
|
}
|
|
636
634
|
|
|
637
635
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
638
636
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
639
|
-
height: calc(100% -
|
|
637
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
641
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
645
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
649
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
|
|
652
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
653
|
+
height: 100%;
|
|
640
654
|
}
|
|
641
655
|
|
|
642
656
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
657
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
658
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
659
|
+
}
|
|
660
|
+
|
|
643
661
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
644
|
-
height:
|
|
662
|
+
height: 100%;
|
|
645
663
|
}
|
|
646
664
|
|
|
647
665
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
666
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
667
|
+
height: calc(100% - 37px) !important; /* stylelint-disable-line declaration-no-important */
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
671
|
+
height: calc(100% - 76px) !important; /* stylelint-disable-line declaration-no-important */
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
675
|
+
height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
|
|
676
|
+
}
|
|
677
|
+
|
|
648
678
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
649
|
-
height:
|
|
679
|
+
height: 100%;
|
|
650
680
|
}
|
|
651
681
|
|
|
652
682
|
.e-listbox-wrapper,
|
|
@@ -673,13 +703,13 @@ ejs-listbox {
|
|
|
673
703
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
674
704
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
675
705
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
676
|
-
height: calc(100% -
|
|
706
|
+
height: calc(100% - 36px);
|
|
677
707
|
}
|
|
678
708
|
|
|
679
709
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
680
710
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
681
711
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
682
|
-
height: calc(100% -
|
|
712
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
683
713
|
}
|
|
684
714
|
|
|
685
715
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -953,4 +983,28 @@ ejs-listbox {
|
|
|
953
983
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
954
984
|
padding-left: 10px;
|
|
955
985
|
padding-right: 16px;
|
|
986
|
+
}
|
|
987
|
+
|
|
988
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
989
|
+
height: 100%;
|
|
990
|
+
}
|
|
991
|
+
|
|
992
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
993
|
+
height: 100%;
|
|
994
|
+
}
|
|
995
|
+
|
|
996
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
997
|
+
height: 100%;
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
1001
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
1005
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1006
|
+
}
|
|
1007
|
+
|
|
1008
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
1009
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
956
1010
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
1
|
:root {
|
|
3
2
|
--color-sf-black: 0, 0, 0;
|
|
4
3
|
--color-sf-white: 255, 255, 255;
|
|
@@ -195,11 +194,6 @@
|
|
|
195
194
|
padding: 10px 16px;
|
|
196
195
|
position: relative;
|
|
197
196
|
}
|
|
198
|
-
.e-listbox-wrapper.e-filter-list,
|
|
199
|
-
.e-listbox-container.e-filter-list,
|
|
200
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
201
|
-
overflow: inherit;
|
|
202
|
-
}
|
|
203
197
|
.e-listbox-wrapper .e-list-parent,
|
|
204
198
|
.e-listbox-container .e-list-parent,
|
|
205
199
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -484,9 +478,6 @@ ejs-listbox {
|
|
|
484
478
|
overflow: auto;
|
|
485
479
|
}
|
|
486
480
|
|
|
487
|
-
.e-listbox-wrapper.e-filter-list {
|
|
488
|
-
overflow: inherit;
|
|
489
|
-
}
|
|
490
481
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
491
482
|
overflow: auto;
|
|
492
483
|
}
|
|
@@ -682,27 +673,66 @@ ejs-listbox {
|
|
|
682
673
|
}
|
|
683
674
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
684
675
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
685
|
-
height: calc(100% -
|
|
676
|
+
height: calc(100% - 35px) !important; /* stylelint-disable-line declaration-no-important */
|
|
677
|
+
}
|
|
678
|
+
|
|
679
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
680
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
684
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
686
685
|
}
|
|
687
686
|
|
|
688
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
689
687
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
690
|
-
height:
|
|
688
|
+
height: 100%;
|
|
691
689
|
}
|
|
692
690
|
|
|
693
691
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
694
692
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
695
|
-
height: calc(100% -
|
|
693
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
697
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
701
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
705
|
+
height: calc(100% - 44px) !important; /* stylelint-disable-line declaration-no-important */
|
|
706
|
+
}
|
|
707
|
+
|
|
708
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
709
|
+
height: 100%;
|
|
696
710
|
}
|
|
697
711
|
|
|
698
712
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
713
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
714
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
715
|
+
}
|
|
716
|
+
|
|
699
717
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
700
|
-
height:
|
|
718
|
+
height: 100%;
|
|
701
719
|
}
|
|
702
720
|
|
|
703
721
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
722
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
723
|
+
height: calc(100% - 37px) !important; /* stylelint-disable-line declaration-no-important */
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
727
|
+
height: calc(100% - 76px) !important; /* stylelint-disable-line declaration-no-important */
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
731
|
+
height: calc(100% - 92px) !important; /* stylelint-disable-line declaration-no-important */
|
|
732
|
+
}
|
|
733
|
+
|
|
704
734
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
705
|
-
height:
|
|
735
|
+
height: 100%;
|
|
706
736
|
}
|
|
707
737
|
|
|
708
738
|
.e-listbox-wrapper,
|
|
@@ -729,13 +759,13 @@ ejs-listbox {
|
|
|
729
759
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
730
760
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
731
761
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
732
|
-
height: calc(100% -
|
|
762
|
+
height: calc(100% - 36px);
|
|
733
763
|
}
|
|
734
764
|
|
|
735
765
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
736
766
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
737
767
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
738
|
-
height: calc(100% -
|
|
768
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
739
769
|
}
|
|
740
770
|
|
|
741
771
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -1009,4 +1039,28 @@ ejs-listbox {
|
|
|
1009
1039
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
1010
1040
|
padding-left: 10px;
|
|
1011
1041
|
padding-right: 16px;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
1045
|
+
height: 100%;
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
1049
|
+
height: 100%;
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
1053
|
+
height: 100%;
|
|
1054
|
+
}
|
|
1055
|
+
|
|
1056
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
1057
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
1061
|
+
height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
1065
|
+
height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1012
1066
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
1
|
.e-dropdownbase .e-list-item.e-active,
|
|
3
2
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
4
3
|
font-weight: 500;
|
|
@@ -125,11 +124,6 @@
|
|
|
125
124
|
padding: 12px 12px;
|
|
126
125
|
position: relative;
|
|
127
126
|
}
|
|
128
|
-
.e-listbox-wrapper.e-filter-list,
|
|
129
|
-
.e-listbox-container.e-filter-list,
|
|
130
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
131
|
-
overflow: inherit;
|
|
132
|
-
}
|
|
133
127
|
.e-listbox-wrapper .e-list-parent,
|
|
134
128
|
.e-listbox-container .e-list-parent,
|
|
135
129
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -413,9 +407,6 @@ ejs-listbox {
|
|
|
413
407
|
overflow: auto;
|
|
414
408
|
}
|
|
415
409
|
|
|
416
|
-
.e-listbox-wrapper.e-filter-list {
|
|
417
|
-
overflow: inherit;
|
|
418
|
-
}
|
|
419
410
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
420
411
|
overflow: auto;
|
|
421
412
|
}
|
|
@@ -617,27 +608,66 @@ ejs-listbox {
|
|
|
617
608
|
}
|
|
618
609
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
619
610
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
620
|
-
height: calc(100% - 45px);
|
|
611
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
615
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
619
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
621
620
|
}
|
|
622
621
|
|
|
623
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
624
622
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
625
|
-
height:
|
|
623
|
+
height: 100%;
|
|
626
624
|
}
|
|
627
625
|
|
|
628
626
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
629
627
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
630
|
-
height: calc(100% -
|
|
628
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
632
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
636
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
640
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
644
|
+
height: 100%;
|
|
631
645
|
}
|
|
632
646
|
|
|
633
647
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
648
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
649
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
|
|
634
652
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
635
|
-
height:
|
|
653
|
+
height: 100%;
|
|
636
654
|
}
|
|
637
655
|
|
|
638
656
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
657
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
658
|
+
height: calc(100% - 53px) !important; /* stylelint-disable-line declaration-no-important */
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
662
|
+
height: calc(100% - 87.5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
666
|
+
height: calc(100% - 106px) !important; /* stylelint-disable-line declaration-no-important */
|
|
667
|
+
}
|
|
668
|
+
|
|
639
669
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
640
|
-
height:
|
|
670
|
+
height: 100%;
|
|
641
671
|
}
|
|
642
672
|
|
|
643
673
|
.e-listbox-wrapper,
|
|
@@ -674,13 +704,13 @@ ejs-listbox {
|
|
|
674
704
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
675
705
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
676
706
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
677
|
-
height: calc(100% -
|
|
707
|
+
height: calc(100% - 50px);
|
|
678
708
|
}
|
|
679
709
|
|
|
680
710
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
681
711
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
682
712
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
683
|
-
height: calc(100% -
|
|
713
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
684
714
|
}
|
|
685
715
|
|
|
686
716
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -954,4 +984,28 @@ ejs-listbox {
|
|
|
954
984
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
955
985
|
padding-left: 10px;
|
|
956
986
|
padding-right: 16px;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
990
|
+
height: 100%;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
994
|
+
height: 100%;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
998
|
+
height: 100%;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
1002
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
1006
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
1010
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
957
1011
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
1
|
.e-dropdownbase .e-list-item.e-active,
|
|
3
2
|
.e-dropdownbase .e-list-item.e-active.e-hover {
|
|
4
3
|
font-weight: 500;
|
|
@@ -125,11 +124,6 @@
|
|
|
125
124
|
padding: 12px 12px;
|
|
126
125
|
position: relative;
|
|
127
126
|
}
|
|
128
|
-
.e-listbox-wrapper.e-filter-list,
|
|
129
|
-
.e-listbox-container.e-filter-list,
|
|
130
|
-
.e-listboxtool-wrapper.e-filter-list {
|
|
131
|
-
overflow: inherit;
|
|
132
|
-
}
|
|
133
127
|
.e-listbox-wrapper .e-list-parent,
|
|
134
128
|
.e-listbox-container .e-list-parent,
|
|
135
129
|
.e-listboxtool-wrapper .e-list-parent {
|
|
@@ -413,9 +407,6 @@ ejs-listbox {
|
|
|
413
407
|
overflow: auto;
|
|
414
408
|
}
|
|
415
409
|
|
|
416
|
-
.e-listbox-wrapper.e-filter-list {
|
|
417
|
-
overflow: inherit;
|
|
418
|
-
}
|
|
419
410
|
.e-listbox-wrapper.e-filter-list .e-list-parent {
|
|
420
411
|
overflow: auto;
|
|
421
412
|
}
|
|
@@ -617,27 +608,66 @@ ejs-listbox {
|
|
|
617
608
|
}
|
|
618
609
|
.e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
619
610
|
.e-small .e-listbox-container.e-filter-list .e-list-parent {
|
|
620
|
-
height: calc(100% - 45px);
|
|
611
|
+
height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
615
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
619
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
621
620
|
}
|
|
622
621
|
|
|
623
|
-
.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
624
622
|
.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
625
|
-
height:
|
|
623
|
+
height: 100%;
|
|
626
624
|
}
|
|
627
625
|
|
|
628
626
|
.e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
629
627
|
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
630
|
-
height: calc(100% -
|
|
628
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
629
|
+
}
|
|
630
|
+
|
|
631
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
632
|
+
height: calc(100% - 47px) !important; /* stylelint-disable-line declaration-no-important */
|
|
633
|
+
}
|
|
634
|
+
|
|
635
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
636
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
|
|
640
|
+
height: calc(100% - 58px) !important; /* stylelint-disable-line declaration-no-important */
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
.e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
644
|
+
height: 100%;
|
|
631
645
|
}
|
|
632
646
|
|
|
633
647
|
.e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
648
|
+
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
649
|
+
height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
|
|
650
|
+
}
|
|
651
|
+
|
|
634
652
|
.e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
635
|
-
height:
|
|
653
|
+
height: 100%;
|
|
636
654
|
}
|
|
637
655
|
|
|
638
656
|
.e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
657
|
+
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
|
|
658
|
+
height: calc(100% - 53px) !important; /* stylelint-disable-line declaration-no-important */
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
.e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
662
|
+
height: calc(100% - 87.5px) !important; /* stylelint-disable-line declaration-no-important */
|
|
663
|
+
}
|
|
664
|
+
|
|
665
|
+
.e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
|
|
666
|
+
height: calc(100% - 106px) !important; /* stylelint-disable-line declaration-no-important */
|
|
667
|
+
}
|
|
668
|
+
|
|
639
669
|
.e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
|
|
640
|
-
height:
|
|
670
|
+
height: 100%;
|
|
641
671
|
}
|
|
642
672
|
|
|
643
673
|
.e-listbox-wrapper,
|
|
@@ -674,13 +704,13 @@ ejs-listbox {
|
|
|
674
704
|
.e-listbox-wrapper.e-filter-list .e-list-parent,
|
|
675
705
|
.e-listbox-container.e-filter-list .e-list-parent,
|
|
676
706
|
.e-listboxtool-wrapper.e-filter-list .e-list-parent {
|
|
677
|
-
height: calc(100% -
|
|
707
|
+
height: calc(100% - 50px);
|
|
678
708
|
}
|
|
679
709
|
|
|
680
710
|
.e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
681
711
|
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
|
|
682
712
|
.e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
683
|
-
height: calc(100% -
|
|
713
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
684
714
|
}
|
|
685
715
|
|
|
686
716
|
.e-listbox-wrapper .e-selectall-parent + .e-list-parent,
|
|
@@ -954,4 +984,28 @@ ejs-listbox {
|
|
|
954
984
|
.e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
|
|
955
985
|
padding-left: 10px;
|
|
956
986
|
padding-right: 16px;
|
|
987
|
+
}
|
|
988
|
+
|
|
989
|
+
.e-listbox-container.e-filter-list .e-list-parent {
|
|
990
|
+
height: 100%;
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
|
|
994
|
+
height: 100%;
|
|
995
|
+
}
|
|
996
|
+
|
|
997
|
+
.e-listbox-container .e-selectall-parent + .e-list-parent {
|
|
998
|
+
height: 100%;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
.e-listbox-container.e-filter-list .e-list-wrap {
|
|
1002
|
+
height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
.e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
|
|
1006
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
1007
|
+
}
|
|
1008
|
+
|
|
1009
|
+
.e-listbox-container .e-selectall-parent + .e-list-wrap {
|
|
1010
|
+
height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
|
|
957
1011
|
}
|