@syncfusion/ej2-dropdowns 23.1.39 → 23.1.40-85814

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 (276) hide show
  1. package/CHANGELOG.md +2042 -2036
  2. package/{README.md → ReadMe.md} +217 -217
  3. package/dist/ej2-dropdowns.umd.min.js +0 -9
  4. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-dropdowns.es2015.js +56 -56
  6. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es5.js +198 -198
  8. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  9. package/dist/global/ej2-dropdowns.min.js +0 -9
  10. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  11. package/dist/global/index.d.ts +0 -9
  12. package/dist/ts/auto-complete/auto-complete.ts +615 -0
  13. package/dist/ts/combo-box/combo-box.ts +1028 -0
  14. package/dist/ts/common/highlight-search.ts +57 -0
  15. package/dist/ts/common/incremental-search.ts +131 -0
  16. package/dist/ts/common/interface.ts +72 -0
  17. package/dist/ts/common/virtual-scroll.ts +354 -0
  18. package/dist/ts/drop-down-base/drop-down-base.ts +1838 -0
  19. package/dist/ts/drop-down-list/drop-down-list.ts +3889 -0
  20. package/dist/ts/drop-down-tree/drop-down-tree.ts +3750 -0
  21. package/dist/ts/list-box/list-box.ts +2736 -0
  22. package/dist/ts/mention/mention.ts +1828 -0
  23. package/dist/ts/multi-select/checkbox-selection.ts +547 -0
  24. package/dist/ts/multi-select/float-label.ts +176 -0
  25. package/dist/ts/multi-select/interface.ts +70 -0
  26. package/dist/ts/multi-select/multi-select.ts +4874 -0
  27. package/helpers/e2e/autocomplete.js +13 -13
  28. package/helpers/e2e/combobox.js +13 -13
  29. package/helpers/e2e/dropdownlist.js +13 -13
  30. package/helpers/e2e/index.js +3 -3
  31. package/helpers/e2e/listboxHelper.js +13 -13
  32. package/helpers/e2e/multiselect.js +13 -13
  33. package/license +2 -2
  34. package/package.json +79 -79
  35. package/src/auto-complete/auto-complete-model.d.ts +188 -188
  36. package/src/auto-complete/auto-complete.d.ts +12 -12
  37. package/src/auto-complete/auto-complete.js +21 -21
  38. package/src/combo-box/combo-box-model.d.ts +224 -224
  39. package/src/combo-box/combo-box.d.ts +27 -27
  40. package/src/combo-box/combo-box.js +29 -29
  41. package/src/common/virtual-scroll.js +46 -46
  42. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  43. package/src/drop-down-base/drop-down-base.d.ts +15 -15
  44. package/src/drop-down-base/drop-down-base.js +20 -20
  45. package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
  46. package/src/drop-down-list/drop-down-list.d.ts +4 -4
  47. package/src/drop-down-list/drop-down-list.js +20 -20
  48. package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
  49. package/src/drop-down-tree/drop-down-tree.js +19 -19
  50. package/src/list-box/list-box-model.d.ts +193 -193
  51. package/src/list-box/list-box.d.ts +2 -2
  52. package/src/list-box/list-box.js +19 -19
  53. package/src/mention/mention-model.d.ts +261 -261
  54. package/src/mention/mention.js +19 -19
  55. package/src/multi-select/multi-select-model.d.ts +512 -512
  56. package/src/multi-select/multi-select.js +19 -19
  57. package/styles/auto-complete/_all.scss +1 -1
  58. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  59. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  60. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  61. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  62. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  63. package/styles/auto-complete/_fabric-definition.scss +2 -2
  64. package/styles/auto-complete/_fluent-definition.scss +2 -2
  65. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  66. package/styles/auto-complete/_highcontrast-definition.scss +2 -2
  67. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  68. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  69. package/styles/auto-complete/_material-definition.scss +2 -2
  70. package/styles/auto-complete/_material3-definition.scss +2 -2
  71. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  72. package/styles/auto-complete/bootstrap4.css +13 -2
  73. package/styles/auto-complete/material3-dark.scss +1 -1
  74. package/styles/auto-complete/material3.scss +1 -1
  75. package/styles/bootstrap4.css +32 -2
  76. package/styles/combo-box/_all.scss +1 -1
  77. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  78. package/styles/combo-box/_bootstrap-definition.scss +2 -2
  79. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  80. package/styles/combo-box/_bootstrap5-definition.scss +2 -2
  81. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  82. package/styles/combo-box/_fabric-definition.scss +2 -2
  83. package/styles/combo-box/_fluent-definition.scss +2 -2
  84. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  85. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  86. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  87. package/styles/combo-box/_material-dark-definition.scss +2 -2
  88. package/styles/combo-box/_material-definition.scss +2 -2
  89. package/styles/combo-box/_material3-definition.scss +2 -2
  90. package/styles/combo-box/_tailwind-definition.scss +2 -2
  91. package/styles/combo-box/bootstrap4.css +13 -2
  92. package/styles/combo-box/material3-dark.scss +1 -1
  93. package/styles/combo-box/material3.scss +1 -1
  94. package/styles/drop-down-base/_all.scss +2 -2
  95. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  96. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  97. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  98. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  99. package/styles/drop-down-base/_definition.scss +23 -23
  100. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  101. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  102. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  103. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  104. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  105. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  106. package/styles/drop-down-base/_layout.scss +195 -195
  107. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  108. package/styles/drop-down-base/_material-definition.scss +85 -85
  109. package/styles/drop-down-base/_material3-definition.scss +87 -87
  110. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  111. package/styles/drop-down-base/_theme.scss +391 -391
  112. package/styles/drop-down-base/material3-dark.scss +1 -1
  113. package/styles/drop-down-base/material3.scss +1 -1
  114. package/styles/drop-down-list/_all.scss +3 -3
  115. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  116. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  117. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -191
  118. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  119. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  120. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  121. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  122. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  123. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  124. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  125. package/styles/drop-down-list/_layout.scss +310 -310
  126. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  127. package/styles/drop-down-list/_material-definition.scss +167 -167
  128. package/styles/drop-down-list/_material3-definition.scss +180 -180
  129. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  130. package/styles/drop-down-list/_theme.scss +10 -10
  131. package/styles/drop-down-list/bootstrap4.css +13 -2
  132. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  133. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  134. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  135. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  136. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  137. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  138. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  139. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  140. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  141. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  142. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  143. package/styles/drop-down-list/icons/_material.scss +14 -14
  144. package/styles/drop-down-list/icons/_material3.scss +14 -14
  145. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  146. package/styles/drop-down-list/material3-dark.scss +1 -1
  147. package/styles/drop-down-list/material3.scss +1 -1
  148. package/styles/drop-down-tree/_all.scss +2 -2
  149. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
  150. package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
  151. package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
  152. package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
  153. package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
  154. package/styles/drop-down-tree/_fabric-definition.scss +71 -71
  155. package/styles/drop-down-tree/_fluent-definition.scss +65 -65
  156. package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
  157. package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
  158. package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
  159. package/styles/drop-down-tree/_layout.scss +1418 -1412
  160. package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
  161. package/styles/drop-down-tree/_material-definition.scss +72 -72
  162. package/styles/drop-down-tree/_material3-definition.scss +76 -76
  163. package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
  164. package/styles/drop-down-tree/_theme.scss +132 -132
  165. package/styles/drop-down-tree/fluent-dark.css +2 -0
  166. package/styles/drop-down-tree/fluent.css +2 -0
  167. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  168. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  169. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  170. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  171. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  172. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  173. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  174. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  175. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  176. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  177. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  178. package/styles/drop-down-tree/icons/_material.scss +11 -11
  179. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  180. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  181. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  182. package/styles/drop-down-tree/material3-dark.scss +1 -1
  183. package/styles/drop-down-tree/material3.scss +1 -1
  184. package/styles/fluent-dark.css +2 -0
  185. package/styles/fluent.css +2 -0
  186. package/styles/list-box/_all.scss +2 -2
  187. package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
  188. package/styles/list-box/_bootstrap-definition.scss +119 -119
  189. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  190. package/styles/list-box/_bootstrap5-definition.scss +120 -120
  191. package/styles/list-box/_fabric-dark-definition.scss +126 -126
  192. package/styles/list-box/_fabric-definition.scss +119 -119
  193. package/styles/list-box/_fluent-definition.scss +120 -120
  194. package/styles/list-box/_fusionnew-definition.scss +111 -111
  195. package/styles/list-box/_highcontrast-definition.scss +119 -119
  196. package/styles/list-box/_highcontrast-light-definition.scss +126 -126
  197. package/styles/list-box/_layout.scss +542 -542
  198. package/styles/list-box/_material-dark-definition.scss +126 -126
  199. package/styles/list-box/_material-definition.scss +119 -119
  200. package/styles/list-box/_material3-definition.scss +119 -119
  201. package/styles/list-box/_tailwind-definition.scss +119 -119
  202. package/styles/list-box/_theme.scss +382 -382
  203. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  204. package/styles/list-box/icons/_bootstrap.scss +25 -25
  205. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  206. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  207. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  208. package/styles/list-box/icons/_fabric.scss +25 -25
  209. package/styles/list-box/icons/_fluent.scss +25 -25
  210. package/styles/list-box/icons/_fusionnew.scss +25 -25
  211. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  212. package/styles/list-box/icons/_highcontrast.scss +25 -25
  213. package/styles/list-box/icons/_material-dark.scss +25 -25
  214. package/styles/list-box/icons/_material.scss +25 -25
  215. package/styles/list-box/icons/_material3.scss +25 -25
  216. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  217. package/styles/list-box/icons/_tailwind.scss +25 -25
  218. package/styles/list-box/material3-dark.scss +1 -1
  219. package/styles/list-box/material3.scss +1 -1
  220. package/styles/material3-dark.scss +1 -1
  221. package/styles/material3.scss +1 -1
  222. package/styles/mention/_all.scss +1 -1
  223. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  224. package/styles/mention/_bootstrap-definition.scss +3 -3
  225. package/styles/mention/_bootstrap4-definition.scss +3 -3
  226. package/styles/mention/_bootstrap5-definition.scss +1 -1
  227. package/styles/mention/_fabric-dark-definition.scss +2 -2
  228. package/styles/mention/_fabric-definition.scss +3 -3
  229. package/styles/mention/_fluent-definition.scss +1 -1
  230. package/styles/mention/_fusionnew-definition.scss +1 -1
  231. package/styles/mention/_highcontrast-definition.scss +3 -3
  232. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  233. package/styles/mention/_layout.scss +6 -6
  234. package/styles/mention/_material-dark-definition.scss +3 -3
  235. package/styles/mention/_material-definition.scss +3 -3
  236. package/styles/mention/_material3-definition.scss +1 -1
  237. package/styles/mention/_tailwind-definition.scss +1 -1
  238. package/styles/mention/material3-dark.scss +1 -1
  239. package/styles/mention/material3.scss +1 -1
  240. package/styles/multi-select/_all.scss +2 -2
  241. package/styles/multi-select/_bootstrap-dark-definition.scss +198 -198
  242. package/styles/multi-select/_bootstrap-definition.scss +192 -192
  243. package/styles/multi-select/_bootstrap4-definition.scss +278 -259
  244. package/styles/multi-select/_bootstrap5-definition.scss +229 -229
  245. package/styles/multi-select/_fabric-dark-definition.scss +187 -187
  246. package/styles/multi-select/_fabric-definition.scss +183 -183
  247. package/styles/multi-select/_fluent-definition.scss +240 -240
  248. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  249. package/styles/multi-select/_highcontrast-definition.scss +298 -298
  250. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  251. package/styles/multi-select/_layout.scss +2199 -2199
  252. package/styles/multi-select/_material-dark-definition.scss +230 -230
  253. package/styles/multi-select/_material-definition.scss +223 -223
  254. package/styles/multi-select/_material3-definition.scss +246 -246
  255. package/styles/multi-select/_tailwind-definition.scss +234 -234
  256. package/styles/multi-select/_theme.scss +586 -586
  257. package/styles/multi-select/bootstrap4.css +19 -0
  258. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  259. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  260. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  261. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  262. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  263. package/styles/multi-select/icons/_fabric.scss +26 -26
  264. package/styles/multi-select/icons/_fluent.scss +55 -55
  265. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  266. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  267. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  268. package/styles/multi-select/icons/_material-dark.scss +693 -693
  269. package/styles/multi-select/icons/_material.scss +693 -693
  270. package/styles/multi-select/icons/_material3.scss +692 -692
  271. package/styles/multi-select/icons/_tailwind.scss +26 -26
  272. package/styles/multi-select/material3-dark.scss +1 -1
  273. package/styles/multi-select/material3.scss +1 -1
  274. package/.eslintrc.json +0 -260
  275. package/dist/ej2-dropdowns.min.js +0 -10
  276. package/tslint.json +0 -111
@@ -1,391 +1,391 @@
1
- @include export-module('dropdownbase-theme') {
2
- .e-rtl {
3
- #{if(&, '&', '*')} .e-dropdownbase {
4
- #{if(&, '&', '*')} .e-list-item {
5
- padding-left: $ddl-list-rtl-padding-left;
6
- padding-right: $ddl-list-rtl-padding-right;
7
- }
8
-
9
- #{if(&, '&', '*')}.e-dd-group .e-list-item {
10
- @if $skin-name == 'tailwind' {
11
- padding-right: $ddl-group-list-padding-left;
12
- }
13
- }
14
-
15
- #{if(&, '&', '*')} .e-list-group-item,
16
- #{if(&, '&', '*')} .e-fixed-head {
17
- @if $skin-name == 'tailwind' {
18
- padding-right: $ddl-list-header-padding-left;
19
- }
20
- }
21
- }
22
- }
23
-
24
- // Rtl small size
25
-
26
- .e-small.e-rtl,
27
- .e-small .e-rtl,
28
- .e-rtl .e-small {
29
- #{if(&, '&', '*')} .e-dropdownbase {
30
- #{if(&, '&', '*')} .e-list-item {
31
- padding-left: $ddl-list-rtl-padding-left;
32
- padding-right: $ddl-list-rtl-padding-right;
33
- }
34
-
35
- #{if(&, '&', '*')}.e-dd-group .e-list-item {
36
- @if $skin-name == 'tailwind' {
37
- padding-right: $ddl-group-list-small-padding-left;
38
- }
39
- }
40
-
41
- #{if(&, '&', '*')} .e-list-group-item,
42
- #{if(&, '&', '*')} .e-fixed-head {
43
- @if $skin-name == 'tailwind' {
44
- padding-right: $ddl-list-header-small-padding-left;
45
- }
46
- }
47
- }
48
- }
49
-
50
- // Rtl bigger size
51
-
52
- .e-bigger.e-rtl,
53
- .e-bigger .e-rtl,
54
- .e-rtl .e-bigger {
55
- #{if(&, '&', '*')} .e-dropdownbase {
56
- #{if(&, '&', '*')} .e-list-group-item,
57
- #{if(&, '&', '*')} .e-fixed-head {
58
- @if $skin-name == 'tailwind' {
59
- padding-right: $ddl-list-header-bigger-padding-left;
60
- }
61
- }
62
-
63
- #{if(&, '&', '*')}.e-dd-group .e-list-item {
64
- @if $skin-name == 'tailwind' {
65
- padding-right: $ddl-group-list-bigger-padding-left;
66
- }
67
- }
68
- }
69
- }
70
-
71
- // Rtl bigger small size
72
-
73
- .e-small.e-bigger.e-rtl,
74
- .e-small.e-bigger .e-rtl,
75
- .e-rtl .e-small.e-bigger,
76
- .e-small .e-rtl.e-bigger,
77
- .e-bigger .e-rtl.e-small {
78
- #{if(&, '&', '*')} .e-dropdownbase {
79
- #{if(&, '&', '*')} .e-list-item {
80
- padding-left: $ddl-list-rtl-padding-left;
81
- padding-right: $ddl-list-rtl-padding-right;
82
- }
83
-
84
- #{if(&, '&', '*')}.e-dd-group .e-list-item {
85
- @if $skin-name == 'tailwind' {
86
- padding-right: $ddl-group-list-bigger-small-padding-left;
87
- }
88
- }
89
-
90
- #{if(&, '&', '*')} .e-list-group-item,
91
- #{if(&, '&', '*')} .e-fixed-head {
92
- @if $skin-name == 'tailwind' {
93
- padding-right: $ddl-list-header-bigger-small-padding-left;
94
- }
95
- }
96
- }
97
- }
98
-
99
- .e-dropdownbase {
100
- border-color: $ddl-list-border-color;
101
- @if $skin-name == 'Material3' {
102
- background: $ddl-list-bg-color;
103
- }
104
- @at-root {
105
- #{if(&, '&', '*')} .e-list-item {
106
- /* stylelint-disable property-no-vendor-prefix */
107
- -webkit-tap-highlight-color: $ddl-list-tap-color;
108
- border-bottom: $ddl-list-bottom-border;
109
- border-color: $ddl-list-gradient-color;
110
- color: $ddl-list-default-font-color;
111
- font-family: $ddl-list-font-family;
112
- font-size: $ddl-list-font-size;
113
- line-height: $ddl-list-line-height;
114
- min-height: $ddl-list-line-height;
115
- padding-right: $ddl-list-padding-right;
116
- text-indent: $ddl-list-text-indent;
117
- @if $skin-name == 'Material3' {
118
- background: $ddl-list-bg-color;
119
- }
120
- @if $skin-name != 'Material3' {
121
- background-color: $ddl-list-bg-color;
122
- }
123
- }
124
-
125
- #{if(&, '&', '*')} .e-list-group-item,
126
- .e-fixed-head {
127
- border-color: $ddl-list-gradient-color;
128
- color: $ddl-list-header-font-color;
129
- font-family: $ddl-list-font-family;
130
- font-size: $ddl-list-header-font-size;
131
- font-weight: $ddl-header-font-weight;
132
- line-height: $ddl-list-line-height;
133
- min-height: $ddl-list-line-height;
134
- padding-left: $ddl-list-header-padding-left;
135
- padding-right: $ddl-list-padding-right;
136
- @if $skin-name == 'Material3' {
137
- background: $ddl-list-bg-color;
138
- }
139
- @if $skin-name != 'Material3' {
140
- background-color: $ddl-list-bg-color;
141
- }
142
- }
143
-
144
- #{if(&, '&', '*')} .e-list-item.e-active,
145
- #{if(&, '&', '*')} .e-list-item.e-active.e-hover {
146
- @if $skin-name == 'Material3' {
147
- background: $ddl-list-active-bg-color;
148
- }
149
- @if $skin-name != 'Material3' {
150
- background-color: $ddl-list-active-bg-color;
151
- }
152
- border-color: $ddl-list-active-border-color;
153
- color: $ddl-list-active-font-color;
154
- }
155
-
156
- #{if(&, '&', '*')} .e-list-item.e-hover {
157
- @if $skin-name == 'Material3' {
158
- background: $ddl-list-hover-bg-color;
159
- }
160
- @if $skin-name != 'Material3' {
161
- background-color: $ddl-list-hover-bg-color;
162
- }
163
- border-color: $ddl-list-hover-border-color;
164
- color: $ddl-list-hover-font-color;
165
- }
166
-
167
- #{if(&, '&', '*')} .e-list-item:active {
168
- @if $skin-name == 'Material3' {
169
- background: $ddl-list-pressed-bg-color;
170
- }
171
- }
172
-
173
- #{if(&, '&', '*')} .e-list-item:last-child {
174
- border-bottom: $ddl-last-child-bottom-border;
175
- }
176
-
177
- #{if(&, '&', '*')} .e-list-item.e-item-focus {
178
- @if $skin-name == 'Material3' {
179
- background: $ddl-list-focus-bg-color;
180
- }
181
- @if $skin-name != 'Material3' {
182
- background-color: $ddl-list-hover-bg-color;
183
- }
184
- }
185
-
186
- #{if(&, '&', '*')} .e-list-item.e-active:last-child {
187
- @if ($skin-name == 'bootstrap5') {
188
- border-radius: 2px;
189
- }
190
- }
191
- }
192
- }
193
-
194
- .e-bigger .e-dropdownbase {
195
- @at-root {
196
- #{if(&, '&', '*')} .e-list-group-item,
197
- #{if(&, '&', '*')} .e-fixed-head {
198
- font-size: $ddl-bigger-list-header-font-size;
199
- padding-left: $ddl-list-header-bigger-padding-left;
200
- }
201
- }
202
- }
203
-
204
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open table {
205
- border-collapse: collapse;
206
- table-layout: fixed;
207
- width: 100%;
208
- }
209
-
210
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th,
211
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open td {
212
- display: table-cell;
213
- overflow: hidden;
214
- padding-right: 16px;
215
- text-indent: 10px;
216
- text-overflow: ellipsis;
217
- }
218
-
219
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th {
220
- line-height: 36px;
221
- text-align: left;
222
- }
223
-
224
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header {
225
- @if $skin-name == 'Material3' {
226
- background: $ddl-list-bg-color;
227
- }
228
- @if $skin-name != 'Material3' {
229
- background-color: $ddl-list-bg-color;
230
- }
231
- border-color: $ddl-multi-column-border-color;
232
- border-style: solid;
233
- border-width: $ddl-multi-column-border-width;
234
- color: $ddl-list-header-font-color;
235
- font-family: $ddl-list-font-family;
236
- font-size: $ddl-group-list-font-size;
237
- font-weight: $ddl-header-font-weight;
238
- text-indent: 10px;
239
- }
240
-
241
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-dropdownbase .e-list-item {
242
- padding-right: 0;
243
- }
244
-
245
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-scroller .e-ddl-header {
246
- padding-right: 16px;
247
- }
248
-
249
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header,
250
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-ddl-device .e-ddl-header {
251
- padding-right: 0;
252
- }
253
-
254
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-center {
255
- text-align: center;
256
- }
257
-
258
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-right {
259
- text-align: right;
260
- }
261
-
262
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-left {
263
- text-align: left;
264
- }
265
-
266
- // small size
267
- .e-small .e-dropdownbase,
268
- .e-dropdownbase.e-small {
269
- @at-root {
270
- #{if(&, '&', '*')} .e-list-item {
271
- color: $ddl-small-list-font-color;
272
- line-height: $ddl-small-line-height;
273
- min-height: $ddl-small-line-height;
274
- text-indent: $ddl-small-list-text-indent;
275
- }
276
-
277
- #{if(&, '&', '*')} .e-list-group-item,
278
- #{if(&, '&', '*')} .e-fixed-head {
279
- font-size: $ddl-small-list-header-font-size;
280
- line-height: $ddl-small-line-height;
281
- min-height: $ddl-small-line-height;
282
- padding-left: $ddl-list-header-small-padding-left;
283
- }
284
-
285
- #{if(&, '&', '*')} .e-list-item .e-list-icon {
286
- font-size: $ddl-small-icon-font-size;
287
- }
288
- }
289
- }
290
-
291
- // Bigger small size
292
-
293
- .e-bigger.e-small .e-dropdownbase,
294
- .e-dropdownbase.e-small.e-bigger {
295
- @at-root {
296
- #{if(&, '&', '*')} .e-list-item {
297
- color: $ddl-bigger-small-list-font-color;
298
- line-height: $ddl-bigger-small-line-height;
299
- min-height: $ddl-bigger-small-line-height;
300
- text-indent: $ddl-bigger-small-list-text-indent;
301
- }
302
-
303
- #{if(&, '&', '*')} .e-list-group-item,
304
- #{if(&, '&', '*')} .e-fixed-head {
305
- line-height: $ddl-bigger-small-line-height;
306
- min-height: $ddl-bigger-small-line-height;
307
- padding-left: $ddl-list-header-bigger-small-padding-left;
308
- }
309
-
310
- #{if(&, '&', '*')} .e-list-item .e-list-icon {
311
- font-size: $ddl-bigger-small-icon-font-size;
312
- }
313
- }
314
- }
315
-
316
- .e-bigger.e-small .e-dropdownbase,
317
- .e-dropdownbase.e-bigger.e-small {
318
- @at-root {
319
- #{if(&, '&', '*')} .e-list-group-item,
320
- #{if(&, '&', '*')} .e-fixed-head {
321
- font-size: $ddl-bigger-small-list-header-font-size;
322
- }
323
- }
324
- }
325
-
326
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item {
327
- @if $skin-name == 'Material3' {
328
- background: $ddl-list-bg-color;
329
- }
330
- @if $skin-name != 'Material3' {
331
- background-color: $ddl-list-bg-color;
332
- }
333
- border-bottom: $ddl-list-bottom-border;
334
- border-color: $ddl-list-gradient-color;
335
- color: $ddl-list-default-font-color;
336
- font-family: $ddl-list-font-family;
337
- text-indent: $ddl-list-text-indent;
338
- @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI') {
339
- color: $ddl-list-header-font-color;
340
- }
341
- @if $skin-name != 'tailwind' and $skin-name != 'FluentUI' {
342
- font-size: $ddl-list-font-size;
343
- padding-right: $ddl-list-padding-right;
344
- }
345
- }
346
-
347
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
348
- @if $skin-name == 'Material3' {
349
- background: $ddl-list-hover-bg-color;
350
- }
351
- @if $skin-name != 'Material3' {
352
- background-color: $ddl-list-hover-bg-color;
353
- }
354
- }
355
-
356
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
357
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
358
- @if $skin-name == 'Material3' {
359
- background: $ddl-list-active-bg-color;
360
- }
361
- @if $skin-name != 'Material3' {
362
- background-color: $ddl-list-active-bg-color;
363
- }
364
- border-color: $ddl-list-active-border-color;
365
- color: $ddl-list-active-font-color;
366
- }
367
-
368
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
369
- @if $skin-name == 'Material3' {
370
- background: $ddl-list-hover-bg-color;
371
- }
372
- @if $skin-name != 'Material3' {
373
- background-color: $ddl-list-hover-bg-color;
374
- }
375
- border-color: $ddl-list-hover-border-color;
376
- color: $ddl-list-hover-font-color;
377
- @if $skin-name == 'FluentUI' {
378
- color: $ddl-list-header-font-color;
379
- }
380
- }
381
-
382
- .e-dropdownbase .e-list-item .e-list-icon {
383
- @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
384
- color: $ddl-list-icon-color;
385
- }
386
- }
387
-
388
- .e-selectall-parent.e-item-focus{
389
- background-color: $ddl-list-hover-bg-color;
390
- }
391
- }
1
+ @include export-module('dropdownbase-theme') {
2
+ .e-rtl {
3
+ #{if(&, '&', '*')} .e-dropdownbase {
4
+ #{if(&, '&', '*')} .e-list-item {
5
+ padding-left: $ddl-list-rtl-padding-left;
6
+ padding-right: $ddl-list-rtl-padding-right;
7
+ }
8
+
9
+ #{if(&, '&', '*')}.e-dd-group .e-list-item {
10
+ @if $skin-name == 'tailwind' {
11
+ padding-right: $ddl-group-list-padding-left;
12
+ }
13
+ }
14
+
15
+ #{if(&, '&', '*')} .e-list-group-item,
16
+ #{if(&, '&', '*')} .e-fixed-head {
17
+ @if $skin-name == 'tailwind' {
18
+ padding-right: $ddl-list-header-padding-left;
19
+ }
20
+ }
21
+ }
22
+ }
23
+
24
+ // Rtl small size
25
+
26
+ .e-small.e-rtl,
27
+ .e-small .e-rtl,
28
+ .e-rtl .e-small {
29
+ #{if(&, '&', '*')} .e-dropdownbase {
30
+ #{if(&, '&', '*')} .e-list-item {
31
+ padding-left: $ddl-list-rtl-padding-left;
32
+ padding-right: $ddl-list-rtl-padding-right;
33
+ }
34
+
35
+ #{if(&, '&', '*')}.e-dd-group .e-list-item {
36
+ @if $skin-name == 'tailwind' {
37
+ padding-right: $ddl-group-list-small-padding-left;
38
+ }
39
+ }
40
+
41
+ #{if(&, '&', '*')} .e-list-group-item,
42
+ #{if(&, '&', '*')} .e-fixed-head {
43
+ @if $skin-name == 'tailwind' {
44
+ padding-right: $ddl-list-header-small-padding-left;
45
+ }
46
+ }
47
+ }
48
+ }
49
+
50
+ // Rtl bigger size
51
+
52
+ .e-bigger.e-rtl,
53
+ .e-bigger .e-rtl,
54
+ .e-rtl .e-bigger {
55
+ #{if(&, '&', '*')} .e-dropdownbase {
56
+ #{if(&, '&', '*')} .e-list-group-item,
57
+ #{if(&, '&', '*')} .e-fixed-head {
58
+ @if $skin-name == 'tailwind' {
59
+ padding-right: $ddl-list-header-bigger-padding-left;
60
+ }
61
+ }
62
+
63
+ #{if(&, '&', '*')}.e-dd-group .e-list-item {
64
+ @if $skin-name == 'tailwind' {
65
+ padding-right: $ddl-group-list-bigger-padding-left;
66
+ }
67
+ }
68
+ }
69
+ }
70
+
71
+ // Rtl bigger small size
72
+
73
+ .e-small.e-bigger.e-rtl,
74
+ .e-small.e-bigger .e-rtl,
75
+ .e-rtl .e-small.e-bigger,
76
+ .e-small .e-rtl.e-bigger,
77
+ .e-bigger .e-rtl.e-small {
78
+ #{if(&, '&', '*')} .e-dropdownbase {
79
+ #{if(&, '&', '*')} .e-list-item {
80
+ padding-left: $ddl-list-rtl-padding-left;
81
+ padding-right: $ddl-list-rtl-padding-right;
82
+ }
83
+
84
+ #{if(&, '&', '*')}.e-dd-group .e-list-item {
85
+ @if $skin-name == 'tailwind' {
86
+ padding-right: $ddl-group-list-bigger-small-padding-left;
87
+ }
88
+ }
89
+
90
+ #{if(&, '&', '*')} .e-list-group-item,
91
+ #{if(&, '&', '*')} .e-fixed-head {
92
+ @if $skin-name == 'tailwind' {
93
+ padding-right: $ddl-list-header-bigger-small-padding-left;
94
+ }
95
+ }
96
+ }
97
+ }
98
+
99
+ .e-dropdownbase {
100
+ border-color: $ddl-list-border-color;
101
+ @if $skin-name == 'Material3' {
102
+ background: $ddl-list-bg-color;
103
+ }
104
+ @at-root {
105
+ #{if(&, '&', '*')} .e-list-item {
106
+ /* stylelint-disable property-no-vendor-prefix */
107
+ -webkit-tap-highlight-color: $ddl-list-tap-color;
108
+ border-bottom: $ddl-list-bottom-border;
109
+ border-color: $ddl-list-gradient-color;
110
+ color: $ddl-list-default-font-color;
111
+ font-family: $ddl-list-font-family;
112
+ font-size: $ddl-list-font-size;
113
+ line-height: $ddl-list-line-height;
114
+ min-height: $ddl-list-line-height;
115
+ padding-right: $ddl-list-padding-right;
116
+ text-indent: $ddl-list-text-indent;
117
+ @if $skin-name == 'Material3' {
118
+ background: $ddl-list-bg-color;
119
+ }
120
+ @if $skin-name != 'Material3' {
121
+ background-color: $ddl-list-bg-color;
122
+ }
123
+ }
124
+
125
+ #{if(&, '&', '*')} .e-list-group-item,
126
+ .e-fixed-head {
127
+ border-color: $ddl-list-gradient-color;
128
+ color: $ddl-list-header-font-color;
129
+ font-family: $ddl-list-font-family;
130
+ font-size: $ddl-list-header-font-size;
131
+ font-weight: $ddl-header-font-weight;
132
+ line-height: $ddl-list-line-height;
133
+ min-height: $ddl-list-line-height;
134
+ padding-left: $ddl-list-header-padding-left;
135
+ padding-right: $ddl-list-padding-right;
136
+ @if $skin-name == 'Material3' {
137
+ background: $ddl-list-bg-color;
138
+ }
139
+ @if $skin-name != 'Material3' {
140
+ background-color: $ddl-list-bg-color;
141
+ }
142
+ }
143
+
144
+ #{if(&, '&', '*')} .e-list-item.e-active,
145
+ #{if(&, '&', '*')} .e-list-item.e-active.e-hover {
146
+ @if $skin-name == 'Material3' {
147
+ background: $ddl-list-active-bg-color;
148
+ }
149
+ @if $skin-name != 'Material3' {
150
+ background-color: $ddl-list-active-bg-color;
151
+ }
152
+ border-color: $ddl-list-active-border-color;
153
+ color: $ddl-list-active-font-color;
154
+ }
155
+
156
+ #{if(&, '&', '*')} .e-list-item.e-hover {
157
+ @if $skin-name == 'Material3' {
158
+ background: $ddl-list-hover-bg-color;
159
+ }
160
+ @if $skin-name != 'Material3' {
161
+ background-color: $ddl-list-hover-bg-color;
162
+ }
163
+ border-color: $ddl-list-hover-border-color;
164
+ color: $ddl-list-hover-font-color;
165
+ }
166
+
167
+ #{if(&, '&', '*')} .e-list-item:active {
168
+ @if $skin-name == 'Material3' {
169
+ background: $ddl-list-pressed-bg-color;
170
+ }
171
+ }
172
+
173
+ #{if(&, '&', '*')} .e-list-item:last-child {
174
+ border-bottom: $ddl-last-child-bottom-border;
175
+ }
176
+
177
+ #{if(&, '&', '*')} .e-list-item.e-item-focus {
178
+ @if $skin-name == 'Material3' {
179
+ background: $ddl-list-focus-bg-color;
180
+ }
181
+ @if $skin-name != 'Material3' {
182
+ background-color: $ddl-list-hover-bg-color;
183
+ }
184
+ }
185
+
186
+ #{if(&, '&', '*')} .e-list-item.e-active:last-child {
187
+ @if ($skin-name == 'bootstrap5') {
188
+ border-radius: 2px;
189
+ }
190
+ }
191
+ }
192
+ }
193
+
194
+ .e-bigger .e-dropdownbase {
195
+ @at-root {
196
+ #{if(&, '&', '*')} .e-list-group-item,
197
+ #{if(&, '&', '*')} .e-fixed-head {
198
+ font-size: $ddl-bigger-list-header-font-size;
199
+ padding-left: $ddl-list-header-bigger-padding-left;
200
+ }
201
+ }
202
+ }
203
+
204
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open table {
205
+ border-collapse: collapse;
206
+ table-layout: fixed;
207
+ width: 100%;
208
+ }
209
+
210
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th,
211
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open td {
212
+ display: table-cell;
213
+ overflow: hidden;
214
+ padding-right: 16px;
215
+ text-indent: 10px;
216
+ text-overflow: ellipsis;
217
+ }
218
+
219
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th {
220
+ line-height: 36px;
221
+ text-align: left;
222
+ }
223
+
224
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header {
225
+ @if $skin-name == 'Material3' {
226
+ background: $ddl-list-bg-color;
227
+ }
228
+ @if $skin-name != 'Material3' {
229
+ background-color: $ddl-list-bg-color;
230
+ }
231
+ border-color: $ddl-multi-column-border-color;
232
+ border-style: solid;
233
+ border-width: $ddl-multi-column-border-width;
234
+ color: $ddl-list-header-font-color;
235
+ font-family: $ddl-list-font-family;
236
+ font-size: $ddl-group-list-font-size;
237
+ font-weight: $ddl-header-font-weight;
238
+ text-indent: 10px;
239
+ }
240
+
241
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-dropdownbase .e-list-item {
242
+ padding-right: 0;
243
+ }
244
+
245
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-scroller .e-ddl-header {
246
+ padding-right: 16px;
247
+ }
248
+
249
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header,
250
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-ddl-device .e-ddl-header {
251
+ padding-right: 0;
252
+ }
253
+
254
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-center {
255
+ text-align: center;
256
+ }
257
+
258
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-right {
259
+ text-align: right;
260
+ }
261
+
262
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-left {
263
+ text-align: left;
264
+ }
265
+
266
+ // small size
267
+ .e-small .e-dropdownbase,
268
+ .e-dropdownbase.e-small {
269
+ @at-root {
270
+ #{if(&, '&', '*')} .e-list-item {
271
+ color: $ddl-small-list-font-color;
272
+ line-height: $ddl-small-line-height;
273
+ min-height: $ddl-small-line-height;
274
+ text-indent: $ddl-small-list-text-indent;
275
+ }
276
+
277
+ #{if(&, '&', '*')} .e-list-group-item,
278
+ #{if(&, '&', '*')} .e-fixed-head {
279
+ font-size: $ddl-small-list-header-font-size;
280
+ line-height: $ddl-small-line-height;
281
+ min-height: $ddl-small-line-height;
282
+ padding-left: $ddl-list-header-small-padding-left;
283
+ }
284
+
285
+ #{if(&, '&', '*')} .e-list-item .e-list-icon {
286
+ font-size: $ddl-small-icon-font-size;
287
+ }
288
+ }
289
+ }
290
+
291
+ // Bigger small size
292
+
293
+ .e-bigger.e-small .e-dropdownbase,
294
+ .e-dropdownbase.e-small.e-bigger {
295
+ @at-root {
296
+ #{if(&, '&', '*')} .e-list-item {
297
+ color: $ddl-bigger-small-list-font-color;
298
+ line-height: $ddl-bigger-small-line-height;
299
+ min-height: $ddl-bigger-small-line-height;
300
+ text-indent: $ddl-bigger-small-list-text-indent;
301
+ }
302
+
303
+ #{if(&, '&', '*')} .e-list-group-item,
304
+ #{if(&, '&', '*')} .e-fixed-head {
305
+ line-height: $ddl-bigger-small-line-height;
306
+ min-height: $ddl-bigger-small-line-height;
307
+ padding-left: $ddl-list-header-bigger-small-padding-left;
308
+ }
309
+
310
+ #{if(&, '&', '*')} .e-list-item .e-list-icon {
311
+ font-size: $ddl-bigger-small-icon-font-size;
312
+ }
313
+ }
314
+ }
315
+
316
+ .e-bigger.e-small .e-dropdownbase,
317
+ .e-dropdownbase.e-bigger.e-small {
318
+ @at-root {
319
+ #{if(&, '&', '*')} .e-list-group-item,
320
+ #{if(&, '&', '*')} .e-fixed-head {
321
+ font-size: $ddl-bigger-small-list-header-font-size;
322
+ }
323
+ }
324
+ }
325
+
326
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item {
327
+ @if $skin-name == 'Material3' {
328
+ background: $ddl-list-bg-color;
329
+ }
330
+ @if $skin-name != 'Material3' {
331
+ background-color: $ddl-list-bg-color;
332
+ }
333
+ border-bottom: $ddl-list-bottom-border;
334
+ border-color: $ddl-list-gradient-color;
335
+ color: $ddl-list-default-font-color;
336
+ font-family: $ddl-list-font-family;
337
+ text-indent: $ddl-list-text-indent;
338
+ @if ($skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI') {
339
+ color: $ddl-list-header-font-color;
340
+ }
341
+ @if $skin-name != 'tailwind' and $skin-name != 'FluentUI' {
342
+ font-size: $ddl-list-font-size;
343
+ padding-right: $ddl-list-padding-right;
344
+ }
345
+ }
346
+
347
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
348
+ @if $skin-name == 'Material3' {
349
+ background: $ddl-list-hover-bg-color;
350
+ }
351
+ @if $skin-name != 'Material3' {
352
+ background-color: $ddl-list-hover-bg-color;
353
+ }
354
+ }
355
+
356
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
357
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
358
+ @if $skin-name == 'Material3' {
359
+ background: $ddl-list-active-bg-color;
360
+ }
361
+ @if $skin-name != 'Material3' {
362
+ background-color: $ddl-list-active-bg-color;
363
+ }
364
+ border-color: $ddl-list-active-border-color;
365
+ color: $ddl-list-active-font-color;
366
+ }
367
+
368
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
369
+ @if $skin-name == 'Material3' {
370
+ background: $ddl-list-hover-bg-color;
371
+ }
372
+ @if $skin-name != 'Material3' {
373
+ background-color: $ddl-list-hover-bg-color;
374
+ }
375
+ border-color: $ddl-list-hover-border-color;
376
+ color: $ddl-list-hover-font-color;
377
+ @if $skin-name == 'FluentUI' {
378
+ color: $ddl-list-header-font-color;
379
+ }
380
+ }
381
+
382
+ .e-dropdownbase .e-list-item .e-list-icon {
383
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
384
+ color: $ddl-list-icon-color;
385
+ }
386
+ }
387
+
388
+ .e-selectall-parent.e-item-focus{
389
+ background-color: $ddl-list-hover-bg-color;
390
+ }
391
+ }