@syncfusion/ej2-dropdowns 19.4.54 → 20.1.47

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 (194) hide show
  1. package/CHANGELOG.md +0 -22
  2. package/dist/ej2-dropdowns.umd.min.js +2 -2
  3. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  4. package/dist/es6/ej2-dropdowns.es2015.js +59 -2
  5. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es5.js +59 -2
  7. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  8. package/dist/global/ej2-dropdowns.min.js +2 -2
  9. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  10. package/dist/global/index.d.ts +1 -1
  11. package/package.json +11 -11
  12. package/src/drop-down-tree/drop-down-tree.js +4 -0
  13. package/src/list-box/list-box.js +53 -1
  14. package/src/multi-select/multi-select.js +2 -1
  15. package/styles/auto-complete/_fluent-dark-definition.scss +1 -0
  16. package/styles/auto-complete/bootstrap5-dark.css +7 -0
  17. package/styles/auto-complete/bootstrap5.css +7 -0
  18. package/styles/auto-complete/fluent-dark.css +132 -0
  19. package/styles/auto-complete/fluent-dark.scss +4 -0
  20. package/styles/auto-complete/fluent.css +132 -0
  21. package/styles/auto-complete/fluent.scss +4 -0
  22. package/styles/auto-complete/tailwind-dark.css +1 -57
  23. package/styles/auto-complete/tailwind.css +1 -57
  24. package/styles/bootstrap-dark.css +64 -34
  25. package/styles/bootstrap.css +64 -34
  26. package/styles/bootstrap4.css +64 -34
  27. package/styles/bootstrap5-dark.css +124 -44
  28. package/styles/bootstrap5.css +124 -44
  29. package/styles/combo-box/_fluent-dark-definition.scss +1 -0
  30. package/styles/combo-box/bootstrap5-dark.css +7 -0
  31. package/styles/combo-box/bootstrap5.css +7 -0
  32. package/styles/combo-box/fluent-dark.css +132 -0
  33. package/styles/combo-box/fluent-dark.scss +4 -0
  34. package/styles/combo-box/fluent.css +132 -0
  35. package/styles/combo-box/fluent.scss +4 -0
  36. package/styles/combo-box/tailwind-dark.css +1 -57
  37. package/styles/combo-box/tailwind.css +1 -57
  38. package/styles/drop-down-base/_bootstrap-dark-definition.scss +2 -0
  39. package/styles/drop-down-base/_bootstrap-definition.scss +2 -0
  40. package/styles/drop-down-base/_bootstrap4-definition.scss +2 -0
  41. package/styles/drop-down-base/_bootstrap5-definition.scss +2 -0
  42. package/styles/drop-down-base/_fabric-dark-definition.scss +2 -0
  43. package/styles/drop-down-base/_fabric-definition.scss +2 -0
  44. package/styles/drop-down-base/_fluent-dark-definition.scss +1 -0
  45. package/styles/drop-down-base/_fluent-definition.scss +12 -7
  46. package/styles/drop-down-base/_highcontrast-definition.scss +2 -0
  47. package/styles/drop-down-base/_highcontrast-light-definition.scss +2 -0
  48. package/styles/drop-down-base/_layout.scss +40 -4
  49. package/styles/drop-down-base/_material-dark-definition.scss +2 -0
  50. package/styles/drop-down-base/_material-definition.scss +2 -0
  51. package/styles/drop-down-base/_tailwind-definition.scss +17 -8
  52. package/styles/drop-down-base/_theme.scss +82 -3
  53. package/styles/drop-down-base/bootstrap-dark.css +7 -2
  54. package/styles/drop-down-base/bootstrap.css +7 -2
  55. package/styles/drop-down-base/bootstrap4.css +7 -2
  56. package/styles/drop-down-base/bootstrap5-dark.css +12 -3
  57. package/styles/drop-down-base/bootstrap5.css +12 -3
  58. package/styles/drop-down-base/fabric-dark.css +7 -2
  59. package/styles/drop-down-base/fabric.css +7 -2
  60. package/styles/drop-down-base/fluent-dark.css +397 -0
  61. package/styles/drop-down-base/fluent-dark.scss +3 -0
  62. package/styles/drop-down-base/fluent.css +397 -0
  63. package/styles/drop-down-base/fluent.scss +3 -0
  64. package/styles/drop-down-base/highcontrast-light.css +7 -2
  65. package/styles/drop-down-base/highcontrast.css +7 -2
  66. package/styles/drop-down-base/material-dark.css +7 -2
  67. package/styles/drop-down-base/material.css +7 -2
  68. package/styles/drop-down-base/tailwind-dark.css +103 -14
  69. package/styles/drop-down-base/tailwind.css +103 -14
  70. package/styles/drop-down-list/_bootstrap-dark-definition.scss +1 -1
  71. package/styles/drop-down-list/_bootstrap-definition.scss +1 -1
  72. package/styles/drop-down-list/_bootstrap4-definition.scss +1 -1
  73. package/styles/drop-down-list/_bootstrap5-definition.scss +10 -2
  74. package/styles/drop-down-list/_fabric-dark-definition.scss +1 -1
  75. package/styles/drop-down-list/_fabric-definition.scss +1 -1
  76. package/styles/drop-down-list/_fluent-dark-definition.scss +1 -0
  77. package/styles/drop-down-list/_fluent-definition.scss +10 -19
  78. package/styles/drop-down-list/_highcontrast-definition.scss +1 -1
  79. package/styles/drop-down-list/_highcontrast-light-definition.scss +1 -1
  80. package/styles/drop-down-list/_layout.scss +52 -15
  81. package/styles/drop-down-list/_material-dark-definition.scss +1 -1
  82. package/styles/drop-down-list/_material-definition.scss +1 -1
  83. package/styles/drop-down-list/_tailwind-definition.scss +6 -61
  84. package/styles/drop-down-list/bootstrap-dark.css +28 -6
  85. package/styles/drop-down-list/bootstrap.css +28 -6
  86. package/styles/drop-down-list/bootstrap4.css +28 -6
  87. package/styles/drop-down-list/bootstrap5-dark.css +35 -6
  88. package/styles/drop-down-list/bootstrap5.css +35 -6
  89. package/styles/drop-down-list/fabric-dark.css +28 -6
  90. package/styles/drop-down-list/fabric.css +28 -6
  91. package/styles/drop-down-list/fluent-dark.css +447 -0
  92. package/styles/drop-down-list/fluent-dark.scss +8 -0
  93. package/styles/drop-down-list/fluent.css +447 -0
  94. package/styles/drop-down-list/fluent.scss +8 -0
  95. package/styles/drop-down-list/highcontrast-light.css +28 -6
  96. package/styles/drop-down-list/highcontrast.css +28 -6
  97. package/styles/drop-down-list/icons/_fluent-dark.scss +1 -0
  98. package/styles/drop-down-list/icons/_fluent.scss +1 -1
  99. package/styles/drop-down-list/icons/_tailwind.scss +3 -4
  100. package/styles/drop-down-list/material-dark.css +28 -6
  101. package/styles/drop-down-list/material.css +28 -6
  102. package/styles/drop-down-list/tailwind-dark.css +20 -95
  103. package/styles/drop-down-list/tailwind.css +20 -95
  104. package/styles/drop-down-tree/_bootstrap5-definition.scss +1 -1
  105. package/styles/drop-down-tree/_fluent-dark-definition.scss +1 -0
  106. package/styles/drop-down-tree/_fluent-definition.scss +25 -30
  107. package/styles/drop-down-tree/_layout.scss +94 -27
  108. package/styles/drop-down-tree/_tailwind-definition.scss +2 -1
  109. package/styles/drop-down-tree/_theme.scss +9 -4
  110. package/styles/drop-down-tree/bootstrap5-dark.css +6 -2
  111. package/styles/drop-down-tree/bootstrap5.css +6 -2
  112. package/styles/drop-down-tree/fluent-dark.css +599 -0
  113. package/styles/drop-down-tree/fluent-dark.scss +9 -0
  114. package/styles/drop-down-tree/fluent.css +599 -0
  115. package/styles/drop-down-tree/fluent.scss +9 -0
  116. package/styles/drop-down-tree/icons/_fluent-dark.scss +1 -0
  117. package/styles/drop-down-tree/icons/_fluent.scss +1 -1
  118. package/styles/drop-down-tree/icons/_tailwind-dark.scss +2 -2
  119. package/styles/drop-down-tree/icons/_tailwind.scss +2 -2
  120. package/styles/drop-down-tree/tailwind-dark.css +15 -6
  121. package/styles/drop-down-tree/tailwind.css +15 -6
  122. package/styles/fabric-dark.css +64 -34
  123. package/styles/fabric.css +64 -34
  124. package/styles/fluent-dark.css +3602 -0
  125. package/styles/fluent-dark.scss +7 -0
  126. package/styles/fluent.css +3602 -0
  127. package/styles/fluent.scss +7 -0
  128. package/styles/highcontrast-light.css +66 -35
  129. package/styles/highcontrast.css +66 -35
  130. package/styles/list-box/_bootstrap-dark-definition.scss +98 -102
  131. package/styles/list-box/_bootstrap-definition.scss +94 -98
  132. package/styles/list-box/_bootstrap4-definition.scss +98 -102
  133. package/styles/list-box/_bootstrap5-definition.scss +94 -99
  134. package/styles/list-box/_fabric-dark-definition.scss +98 -102
  135. package/styles/list-box/_fabric-definition.scss +94 -98
  136. package/styles/list-box/_fluent-dark-definition.scss +1 -0
  137. package/styles/list-box/_fluent-definition.scss +95 -100
  138. package/styles/list-box/_highcontrast-definition.scss +94 -98
  139. package/styles/list-box/_highcontrast-light-definition.scss +98 -102
  140. package/styles/list-box/_layout.scss +48 -40
  141. package/styles/list-box/_material-dark-definition.scss +98 -102
  142. package/styles/list-box/_material-definition.scss +94 -98
  143. package/styles/list-box/_tailwind-definition.scss +95 -99
  144. package/styles/list-box/_theme.scss +77 -85
  145. package/styles/list-box/bootstrap-dark.css +10 -16
  146. package/styles/list-box/bootstrap.css +10 -16
  147. package/styles/list-box/bootstrap4.css +10 -16
  148. package/styles/list-box/bootstrap5-dark.css +13 -19
  149. package/styles/list-box/bootstrap5.css +13 -19
  150. package/styles/list-box/fabric-dark.css +10 -16
  151. package/styles/list-box/fabric.css +10 -16
  152. package/styles/list-box/fluent-dark.css +895 -0
  153. package/styles/list-box/fluent-dark.scss +5 -0
  154. package/styles/list-box/fluent.css +895 -0
  155. package/styles/list-box/fluent.scss +5 -0
  156. package/styles/list-box/highcontrast-light.css +10 -16
  157. package/styles/list-box/highcontrast.css +10 -16
  158. package/styles/list-box/icons/_fluent-dark.scss +1 -0
  159. package/styles/list-box/icons/_tailwind-dark.scss +7 -7
  160. package/styles/list-box/icons/_tailwind.scss +7 -7
  161. package/styles/list-box/material-dark.css +12 -18
  162. package/styles/list-box/material.css +12 -18
  163. package/styles/list-box/tailwind-dark.css +25 -28
  164. package/styles/list-box/tailwind.css +25 -28
  165. package/styles/material-dark.css +66 -36
  166. package/styles/material.css +66 -36
  167. package/styles/multi-select/_bootstrap5-definition.scss +8 -4
  168. package/styles/multi-select/_fluent-dark-definition.scss +1 -0
  169. package/styles/multi-select/_fluent-definition.scss +30 -16
  170. package/styles/multi-select/_layout.scss +276 -25
  171. package/styles/multi-select/_tailwind-definition.scss +61 -43
  172. package/styles/multi-select/_theme.scss +79 -15
  173. package/styles/multi-select/bootstrap-dark.css +19 -10
  174. package/styles/multi-select/bootstrap.css +19 -10
  175. package/styles/multi-select/bootstrap4.css +19 -10
  176. package/styles/multi-select/bootstrap5-dark.css +58 -14
  177. package/styles/multi-select/bootstrap5.css +58 -14
  178. package/styles/multi-select/fabric-dark.css +19 -10
  179. package/styles/multi-select/fabric.css +19 -10
  180. package/styles/multi-select/fluent-dark.css +1416 -0
  181. package/styles/multi-select/fluent-dark.scss +9 -0
  182. package/styles/multi-select/fluent.css +1416 -0
  183. package/styles/multi-select/fluent.scss +9 -0
  184. package/styles/multi-select/highcontrast-light.css +21 -11
  185. package/styles/multi-select/highcontrast.css +21 -11
  186. package/styles/multi-select/icons/_fluent-dark.scss +1 -0
  187. package/styles/multi-select/icons/_fluent.scss +32 -3
  188. package/styles/multi-select/icons/_tailwind.scss +3 -3
  189. package/styles/multi-select/material-dark.css +19 -10
  190. package/styles/multi-select/material.css +19 -10
  191. package/styles/multi-select/tailwind-dark.css +166 -126
  192. package/styles/multi-select/tailwind.css +166 -126
  193. package/styles/tailwind-dark.css +305 -257
  194. package/styles/tailwind.css +305 -257
@@ -0,0 +1,7 @@
1
+ @import 'drop-down-base/fluent.scss';
2
+ @import 'drop-down-list/fluent.scss';
3
+ @import 'drop-down-tree/fluent.scss';
4
+ @import 'combo-box/fluent.scss';
5
+ @import 'auto-complete/fluent.scss';
6
+ @import 'multi-select/fluent.scss';
7
+ @import 'list-box/fluent.scss';
@@ -36,9 +36,13 @@
36
36
  }
37
37
 
38
38
  .e-bigger .e-dropdownbase .e-list-item,
39
+ .e-dropdownbase.e-bigger .e-list-item {
40
+ line-height: 48px;
41
+ text-indent: 10px;
42
+ }
43
+
39
44
  .e-bigger .e-dropdownbase .e-list-group-item,
40
45
  .e-bigger .e-dropdownbase .e-fixed-head,
41
- .e-dropdownbase.e-bigger .e-list-item,
42
46
  .e-dropdownbase.e-bigger .e-list-group-item,
43
47
  .e-dropdownbase.e-bigger .e-fixed-head {
44
48
  line-height: 48px;
@@ -172,6 +176,7 @@
172
176
  }
173
177
 
174
178
  .e-dropdownbase .e-list-item {
179
+ -webkit-tap-highlight-color: transparent;
175
180
  background-color: #fff;
176
181
  border-bottom: 2px;
177
182
  border-color: transparent;
@@ -340,9 +345,9 @@
340
345
  border-color: transparent;
341
346
  color: #000;
342
347
  font-family: inherit;
348
+ text-indent: 10px;
343
349
  font-size: 14px;
344
350
  padding-right: 16px;
345
- text-indent: 10px;
346
351
  }
347
352
 
348
353
  .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
@@ -496,7 +501,10 @@
496
501
  margin-left: -20px;
497
502
  }
498
503
 
499
- .e-bigger .e-ddl.e-popup .e-list-item,
504
+ .e-bigger .e-ddl.e-popup .e-list-item {
505
+ font-size: 15px;
506
+ }
507
+
500
508
  .e-bigger .e-ddl.e-popup .e-list-group-item {
501
509
  font-size: 15px;
502
510
  }
@@ -505,7 +513,10 @@
505
513
  padding: 4px 0;
506
514
  }
507
515
 
508
- .e-bigger.e-ddl.e-popup .e-list-item,
516
+ .e-bigger.e-ddl.e-popup .e-list-item {
517
+ font-size: 15px;
518
+ }
519
+
509
520
  .e-bigger.e-ddl.e-popup .e-list-group-item {
510
521
  font-size: 15px;
511
522
  }
@@ -524,6 +535,10 @@
524
535
  top: 0;
525
536
  }
526
537
 
538
+ .e-popup-full-page .e-popup-full-page.e-ddl.e-popup.e-ddl-device-filter {
539
+ margin: 0;
540
+ }
541
+
527
542
  .e-ddl.e-control-wrapper .e-ddl-disable-icon {
528
543
  position: relative;
529
544
  }
@@ -676,29 +691,41 @@ ejs-dropdownlist {
676
691
  }
677
692
 
678
693
  .e-small .e-ddl.e-popup .e-list-item,
694
+ .e-input-group.e-ddl.e-small .e-list-item {
695
+ font-size: 13px;
696
+ }
697
+
679
698
  .e-small .e-ddl.e-popup .e-list-group-item,
680
- .e-input-group.e-ddl.e-small .e-list-item,
681
699
  .e-input-group.e-ddl.e-small .e-list-group-item {
682
700
  font-size: 13px;
683
701
  }
684
702
 
685
703
  .e-small.e-ddl.e-popup .e-list-item,
704
+ .e-input-group.e-ddl.e-small .e-list-item {
705
+ font-size: 13px;
706
+ }
707
+
686
708
  .e-small.e-ddl.e-popup .e-list-group-item,
687
- .e-input-group.e-ddl.e-small .e-list-item,
688
709
  .e-input-group.e-ddl.e-small .e-list-group-item {
689
710
  font-size: 13px;
690
711
  }
691
712
 
692
713
  .e-bigger.e-small .e-ddl.e-popup .e-list-item,
714
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
715
+ font-size: 14px;
716
+ }
717
+
693
718
  .e-bigger.e-small .e-ddl.e-popup .e-list-group-item,
694
- .e-bigger .e-input-group.e-ddl.e-small .e-list-item,
695
719
  .e-bigger .e-input-group.e-ddl.e-small .e-list-group-item {
696
720
  font-size: 14px;
697
721
  }
698
722
 
699
723
  .e-bigger.e-small.e-ddl.e-popup .e-list-item,
724
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
725
+ font-size: 14px;
726
+ }
727
+
700
728
  .e-bigger.e-small.e-ddl.e-popup .e-list-group-item,
701
- .e-bigger .e-input-group.e-ddl.e-small .e-list-item,
702
729
  .e-bigger .e-input-group.e-ddl.e-small .e-list-group-item {
703
730
  font-size: 14px;
704
731
  }
@@ -1400,12 +1427,14 @@ ejs-dropdownlist {
1400
1427
  width: 100%;
1401
1428
  }
1402
1429
 
1403
- .e-multi-select-wrapper.e-delimiter .e-searcher {
1430
+ .e-multi-select-wrapper.e-delimiter .e-searcher,
1431
+ .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
1404
1432
  height: 27px;
1405
1433
  vertical-align: middle;
1406
1434
  }
1407
1435
 
1408
- .e-multi-select-wrapper.e-delimiter .e-searcher .e-dropdownbase {
1436
+ .e-multi-select-wrapper.e-delimiter .e-searcher .e-dropdownbase,
1437
+ .e-multi-select-wrapper.e-delimiter .e-multi-searcher .e-dropdownbase {
1409
1438
  height: 100%;
1410
1439
  min-height: 100%;
1411
1440
  }
@@ -1666,6 +1695,7 @@ ejs-dropdownlist {
1666
1695
  }
1667
1696
 
1668
1697
  .e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
1698
+ .e-small.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
1669
1699
  .e-multiselect.e-input-group.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
1670
1700
  right: 27px;
1671
1701
  }
@@ -1680,7 +1710,8 @@ ejs-dropdownlist {
1680
1710
  right: auto;
1681
1711
  }
1682
1712
 
1683
- .e-bigger .e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
1713
+ .e-bigger .e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon,
1714
+ .e-bigger.e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
1684
1715
  left: 38px;
1685
1716
  right: auto;
1686
1717
  }
@@ -1896,7 +1927,7 @@ ejs-dropdownlist {
1896
1927
  padding-right: 16px;
1897
1928
  }
1898
1929
 
1899
- .e-multiselect.e-rtl .e-down-icon .e-chips-close.e-icon.e-close-hooker {
1930
+ .e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
1900
1931
  left: 30px;
1901
1932
  }
1902
1933
 
@@ -1932,12 +1963,14 @@ ejs-dropdownlist {
1932
1963
  vertical-align: middle;
1933
1964
  }
1934
1965
 
1935
- .e-bigger .e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper {
1966
+ .e-bigger .e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper,
1967
+ .e-bigger.e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper {
1936
1968
  bottom: 1px;
1937
1969
  margin-right: 10px;
1938
1970
  }
1939
1971
 
1940
- .e-bigger .e-popup.e-multi-select-list-wrapper.e-mulltiselect-group .e-list-group-item .e-checkbox-wrapper {
1972
+ .e-bigger .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper,
1973
+ .e-bigger.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper {
1941
1974
  bottom: 1px;
1942
1975
  margin-right: 10px;
1943
1976
  }
@@ -2000,6 +2033,7 @@ ejs-dropdownlist {
2000
2033
  font-size: 14px;
2001
2034
  }
2002
2035
 
2036
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent,
2003
2037
  .e-bigger .e-multi-select-list-wrapper .e-selectall-parent {
2004
2038
  font-size: 14px;
2005
2039
  line-height: 46px;
@@ -2014,6 +2048,7 @@ ejs-dropdownlist {
2014
2048
  vertical-align: middle;
2015
2049
  }
2016
2050
 
2051
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper,
2017
2052
  .e-bigger .e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper {
2018
2053
  bottom: 1px;
2019
2054
  margin-right: 10px;
@@ -2043,7 +2078,7 @@ ejs-dropdownlist {
2043
2078
  padding: 8px;
2044
2079
  }
2045
2080
 
2046
- .e-bigger .e-ddl.e-popup.e-multi-select-list-wrappe .e-filter-parent .e-input-filter,
2081
+ .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-filter,
2047
2082
  .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group.e-input-focus {
2048
2083
  padding: 4px 0;
2049
2084
  }
@@ -2084,6 +2119,7 @@ ejs-multiselect {
2084
2119
  display: block;
2085
2120
  }
2086
2121
 
2122
+ .e-small.e-multi-select-list-wrapper .e-selectall-parent,
2087
2123
  .e-small .e-multi-select-list-wrapper .e-selectall-parent {
2088
2124
  line-height: 26px;
2089
2125
  }
@@ -2112,6 +2148,7 @@ ejs-multiselect {
2112
2148
  margin-top: -2.9em;
2113
2149
  }
2114
2150
 
2151
+ .e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
2115
2152
  .e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
2116
2153
  line-height: 40px;
2117
2154
  }
@@ -2380,7 +2417,7 @@ ejs-multiselect {
2380
2417
  background-color: #400074;
2381
2418
  }
2382
2419
 
2383
- .e-multi-select-wrapper .e-chips.e-chip-selected:hover {
2420
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips.e-chip-selected:hover {
2384
2421
  background-color: #400074;
2385
2422
  }
2386
2423
 
@@ -2409,7 +2446,7 @@ ejs-multiselect {
2409
2446
  height: 26px;
2410
2447
  }
2411
2448
 
2412
- .e-multi-select-wrapper .e-chips:hover {
2449
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips:hover {
2413
2450
  background-color: #ecf;
2414
2451
  }
2415
2452
 
@@ -2484,16 +2521,16 @@ ejs-multiselect {
2484
2521
 
2485
2522
  .e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus {
2486
2523
  background-color: #400074;
2487
- border: 1px solid #400074;
2488
2524
  box-shadow: none;
2489
2525
  color: #fff;
2526
+ border: 1px solid #400074;
2490
2527
  }
2491
2528
 
2492
2529
  .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item.e-active.e-item-focus {
2493
2530
  background-color: #400074;
2494
- border: 1px solid #400074;
2495
2531
  box-shadow: none;
2496
2532
  color: #fff;
2533
+ border: 1px solid #400074;
2497
2534
  }
2498
2535
 
2499
2536
  .e-popup.e-multi-select-list-wrapper .e-list-item {
@@ -2617,6 +2654,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
2617
2654
  .e-listbox-wrapper,
2618
2655
  .e-listbox-container {
2619
2656
  -webkit-overflow-scrolling: touch;
2657
+ box-sizing: border-box;
2620
2658
  cursor: pointer;
2621
2659
  display: block;
2622
2660
  position: relative;
@@ -2664,11 +2702,6 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
2664
2702
  overflow: inherit;
2665
2703
  }
2666
2704
 
2667
- .e-listbox-wrapper.e-filter-list .e-list-parent,
2668
- .e-listbox-container.e-filter-list .e-list-parent {
2669
- overflow: auto;
2670
- }
2671
-
2672
2705
  .e-listbox-wrapper .e-list-parent,
2673
2706
  .e-listbox-container .e-list-parent {
2674
2707
  height: 100%;
@@ -2748,7 +2781,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
2748
2781
  font-weight: 600;
2749
2782
  height: 36px;
2750
2783
  line-height: 30px;
2751
- padding: 0 12px;
2784
+ padding: 9px 16px;
2752
2785
  }
2753
2786
 
2754
2787
  .e-listbox-wrapper .e-icon-collapsible,
@@ -2951,6 +2984,14 @@ ejs-listbox {
2951
2984
  overflow: auto;
2952
2985
  }
2953
2986
 
2987
+ .e-listbox-wrapper.e-filter-list {
2988
+ overflow: inherit;
2989
+ }
2990
+
2991
+ .e-listbox-wrapper.e-filter-list .e-list-parent {
2992
+ overflow: auto;
2993
+ }
2994
+
2954
2995
  .e-listbox-wrapper.e-sortableclone,
2955
2996
  .e-listbox-container.e-sortableclone {
2956
2997
  border-width: 0;
@@ -3187,16 +3228,6 @@ ejs-listbox {
3187
3228
  height: calc(100% - 51px);
3188
3229
  }
3189
3230
 
3190
- .e-listbox-wrapper.e-select-all .e-list-parent,
3191
- .e-listbox-container.e-select-all .e-list-parent {
3192
- height: calc(100% - 36px);
3193
- }
3194
-
3195
- .e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
3196
- .e-listbox-container.e-filter-list.e-select-all .e-list-parent {
3197
- height: calc(100% - 87px);
3198
- }
3199
-
3200
3231
  .e-listbox-wrapper .e-icons,
3201
3232
  .e-listbox-container .e-icons {
3202
3233
  color: #000;
@@ -36,9 +36,13 @@
36
36
  }
37
37
 
38
38
  .e-bigger .e-dropdownbase .e-list-item,
39
+ .e-dropdownbase.e-bigger .e-list-item {
40
+ line-height: 48px;
41
+ text-indent: 10px;
42
+ }
43
+
39
44
  .e-bigger .e-dropdownbase .e-list-group-item,
40
45
  .e-bigger .e-dropdownbase .e-fixed-head,
41
- .e-dropdownbase.e-bigger .e-list-item,
42
46
  .e-dropdownbase.e-bigger .e-list-group-item,
43
47
  .e-dropdownbase.e-bigger .e-fixed-head {
44
48
  line-height: 48px;
@@ -172,6 +176,7 @@
172
176
  }
173
177
 
174
178
  .e-dropdownbase .e-list-item {
179
+ -webkit-tap-highlight-color: transparent;
175
180
  background-color: #000;
176
181
  border-bottom: 2px;
177
182
  border-color: transparent;
@@ -340,9 +345,9 @@
340
345
  border-color: transparent;
341
346
  color: #fff;
342
347
  font-family: inherit;
348
+ text-indent: 10px;
343
349
  font-size: 14px;
344
350
  padding-right: 16px;
345
- text-indent: 10px;
346
351
  }
347
352
 
348
353
  .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
@@ -496,7 +501,10 @@
496
501
  margin-left: -20px;
497
502
  }
498
503
 
499
- .e-bigger .e-ddl.e-popup .e-list-item,
504
+ .e-bigger .e-ddl.e-popup .e-list-item {
505
+ font-size: 15px;
506
+ }
507
+
500
508
  .e-bigger .e-ddl.e-popup .e-list-group-item {
501
509
  font-size: 15px;
502
510
  }
@@ -505,7 +513,10 @@
505
513
  padding: 4px 0;
506
514
  }
507
515
 
508
- .e-bigger.e-ddl.e-popup .e-list-item,
516
+ .e-bigger.e-ddl.e-popup .e-list-item {
517
+ font-size: 15px;
518
+ }
519
+
509
520
  .e-bigger.e-ddl.e-popup .e-list-group-item {
510
521
  font-size: 15px;
511
522
  }
@@ -524,6 +535,10 @@
524
535
  top: 0;
525
536
  }
526
537
 
538
+ .e-popup-full-page .e-popup-full-page.e-ddl.e-popup.e-ddl-device-filter {
539
+ margin: 0;
540
+ }
541
+
527
542
  .e-ddl.e-control-wrapper .e-ddl-disable-icon {
528
543
  position: relative;
529
544
  }
@@ -676,29 +691,41 @@ ejs-dropdownlist {
676
691
  }
677
692
 
678
693
  .e-small .e-ddl.e-popup .e-list-item,
694
+ .e-input-group.e-ddl.e-small .e-list-item {
695
+ font-size: 13px;
696
+ }
697
+
679
698
  .e-small .e-ddl.e-popup .e-list-group-item,
680
- .e-input-group.e-ddl.e-small .e-list-item,
681
699
  .e-input-group.e-ddl.e-small .e-list-group-item {
682
700
  font-size: 13px;
683
701
  }
684
702
 
685
703
  .e-small.e-ddl.e-popup .e-list-item,
704
+ .e-input-group.e-ddl.e-small .e-list-item {
705
+ font-size: 13px;
706
+ }
707
+
686
708
  .e-small.e-ddl.e-popup .e-list-group-item,
687
- .e-input-group.e-ddl.e-small .e-list-item,
688
709
  .e-input-group.e-ddl.e-small .e-list-group-item {
689
710
  font-size: 13px;
690
711
  }
691
712
 
692
713
  .e-bigger.e-small .e-ddl.e-popup .e-list-item,
714
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
715
+ font-size: 14px;
716
+ }
717
+
693
718
  .e-bigger.e-small .e-ddl.e-popup .e-list-group-item,
694
- .e-bigger .e-input-group.e-ddl.e-small .e-list-item,
695
719
  .e-bigger .e-input-group.e-ddl.e-small .e-list-group-item {
696
720
  font-size: 14px;
697
721
  }
698
722
 
699
723
  .e-bigger.e-small.e-ddl.e-popup .e-list-item,
724
+ .e-bigger .e-input-group.e-ddl.e-small .e-list-item {
725
+ font-size: 14px;
726
+ }
727
+
700
728
  .e-bigger.e-small.e-ddl.e-popup .e-list-group-item,
701
- .e-bigger .e-input-group.e-ddl.e-small .e-list-item,
702
729
  .e-bigger .e-input-group.e-ddl.e-small .e-list-group-item {
703
730
  font-size: 14px;
704
731
  }
@@ -1407,12 +1434,14 @@ ejs-dropdownlist {
1407
1434
  width: 100%;
1408
1435
  }
1409
1436
 
1410
- .e-multi-select-wrapper.e-delimiter .e-searcher {
1437
+ .e-multi-select-wrapper.e-delimiter .e-searcher,
1438
+ .e-multi-select-wrapper.e-delimiter .e-multi-searcher {
1411
1439
  height: 27px;
1412
1440
  vertical-align: middle;
1413
1441
  }
1414
1442
 
1415
- .e-multi-select-wrapper.e-delimiter .e-searcher .e-dropdownbase {
1443
+ .e-multi-select-wrapper.e-delimiter .e-searcher .e-dropdownbase,
1444
+ .e-multi-select-wrapper.e-delimiter .e-multi-searcher .e-dropdownbase {
1416
1445
  height: 100%;
1417
1446
  min-height: 100%;
1418
1447
  }
@@ -1673,6 +1702,7 @@ ejs-dropdownlist {
1673
1702
  }
1674
1703
 
1675
1704
  .e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
1705
+ .e-small.e-multiselect .e-down-icon .e-chips-close.e-close-hooker,
1676
1706
  .e-multiselect.e-input-group.e-control-container .e-multi-select-wrapper.e-down-icon .e-clear-icon {
1677
1707
  right: 27px;
1678
1708
  }
@@ -1687,7 +1717,8 @@ ejs-dropdownlist {
1687
1717
  right: auto;
1688
1718
  }
1689
1719
 
1690
- .e-bigger .e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
1720
+ .e-bigger .e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon,
1721
+ .e-bigger.e-multiselect.e-input-group.e-control-container.e-rtl .e-multi-select-wrapper.e-down-icon .e-clear-icon {
1691
1722
  left: 38px;
1692
1723
  right: auto;
1693
1724
  }
@@ -1903,7 +1934,7 @@ ejs-dropdownlist {
1903
1934
  padding-right: 16px;
1904
1935
  }
1905
1936
 
1906
- .e-multiselect.e-rtl .e-down-icon .e-chips-close.e-icon.e-close-hooker {
1937
+ .e-multiselect.e-rtl .e-down-icon .e-chips-close.e-close-hooker {
1907
1938
  left: 30px;
1908
1939
  }
1909
1940
 
@@ -1939,12 +1970,14 @@ ejs-dropdownlist {
1939
1970
  vertical-align: middle;
1940
1971
  }
1941
1972
 
1942
- .e-bigger .e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper {
1973
+ .e-bigger .e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper,
1974
+ .e-bigger.e-popup.e-multi-select-list-wrapper .e-list-item .e-checkbox-wrapper {
1943
1975
  bottom: 1px;
1944
1976
  margin-right: 10px;
1945
1977
  }
1946
1978
 
1947
- .e-bigger .e-popup.e-multi-select-list-wrapper.e-mulltiselect-group .e-list-group-item .e-checkbox-wrapper {
1979
+ .e-bigger .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper,
1980
+ .e-bigger.e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item .e-checkbox-wrapper {
1948
1981
  bottom: 1px;
1949
1982
  margin-right: 10px;
1950
1983
  }
@@ -2007,6 +2040,7 @@ ejs-dropdownlist {
2007
2040
  font-size: 14px;
2008
2041
  }
2009
2042
 
2043
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent,
2010
2044
  .e-bigger .e-multi-select-list-wrapper .e-selectall-parent {
2011
2045
  font-size: 14px;
2012
2046
  line-height: 46px;
@@ -2021,6 +2055,7 @@ ejs-dropdownlist {
2021
2055
  vertical-align: middle;
2022
2056
  }
2023
2057
 
2058
+ .e-bigger.e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper,
2024
2059
  .e-bigger .e-multi-select-list-wrapper .e-selectall-parent .e-checkbox-wrapper {
2025
2060
  bottom: 1px;
2026
2061
  margin-right: 10px;
@@ -2050,7 +2085,7 @@ ejs-dropdownlist {
2050
2085
  padding: 8px;
2051
2086
  }
2052
2087
 
2053
- .e-bigger .e-ddl.e-popup.e-multi-select-list-wrappe .e-filter-parent .e-input-filter,
2088
+ .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-filter,
2054
2089
  .e-bigger .e-ddl.e-popup.e-multi-select-list-wrapper .e-filter-parent .e-input-group.e-input-focus {
2055
2090
  padding: 4px 0;
2056
2091
  }
@@ -2091,6 +2126,7 @@ ejs-multiselect {
2091
2126
  display: block;
2092
2127
  }
2093
2128
 
2129
+ .e-small.e-multi-select-list-wrapper .e-selectall-parent,
2094
2130
  .e-small .e-multi-select-list-wrapper .e-selectall-parent {
2095
2131
  line-height: 26px;
2096
2132
  }
@@ -2119,6 +2155,7 @@ ejs-multiselect {
2119
2155
  margin-top: -2.9em;
2120
2156
  }
2121
2157
 
2158
+ .e-bigger.e-small.e-multi-select-list-wrapper .e-selectall-parent,
2122
2159
  .e-bigger.e-small .e-multi-select-list-wrapper .e-selectall-parent {
2123
2160
  line-height: 40px;
2124
2161
  }
@@ -2387,7 +2424,7 @@ ejs-multiselect {
2387
2424
  background-color: #ffd939;
2388
2425
  }
2389
2426
 
2390
- .e-multi-select-wrapper .e-chips.e-chip-selected:hover {
2427
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips.e-chip-selected:hover {
2391
2428
  background-color: #ffd939;
2392
2429
  }
2393
2430
 
@@ -2416,7 +2453,7 @@ ejs-multiselect {
2416
2453
  height: 26px;
2417
2454
  }
2418
2455
 
2419
- .e-multi-select-wrapper .e-chips:hover {
2456
+ .e-multiselect:not(.e-disabled) .e-multi-select-wrapper .e-chips:hover {
2420
2457
  background-color: #685708;
2421
2458
  }
2422
2459
 
@@ -2491,16 +2528,16 @@ ejs-multiselect {
2491
2528
 
2492
2529
  .e-popup.e-multi-select-list-wrapper .e-list-item.e-active.e-item-focus {
2493
2530
  background-color: #ffd939;
2494
- border: 1px solid #ffd939;
2495
2531
  box-shadow: none;
2496
2532
  color: #000;
2533
+ border: 1px solid #ffd939;
2497
2534
  }
2498
2535
 
2499
2536
  .e-popup.e-multi-select-list-wrapper.e-multiselect-group .e-list-group-item.e-active.e-item-focus {
2500
2537
  background-color: #ffd939;
2501
- border: 1px solid #ffd939;
2502
2538
  box-shadow: none;
2503
2539
  color: #000;
2540
+ border: 1px solid #ffd939;
2504
2541
  }
2505
2542
 
2506
2543
  .e-popup.e-multi-select-list-wrapper .e-list-item {
@@ -2624,6 +2661,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
2624
2661
  .e-listbox-wrapper,
2625
2662
  .e-listbox-container {
2626
2663
  -webkit-overflow-scrolling: touch;
2664
+ box-sizing: border-box;
2627
2665
  cursor: pointer;
2628
2666
  display: block;
2629
2667
  position: relative;
@@ -2671,11 +2709,6 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
2671
2709
  overflow: inherit;
2672
2710
  }
2673
2711
 
2674
- .e-listbox-wrapper.e-filter-list .e-list-parent,
2675
- .e-listbox-container.e-filter-list .e-list-parent {
2676
- overflow: auto;
2677
- }
2678
-
2679
2712
  .e-listbox-wrapper .e-list-parent,
2680
2713
  .e-listbox-container .e-list-parent {
2681
2714
  height: 100%;
@@ -2755,7 +2788,7 @@ e-ddl.e-popup.e-multi-select-list-wrapper.e-multiselct-group.e-checkbox .e-list-
2755
2788
  font-weight: 600;
2756
2789
  height: 36px;
2757
2790
  line-height: 30px;
2758
- padding: 0 12px;
2791
+ padding: 9px 16px;
2759
2792
  }
2760
2793
 
2761
2794
  .e-listbox-wrapper .e-icon-collapsible,
@@ -2958,6 +2991,14 @@ ejs-listbox {
2958
2991
  overflow: auto;
2959
2992
  }
2960
2993
 
2994
+ .e-listbox-wrapper.e-filter-list {
2995
+ overflow: inherit;
2996
+ }
2997
+
2998
+ .e-listbox-wrapper.e-filter-list .e-list-parent {
2999
+ overflow: auto;
3000
+ }
3001
+
2961
3002
  .e-listbox-wrapper.e-sortableclone,
2962
3003
  .e-listbox-container.e-sortableclone {
2963
3004
  border-width: 0;
@@ -3194,16 +3235,6 @@ ejs-listbox {
3194
3235
  height: calc(100% - 51px);
3195
3236
  }
3196
3237
 
3197
- .e-listbox-wrapper.e-select-all .e-list-parent,
3198
- .e-listbox-container.e-select-all .e-list-parent {
3199
- height: calc(100% - 36px);
3200
- }
3201
-
3202
- .e-listbox-wrapper.e-filter-list.e-select-all .e-list-parent,
3203
- .e-listbox-container.e-filter-list.e-select-all .e-list-parent {
3204
- height: calc(100% - 87px);
3205
- }
3206
-
3207
3238
  .e-listbox-wrapper .e-icons,
3208
3239
  .e-listbox-container .e-icons {
3209
3240
  color: #fff;