@syncfusion/ej2-vue-dropdowns 23.1.36 → 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.
Files changed (38) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/ej2-vue-dropdowns.umd.min.js +2 -2
  3. package/dist/global/ej2-vue-dropdowns.min.js +3 -3
  4. package/package.json +7 -7
  5. package/styles/bootstrap-dark.css +70 -7
  6. package/styles/bootstrap.css +70 -7
  7. package/styles/bootstrap4.css +71 -8
  8. package/styles/bootstrap5-dark.css +71 -8
  9. package/styles/bootstrap5.css +71 -8
  10. package/styles/fabric-dark.css +70 -7
  11. package/styles/fabric.css +70 -7
  12. package/styles/fluent-dark.css +70 -7
  13. package/styles/fluent.css +70 -7
  14. package/styles/highcontrast-light.css +70 -7
  15. package/styles/highcontrast.css +70 -7
  16. package/styles/list-box/bootstrap-dark.css +70 -7
  17. package/styles/list-box/bootstrap.css +70 -7
  18. package/styles/list-box/bootstrap4.css +71 -8
  19. package/styles/list-box/bootstrap5-dark.css +71 -8
  20. package/styles/list-box/bootstrap5.css +71 -8
  21. package/styles/list-box/fabric-dark.css +70 -7
  22. package/styles/list-box/fabric.css +70 -7
  23. package/styles/list-box/fluent-dark.css +70 -7
  24. package/styles/list-box/fluent.css +70 -7
  25. package/styles/list-box/highcontrast-light.css +70 -7
  26. package/styles/list-box/highcontrast.css +70 -7
  27. package/styles/list-box/material-dark.css +71 -8
  28. package/styles/list-box/material.css +71 -8
  29. package/styles/list-box/material3-dark.css +71 -8
  30. package/styles/list-box/material3.css +71 -8
  31. package/styles/list-box/tailwind-dark.css +71 -8
  32. package/styles/list-box/tailwind.css +71 -8
  33. package/styles/material-dark.css +71 -8
  34. package/styles/material.css +71 -8
  35. package/styles/material3-dark.css +71 -8
  36. package/styles/material3.css +71 -8
  37. package/styles/tailwind-dark.css +71 -8
  38. package/styles/tailwind.css +71 -8
@@ -572,27 +572,66 @@ ejs-listbox {
572
572
  }
573
573
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
574
574
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
575
- height: calc(100% - 45px);
575
+ height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
576
+ }
577
+
578
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
579
+ height: calc(100% - 55px) !important; /* stylelint-disable-line declaration-no-important */
580
+ }
581
+
582
+ .e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
583
+ height: calc(100% - 50px) !important; /* stylelint-disable-line declaration-no-important */
576
584
  }
577
585
 
578
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
579
586
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
580
- height: calc(100% - 50px);
587
+ height: 100%;
581
588
  }
582
589
 
583
590
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
584
591
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
585
- height: calc(100% - 98px);
592
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
593
+ }
594
+
595
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
596
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
597
+ }
598
+
599
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
600
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
601
+ }
602
+
603
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-list-parent {
604
+ height: calc(100% - 55px) !important; /* stylelint-disable-line declaration-no-important */
605
+ }
606
+
607
+ .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
608
+ height: 100%;
586
609
  }
587
610
 
588
611
  .e-bigger .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
612
+ .e-bigger .e-listbox-container .e-selectall-parent + .e-list-wrap {
613
+ height: calc(100% - 48px) !important; /* stylelint-disable-line declaration-no-important */
614
+ }
615
+
589
616
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
590
- height: calc(100% - 48px);
617
+ height: 100%;
591
618
  }
592
619
 
593
620
  .e-small.e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
621
+ .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-wrap {
622
+ height: calc(100% - 45px) !important; /* stylelint-disable-line declaration-no-important */
623
+ }
624
+
625
+ .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
626
+ height: calc(100% - 83px) !important; /* stylelint-disable-line declaration-no-important */
627
+ }
628
+
629
+ .e-bigger .e-listbox-wrapper.e-filter-list:not(.e-listbox-container) .e-selectall-parent + .e-hidden-select + .e-listbox + .e-list-parent {
630
+ height: calc(100% - 103px) !important; /* stylelint-disable-line declaration-no-important */
631
+ }
632
+
594
633
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
595
- height: calc(100% - 45px);
634
+ height: 100%;
596
635
  }
597
636
 
598
637
  .e-listbox-wrapper,
@@ -619,13 +658,13 @@ ejs-listbox {
619
658
  .e-listbox-wrapper.e-filter-list .e-list-parent,
620
659
  .e-listbox-container.e-filter-list .e-list-parent,
621
660
  .e-listboxtool-wrapper.e-filter-list .e-list-parent {
622
- height: calc(100% - 43px);
661
+ height: calc(100% - 48px);
623
662
  }
624
663
 
625
664
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
626
665
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
627
666
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
628
- height: calc(100% - 79px);
667
+ height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
629
668
  }
630
669
 
631
670
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -899,4 +938,28 @@ ejs-listbox {
899
938
  .e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
900
939
  padding-left: 4.1333em;
901
940
  padding-right: 1.0666em;
941
+ }
942
+
943
+ .e-listbox-container.e-filter-list .e-list-parent {
944
+ height: 100%;
945
+ }
946
+
947
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
948
+ height: 100%;
949
+ }
950
+
951
+ .e-listbox-container .e-selectall-parent + .e-list-parent {
952
+ height: 100%;
953
+ }
954
+
955
+ .e-listbox-container.e-filter-list .e-list-wrap {
956
+ height: calc(100% - 43px) !important; /* stylelint-disable-line declaration-no-important */
957
+ }
958
+
959
+ .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-wrap {
960
+ height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
961
+ }
962
+
963
+ .e-listbox-container .e-selectall-parent + .e-list-wrap {
964
+ height: calc(100% - 36px) !important; /* stylelint-disable-line declaration-no-important */
902
965
  }
@@ -617,27 +617,66 @@ ejs-listbox {
617
617
  }
618
618
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
619
619
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
620
- height: calc(100% - 35px);
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 */
621
629
  }
622
630
 
623
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
624
631
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
625
- height: calc(100% - 48px);
632
+ height: 100%;
626
633
  }
627
634
 
628
635
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
629
636
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
630
- height: calc(100% - 98px);
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%;
631
654
  }
632
655
 
633
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
+
634
661
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
635
- height: calc(100% - 48px);
662
+ height: 100%;
636
663
  }
637
664
 
638
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
+
639
678
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
640
- height: calc(100% - 37px);
679
+ height: 100%;
641
680
  }
642
681
 
643
682
  .e-listbox-wrapper,
@@ -664,13 +703,13 @@ ejs-listbox {
664
703
  .e-listbox-wrapper.e-filter-list .e-list-parent,
665
704
  .e-listbox-container.e-filter-list .e-list-parent,
666
705
  .e-listboxtool-wrapper.e-filter-list .e-list-parent {
667
- height: calc(100% - 40px);
706
+ height: calc(100% - 36px);
668
707
  }
669
708
 
670
709
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
671
710
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
672
711
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
673
- height: calc(100% - 79px);
712
+ height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
674
713
  }
675
714
 
676
715
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -944,4 +983,28 @@ ejs-listbox {
944
983
  .e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
945
984
  padding-left: 10px;
946
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 */
947
1010
  }
@@ -673,27 +673,66 @@ ejs-listbox {
673
673
  }
674
674
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
675
675
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
676
- height: calc(100% - 35px);
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 */
677
685
  }
678
686
 
679
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
680
687
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
681
- height: calc(100% - 48px);
688
+ height: 100%;
682
689
  }
683
690
 
684
691
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
685
692
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
686
- height: calc(100% - 98px);
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%;
687
710
  }
688
711
 
689
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
+
690
717
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
691
- height: calc(100% - 48px);
718
+ height: 100%;
692
719
  }
693
720
 
694
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
+
695
734
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
696
- height: calc(100% - 37px);
735
+ height: 100%;
697
736
  }
698
737
 
699
738
  .e-listbox-wrapper,
@@ -720,13 +759,13 @@ ejs-listbox {
720
759
  .e-listbox-wrapper.e-filter-list .e-list-parent,
721
760
  .e-listbox-container.e-filter-list .e-list-parent,
722
761
  .e-listboxtool-wrapper.e-filter-list .e-list-parent {
723
- height: calc(100% - 40px);
762
+ height: calc(100% - 36px);
724
763
  }
725
764
 
726
765
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
727
766
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
728
767
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
729
- height: calc(100% - 79px);
768
+ height: calc(100% - 40px) !important; /* stylelint-disable-line declaration-no-important */
730
769
  }
731
770
 
732
771
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -1000,4 +1039,28 @@ ejs-listbox {
1000
1039
  .e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
1001
1040
  padding-left: 10px;
1002
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 */
1003
1066
  }
@@ -608,27 +608,66 @@ ejs-listbox {
608
608
  }
609
609
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
610
610
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
611
- 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 */
612
620
  }
613
621
 
614
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
615
622
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
616
- height: calc(100% - 57px);
623
+ height: 100%;
617
624
  }
618
625
 
619
626
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
620
627
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
621
- height: calc(100% - 94px);
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%;
622
645
  }
623
646
 
624
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
+
625
652
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
626
- height: calc(100% - 48px);
653
+ height: 100%;
627
654
  }
628
655
 
629
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
+
630
669
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
631
- height: calc(100% - 53px);
670
+ height: 100%;
632
671
  }
633
672
 
634
673
  .e-listbox-wrapper,
@@ -665,13 +704,13 @@ ejs-listbox {
665
704
  .e-listbox-wrapper.e-filter-list .e-list-parent,
666
705
  .e-listbox-container.e-filter-list .e-list-parent,
667
706
  .e-listboxtool-wrapper.e-filter-list .e-list-parent {
668
- height: calc(100% - 49px);
707
+ height: calc(100% - 50px);
669
708
  }
670
709
 
671
710
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
672
711
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
673
712
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
674
- height: calc(100% - 76px);
713
+ height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
675
714
  }
676
715
 
677
716
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -945,4 +984,28 @@ ejs-listbox {
945
984
  .e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
946
985
  padding-left: 10px;
947
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 */
948
1011
  }
@@ -608,27 +608,66 @@ ejs-listbox {
608
608
  }
609
609
  .e-small .e-listbox-wrapper.e-filter-list .e-list-parent,
610
610
  .e-small .e-listbox-container.e-filter-list .e-list-parent {
611
- 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 */
612
620
  }
613
621
 
614
- .e-bigger .e-listbox-wrapper.e-filter-list .e-list-parent,
615
622
  .e-bigger .e-listbox-container.e-filter-list .e-list-parent {
616
- height: calc(100% - 57px);
623
+ height: 100%;
617
624
  }
618
625
 
619
626
  .e-bigger .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
620
627
  .e-bigger .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent {
621
- height: calc(100% - 94px);
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%;
622
645
  }
623
646
 
624
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
+
625
652
  .e-bigger .e-listbox-container .e-selectall-parent + .e-list-parent {
626
- height: calc(100% - 48px);
653
+ height: 100%;
627
654
  }
628
655
 
629
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
+
630
669
  .e-small.e-bigger .e-listbox-container.e-filter-list .e-list-parent {
631
- height: calc(100% - 53px);
670
+ height: 100%;
632
671
  }
633
672
 
634
673
  .e-listbox-wrapper,
@@ -665,13 +704,13 @@ ejs-listbox {
665
704
  .e-listbox-wrapper.e-filter-list .e-list-parent,
666
705
  .e-listbox-container.e-filter-list .e-list-parent,
667
706
  .e-listboxtool-wrapper.e-filter-list .e-list-parent {
668
- height: calc(100% - 49px);
707
+ height: calc(100% - 50px);
669
708
  }
670
709
 
671
710
  .e-listbox-wrapper.e-filter-list .e-selectall-parent + .e-list-parent,
672
711
  .e-listbox-container.e-filter-list .e-selectall-parent + .e-list-parent,
673
712
  .e-listboxtool-wrapper.e-filter-list .e-selectall-parent + .e-list-parent {
674
- height: calc(100% - 76px);
713
+ height: calc(100% - 38px) !important; /* stylelint-disable-line declaration-no-important */
675
714
  }
676
715
 
677
716
  .e-listbox-wrapper .e-selectall-parent + .e-list-parent,
@@ -945,4 +984,28 @@ ejs-listbox {
945
984
  .e-listboxtool-wrapper.e-rtl.e-list-template .e-list-wrapper.e-list-badge:not(.e-list-avatar) {
946
985
  padding-left: 10px;
947
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 */
948
1011
  }