@syncfusion/ej2-dropdowns 18.1.57 → 18.2.44-4569

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 (183) hide show
  1. package/.eslintrc.json +244 -0
  2. package/CHANGELOG.md +1524 -1514
  3. package/README.md +118 -118
  4. package/dist/ej2-dropdowns.umd.min.js +1 -10
  5. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  6. package/dist/es6/ej2-dropdowns.es2015.js +198 -126
  7. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  8. package/dist/es6/ej2-dropdowns.es5.js +290 -217
  9. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  10. package/dist/global/ej2-dropdowns.min.js +1 -10
  11. package/dist/global/ej2-dropdowns.min.js.map +1 -1
  12. package/dist/global/index.d.ts +0 -9
  13. package/dist/ts/auto-complete/auto-complete.ts +527 -0
  14. package/dist/ts/combo-box/combo-box.ts +957 -0
  15. package/dist/ts/common/highlight-search.ts +47 -0
  16. package/dist/ts/common/incremental-search.ts +81 -0
  17. package/dist/ts/drop-down-base/drop-down-base.ts +1572 -0
  18. package/dist/ts/drop-down-list/drop-down-list.ts +2993 -0
  19. package/dist/ts/drop-down-tree/drop-down-tree.ts +3066 -0
  20. package/dist/ts/list-box/list-box.ts +2317 -0
  21. package/dist/ts/multi-select/checkbox-selection.ts +528 -0
  22. package/dist/ts/multi-select/float-label.ts +155 -0
  23. package/dist/ts/multi-select/interface.ts +66 -0
  24. package/dist/ts/multi-select/multi-select.ts +4216 -0
  25. package/helpers/e2e/index.js +3 -3
  26. package/license +2 -2
  27. package/package.json +77 -77
  28. package/src/auto-complete/auto-complete-model.d.ts +179 -179
  29. package/src/auto-complete/auto-complete.d.ts +12 -12
  30. package/src/auto-complete/auto-complete.js +21 -21
  31. package/src/combo-box/combo-box-model.d.ts +212 -212
  32. package/src/combo-box/combo-box.d.ts +27 -27
  33. package/src/combo-box/combo-box.js +29 -29
  34. package/src/common/incremental-search.d.ts +1 -1
  35. package/src/common/incremental-search.js +4 -2
  36. package/src/drop-down-base/drop-down-base-model.d.ts +191 -191
  37. package/src/drop-down-base/drop-down-base.d.ts +17 -17
  38. package/src/drop-down-base/drop-down-base.js +20 -20
  39. package/src/drop-down-list/drop-down-list-model.d.ts +222 -222
  40. package/src/drop-down-list/drop-down-list.d.ts +3 -2
  41. package/src/drop-down-list/drop-down-list.js +43 -30
  42. package/src/drop-down-tree/drop-down-tree-model.d.ts +344 -344
  43. package/src/drop-down-tree/drop-down-tree.js +32 -26
  44. package/src/list-box/index.d.ts +1 -0
  45. package/src/list-box/index.js +1 -0
  46. package/src/list-box/list-box-model.d.ts +156 -156
  47. package/src/list-box/list-box.d.ts +2 -2
  48. package/src/list-box/list-box.js +57 -59
  49. package/src/multi-select/index.d.ts +1 -0
  50. package/src/multi-select/index.js +1 -0
  51. package/src/multi-select/multi-select-model.d.ts +452 -452
  52. package/src/multi-select/multi-select.d.ts +2 -0
  53. package/src/multi-select/multi-select.js +98 -43
  54. package/styles/_all.scss +3 -3
  55. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  56. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  57. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  58. package/styles/auto-complete/_highcontrast-light-definition.scss +2 -2
  59. package/styles/auto-complete/_material-dark-definition.scss +2 -2
  60. package/styles/bootstrap-dark.css +67 -61
  61. package/styles/bootstrap.css +69 -63
  62. package/styles/bootstrap4.css +81 -61
  63. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  64. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  65. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  66. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  67. package/styles/combo-box/_material-dark-definition.scss +2 -2
  68. package/styles/drop-down-base/_all.scss +2 -2
  69. package/styles/drop-down-base/_bootstrap-dark-definition.scss +64 -64
  70. package/styles/drop-down-base/_bootstrap-definition.scss +64 -64
  71. package/styles/drop-down-base/_bootstrap4-definition.scss +78 -78
  72. package/styles/drop-down-base/_definition.scss +23 -23
  73. package/styles/drop-down-base/_fabric-dark-definition.scss +68 -68
  74. package/styles/drop-down-base/_fabric-definition.scss +66 -66
  75. package/styles/drop-down-base/_highcontrast-definition.scss +82 -82
  76. package/styles/drop-down-base/_highcontrast-light-definition.scss +81 -81
  77. package/styles/drop-down-base/_layout.scss +108 -108
  78. package/styles/drop-down-base/_material-dark-definition.scss +67 -67
  79. package/styles/drop-down-base/_material-definition.scss +65 -65
  80. package/styles/drop-down-base/_theme.scss +242 -242
  81. package/styles/drop-down-list/_all.scss +2 -2
  82. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  83. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  84. package/styles/drop-down-list/_bootstrap4-definition.scss +184 -184
  85. package/styles/drop-down-list/_fabric-dark-definition.scss +127 -127
  86. package/styles/drop-down-list/_fabric-definition.scss +122 -122
  87. package/styles/drop-down-list/_highcontrast-definition.scss +131 -131
  88. package/styles/drop-down-list/_highcontrast-light-definition.scss +133 -133
  89. package/styles/drop-down-list/_layout.scss +218 -218
  90. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  91. package/styles/drop-down-list/_material-definition.scss +166 -166
  92. package/styles/drop-down-list/_theme.scss +10 -10
  93. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  94. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  95. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  96. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  97. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  98. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  99. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  100. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  101. package/styles/drop-down-list/icons/_material.scss +14 -14
  102. package/styles/drop-down-list/material.css +9 -0
  103. package/styles/drop-down-tree/_all.scss +2 -2
  104. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +62 -49
  105. package/styles/drop-down-tree/_bootstrap-definition.scss +62 -49
  106. package/styles/drop-down-tree/_bootstrap4-definition.scss +63 -50
  107. package/styles/drop-down-tree/_fabric-dark-definition.scss +63 -49
  108. package/styles/drop-down-tree/_fabric-definition.scss +63 -49
  109. package/styles/drop-down-tree/_highcontrast-definition.scss +63 -49
  110. package/styles/drop-down-tree/_highcontrast-light-definition.scss +63 -49
  111. package/styles/drop-down-tree/_layout.scss +437 -398
  112. package/styles/drop-down-tree/_material-dark-definition.scss +61 -54
  113. package/styles/drop-down-tree/_material-definition.scss +61 -54
  114. package/styles/drop-down-tree/_theme.scss +68 -63
  115. package/styles/drop-down-tree/bootstrap-dark.css +67 -61
  116. package/styles/drop-down-tree/bootstrap.css +69 -63
  117. package/styles/drop-down-tree/bootstrap4.css +81 -61
  118. package/styles/drop-down-tree/fabric-dark.css +71 -63
  119. package/styles/drop-down-tree/fabric.css +71 -63
  120. package/styles/drop-down-tree/highcontrast-light.css +71 -63
  121. package/styles/drop-down-tree/highcontrast.css +75 -63
  122. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  123. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  124. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  125. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  126. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  127. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  128. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  129. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  130. package/styles/drop-down-tree/icons/_material.scss +11 -11
  131. package/styles/drop-down-tree/material-dark.css +76 -85
  132. package/styles/drop-down-tree/material.css +93 -85
  133. package/styles/fabric-dark.css +71 -63
  134. package/styles/fabric.css +71 -63
  135. package/styles/highcontrast-light.css +71 -63
  136. package/styles/highcontrast.css +75 -63
  137. package/styles/list-box/_all.scss +2 -2
  138. package/styles/list-box/_bootstrap-dark-definition.scss +118 -118
  139. package/styles/list-box/_bootstrap-definition.scss +112 -112
  140. package/styles/list-box/_bootstrap4-definition.scss +118 -118
  141. package/styles/list-box/_fabric-dark-definition.scss +118 -118
  142. package/styles/list-box/_fabric-definition.scss +112 -112
  143. package/styles/list-box/_highcontrast-definition.scss +112 -112
  144. package/styles/list-box/_highcontrast-light-definition.scss +118 -118
  145. package/styles/list-box/_layout.scss +458 -458
  146. package/styles/list-box/_material-dark-definition.scss +118 -118
  147. package/styles/list-box/_material-definition.scss +112 -112
  148. package/styles/list-box/_theme.scss +273 -273
  149. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  150. package/styles/list-box/icons/_bootstrap.scss +25 -25
  151. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  152. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  153. package/styles/list-box/icons/_fabric.scss +25 -25
  154. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  155. package/styles/list-box/icons/_highcontrast.scss +25 -25
  156. package/styles/list-box/icons/_material-dark.scss +25 -25
  157. package/styles/list-box/icons/_material.scss +25 -25
  158. package/styles/list-box/material-dark.css +4 -4
  159. package/styles/list-box/material.css +4 -4
  160. package/styles/material-dark.css +80 -89
  161. package/styles/material.css +115 -89
  162. package/styles/multi-select/_all.scss +2 -2
  163. package/styles/multi-select/_bootstrap-dark-definition.scss +171 -171
  164. package/styles/multi-select/_bootstrap-definition.scss +166 -166
  165. package/styles/multi-select/_bootstrap4-definition.scss +233 -233
  166. package/styles/multi-select/_fabric-dark-definition.scss +170 -170
  167. package/styles/multi-select/_fabric-definition.scss +167 -167
  168. package/styles/multi-select/_highcontrast-definition.scss +257 -257
  169. package/styles/multi-select/_highcontrast-light-definition.scss +258 -258
  170. package/styles/multi-select/_layout.scss +1153 -1153
  171. package/styles/multi-select/_material-dark-definition.scss +186 -186
  172. package/styles/multi-select/_material-definition.scss +191 -191
  173. package/styles/multi-select/_theme.scss +384 -384
  174. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  175. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  176. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  177. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  178. package/styles/multi-select/icons/_fabric.scss +26 -26
  179. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  180. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  181. package/styles/multi-select/icons/_material-dark.scss +26 -26
  182. package/styles/multi-select/icons/_material.scss +324 -324
  183. package/styles/multi-select/material.css +9 -0
@@ -1,242 +1,242 @@
1
- @include export-module('dropdownbase-theme') {
2
- .e-rtl {
3
- & .e-dropdownbase {
4
- & .e-list-item {
5
- padding-left: $ddl-list-rtl-padding-left;
6
- padding-right: $ddl-list-rtl-padding-right;
7
- }
8
- }
9
- }
10
-
11
- // Rtl small size
12
-
13
- .e-small.e-rtl,
14
- .e-small .e-rtl,
15
- .e-rtl .e-small {
16
- & .e-dropdownbase {
17
- & .e-list-item {
18
- padding-left: $ddl-list-rtl-padding-left;
19
- padding-right: $ddl-list-rtl-padding-right;
20
- }
21
- }
22
- }
23
-
24
- // Rtl bigger small size
25
-
26
- .e-small.e-bigger.e-rtl,
27
- .e-small.e-bigger .e-rtl,
28
- .e-rtl .e-small.e-bigger,
29
- .e-small .e-rtl.e-bigger,
30
- .e-bigger .e-rtl.e-small {
31
- & .e-dropdownbase {
32
- & .e-list-item {
33
- padding-left: $ddl-list-rtl-padding-left;
34
- padding-right: $ddl-list-rtl-padding-right;
35
- }
36
- }
37
- }
38
-
39
- .e-dropdownbase {
40
- border-color: $ddl-list-border-color;
41
- @at-root {
42
- & .e-list-item {
43
- background-color: $ddl-list-bg-color;
44
- border-bottom: $ddl-list-bottom-border;
45
- border-color: $ddl-list-gradient-color;
46
- color: $ddl-list-default-font-color;
47
- font-family: $ddl-list-font-family;
48
- font-size: $ddl-list-font-size;
49
- line-height: $ddl-list-line-height;
50
- min-height: $ddl-list-line-height;
51
- padding-right: $ddl-list-padding-right;
52
- text-indent: $ddl-list-text-indent;
53
- }
54
-
55
- & .e-list-group-item,
56
- .e-fixed-head {
57
- background-color: $ddl-list-bg-color;
58
- border-color: $ddl-list-gradient-color;
59
- color: $ddl-list-header-font-color;
60
- font-family: $ddl-list-font-family;
61
- font-size: $ddl-group-list-font-size;
62
- font-weight: $ddl-header-font-weight;
63
- line-height: $ddl-list-line-height;
64
- min-height: $ddl-list-line-height;
65
- padding-left: $ddl-list-header-padding-left;
66
- padding-right: $ddl-list-padding-right;
67
- }
68
-
69
- & .e-list-item.e-active,
70
- & .e-list-item.e-active.e-hover {
71
- background-color: $ddl-list-active-bg-color;
72
- border-color: $ddl-list-active-border-color;
73
- color: $ddl-list-active-font-color;
74
- }
75
-
76
- & .e-list-item.e-hover {
77
- background-color: $ddl-list-hover-bg-color;
78
- border-color: $ddl-list-hover-border-color;
79
- color: $ddl-list-hover-font-color;
80
- }
81
-
82
- & .e-list-item:last-child {
83
- border-bottom: $ddl-last-child-bottom-border;
84
- }
85
-
86
- & .e-list-item.e-item-focus {
87
- background-color: $ddl-list-hover-bg-color;
88
- }
89
- }
90
- }
91
-
92
- .e-bigger .e-dropdownbase {
93
- @at-root {
94
- & .e-list-group-item,
95
- & .e-fixed-head {
96
- font-size: $ddl-bigger-list-header-font-size;
97
- }
98
- }
99
- }
100
-
101
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open table {
102
- border-collapse: collapse;
103
- table-layout: fixed;
104
- width: 100%;
105
- }
106
-
107
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th,
108
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open td {
109
- display: table-cell;
110
- overflow: hidden;
111
- padding-right: 16px;
112
- text-indent: 10px;
113
- text-overflow: ellipsis;
114
- }
115
-
116
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th {
117
- line-height: 36px;
118
- text-align: left;
119
- }
120
-
121
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header {
122
- background-color: $ddl-list-bg-color;
123
- border-color: $ddl-multi-column-border-color;
124
- border-style: solid;
125
- border-width: $ddl-multi-column-border-width;
126
- color: $ddl-list-header-font-color;
127
- font-family: $ddl-list-font-family;
128
- font-size: $ddl-group-list-font-size;
129
- font-weight: $ddl-header-font-weight;
130
- text-indent: 10px;
131
- }
132
-
133
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-dropdownbase .e-list-item {
134
- padding-right: 0;
135
- }
136
-
137
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-scroller .e-ddl-header {
138
- padding-right: 16px;
139
- }
140
-
141
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header,
142
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-ddl-device .e-ddl-header {
143
- padding-right: 0;
144
- }
145
-
146
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-center {
147
- text-align: center;
148
- }
149
-
150
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-right {
151
- text-align: right;
152
- }
153
-
154
- .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-left {
155
- text-align: left;
156
- }
157
-
158
- // small size
159
- .e-small .e-dropdownbase,
160
- .e-dropdownbase.e-small {
161
- @at-root {
162
- & .e-list-item {
163
- color: $ddl-small-list-font-color;
164
- line-height: $ddl-small-line-height;
165
- min-height: $ddl-small-line-height;
166
- text-indent: $ddl-small-list-text-indent;
167
- }
168
-
169
- & .e-list-group-item,
170
- & .e-fixed-head {
171
- line-height: $ddl-small-line-height;
172
- min-height: $ddl-small-line-height;
173
- }
174
-
175
- & .e-list-item .e-list-icon {
176
- font-size: $ddl-small-icon-font-size;
177
- }
178
- }
179
- }
180
-
181
- // Bigger small size
182
-
183
- .e-bigger.e-small .e-dropdownbase,
184
- .e-dropdownbase.e-small.e-bigger {
185
- @at-root {
186
- & .e-list-item {
187
- color: $ddl-bigger-small-list-font-color;
188
- line-height: $ddl-bigger-small-line-height;
189
- min-height: $ddl-bigger-small-line-height;
190
- text-indent: $ddl-bigger-small-list-text-indent;
191
- }
192
-
193
- & .e-list-group-item,
194
- & .e-fixed-head {
195
- line-height: $ddl-bigger-small-line-height;
196
- min-height: $ddl-bigger-small-line-height;
197
- }
198
-
199
- & .e-list-item .e-list-icon {
200
- font-size: $ddl-bigger-small-icon-font-size;
201
- }
202
- }
203
- }
204
-
205
- .e-bigger.e-small .e-dropdownbase,
206
- .e-dropdownbase.e-bigger.e-small {
207
- @at-root {
208
- & .e-list-group-item,
209
- & .e-fixed-head {
210
- font-size: $ddl-bigger-small-list-header-font-size;
211
- }
212
- }
213
- }
214
-
215
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item {
216
- background-color: $ddl-list-bg-color;
217
- border-bottom: $ddl-list-bottom-border;
218
- border-color: $ddl-list-gradient-color;
219
- color: $ddl-list-default-font-color;
220
- font-family: $ddl-list-font-family;
221
- font-size: $ddl-list-font-size;
222
- padding-right: $ddl-list-padding-right;
223
- text-indent: $ddl-list-text-indent;
224
- }
225
-
226
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
227
- background-color: $ddl-list-hover-bg-color;
228
- }
229
-
230
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
231
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
232
- background-color: $ddl-list-active-bg-color;
233
- border-color: $ddl-list-active-border-color;
234
- color: $ddl-list-active-font-color;
235
- }
236
-
237
- .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
238
- background-color: $ddl-list-hover-bg-color;
239
- border-color: $ddl-list-hover-border-color;
240
- color: $ddl-list-hover-font-color;
241
- }
242
- }
1
+ @include export-module('dropdownbase-theme') {
2
+ .e-rtl {
3
+ & .e-dropdownbase {
4
+ & .e-list-item {
5
+ padding-left: $ddl-list-rtl-padding-left;
6
+ padding-right: $ddl-list-rtl-padding-right;
7
+ }
8
+ }
9
+ }
10
+
11
+ // Rtl small size
12
+
13
+ .e-small.e-rtl,
14
+ .e-small .e-rtl,
15
+ .e-rtl .e-small {
16
+ & .e-dropdownbase {
17
+ & .e-list-item {
18
+ padding-left: $ddl-list-rtl-padding-left;
19
+ padding-right: $ddl-list-rtl-padding-right;
20
+ }
21
+ }
22
+ }
23
+
24
+ // Rtl bigger small size
25
+
26
+ .e-small.e-bigger.e-rtl,
27
+ .e-small.e-bigger .e-rtl,
28
+ .e-rtl .e-small.e-bigger,
29
+ .e-small .e-rtl.e-bigger,
30
+ .e-bigger .e-rtl.e-small {
31
+ & .e-dropdownbase {
32
+ & .e-list-item {
33
+ padding-left: $ddl-list-rtl-padding-left;
34
+ padding-right: $ddl-list-rtl-padding-right;
35
+ }
36
+ }
37
+ }
38
+
39
+ .e-dropdownbase {
40
+ border-color: $ddl-list-border-color;
41
+ @at-root {
42
+ & .e-list-item {
43
+ background-color: $ddl-list-bg-color;
44
+ border-bottom: $ddl-list-bottom-border;
45
+ border-color: $ddl-list-gradient-color;
46
+ color: $ddl-list-default-font-color;
47
+ font-family: $ddl-list-font-family;
48
+ font-size: $ddl-list-font-size;
49
+ line-height: $ddl-list-line-height;
50
+ min-height: $ddl-list-line-height;
51
+ padding-right: $ddl-list-padding-right;
52
+ text-indent: $ddl-list-text-indent;
53
+ }
54
+
55
+ & .e-list-group-item,
56
+ .e-fixed-head {
57
+ background-color: $ddl-list-bg-color;
58
+ border-color: $ddl-list-gradient-color;
59
+ color: $ddl-list-header-font-color;
60
+ font-family: $ddl-list-font-family;
61
+ font-size: $ddl-group-list-font-size;
62
+ font-weight: $ddl-header-font-weight;
63
+ line-height: $ddl-list-line-height;
64
+ min-height: $ddl-list-line-height;
65
+ padding-left: $ddl-list-header-padding-left;
66
+ padding-right: $ddl-list-padding-right;
67
+ }
68
+
69
+ & .e-list-item.e-active,
70
+ & .e-list-item.e-active.e-hover {
71
+ background-color: $ddl-list-active-bg-color;
72
+ border-color: $ddl-list-active-border-color;
73
+ color: $ddl-list-active-font-color;
74
+ }
75
+
76
+ & .e-list-item.e-hover {
77
+ background-color: $ddl-list-hover-bg-color;
78
+ border-color: $ddl-list-hover-border-color;
79
+ color: $ddl-list-hover-font-color;
80
+ }
81
+
82
+ & .e-list-item:last-child {
83
+ border-bottom: $ddl-last-child-bottom-border;
84
+ }
85
+
86
+ & .e-list-item.e-item-focus {
87
+ background-color: $ddl-list-hover-bg-color;
88
+ }
89
+ }
90
+ }
91
+
92
+ .e-bigger .e-dropdownbase {
93
+ @at-root {
94
+ & .e-list-group-item,
95
+ & .e-fixed-head {
96
+ font-size: $ddl-bigger-list-header-font-size;
97
+ }
98
+ }
99
+ }
100
+
101
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open table {
102
+ border-collapse: collapse;
103
+ table-layout: fixed;
104
+ width: 100%;
105
+ }
106
+
107
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th,
108
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open td {
109
+ display: table-cell;
110
+ overflow: hidden;
111
+ padding-right: 16px;
112
+ text-indent: 10px;
113
+ text-overflow: ellipsis;
114
+ }
115
+
116
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open th {
117
+ line-height: 36px;
118
+ text-align: left;
119
+ }
120
+
121
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header {
122
+ background-color: $ddl-list-bg-color;
123
+ border-color: $ddl-multi-column-border-color;
124
+ border-style: solid;
125
+ border-width: $ddl-multi-column-border-width;
126
+ color: $ddl-list-header-font-color;
127
+ font-family: $ddl-list-font-family;
128
+ font-size: $ddl-group-list-font-size;
129
+ font-weight: $ddl-header-font-weight;
130
+ text-indent: 10px;
131
+ }
132
+
133
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-dropdownbase .e-list-item {
134
+ padding-right: 0;
135
+ }
136
+
137
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-scroller .e-ddl-header {
138
+ padding-right: 16px;
139
+ }
140
+
141
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-ddl-header,
142
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open#{&}.e-ddl-device .e-ddl-header {
143
+ padding-right: 0;
144
+ }
145
+
146
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-center {
147
+ text-align: center;
148
+ }
149
+
150
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-right {
151
+ text-align: right;
152
+ }
153
+
154
+ .e-multi-column#{&}.e-ddl#{&}.e-popup#{&}.e-popup-open .e-text-left {
155
+ text-align: left;
156
+ }
157
+
158
+ // small size
159
+ .e-small .e-dropdownbase,
160
+ .e-dropdownbase.e-small {
161
+ @at-root {
162
+ & .e-list-item {
163
+ color: $ddl-small-list-font-color;
164
+ line-height: $ddl-small-line-height;
165
+ min-height: $ddl-small-line-height;
166
+ text-indent: $ddl-small-list-text-indent;
167
+ }
168
+
169
+ & .e-list-group-item,
170
+ & .e-fixed-head {
171
+ line-height: $ddl-small-line-height;
172
+ min-height: $ddl-small-line-height;
173
+ }
174
+
175
+ & .e-list-item .e-list-icon {
176
+ font-size: $ddl-small-icon-font-size;
177
+ }
178
+ }
179
+ }
180
+
181
+ // Bigger small size
182
+
183
+ .e-bigger.e-small .e-dropdownbase,
184
+ .e-dropdownbase.e-small.e-bigger {
185
+ @at-root {
186
+ & .e-list-item {
187
+ color: $ddl-bigger-small-list-font-color;
188
+ line-height: $ddl-bigger-small-line-height;
189
+ min-height: $ddl-bigger-small-line-height;
190
+ text-indent: $ddl-bigger-small-list-text-indent;
191
+ }
192
+
193
+ & .e-list-group-item,
194
+ & .e-fixed-head {
195
+ line-height: $ddl-bigger-small-line-height;
196
+ min-height: $ddl-bigger-small-line-height;
197
+ }
198
+
199
+ & .e-list-item .e-list-icon {
200
+ font-size: $ddl-bigger-small-icon-font-size;
201
+ }
202
+ }
203
+ }
204
+
205
+ .e-bigger.e-small .e-dropdownbase,
206
+ .e-dropdownbase.e-bigger.e-small {
207
+ @at-root {
208
+ & .e-list-group-item,
209
+ & .e-fixed-head {
210
+ font-size: $ddl-bigger-small-list-header-font-size;
211
+ }
212
+ }
213
+ }
214
+
215
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item {
216
+ background-color: $ddl-list-bg-color;
217
+ border-bottom: $ddl-list-bottom-border;
218
+ border-color: $ddl-list-gradient-color;
219
+ color: $ddl-list-default-font-color;
220
+ font-family: $ddl-list-font-family;
221
+ font-size: $ddl-list-font-size;
222
+ padding-right: $ddl-list-padding-right;
223
+ text-indent: $ddl-list-text-indent;
224
+ }
225
+
226
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-item-focus {
227
+ background-color: $ddl-list-hover-bg-color;
228
+ }
229
+
230
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active,
231
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-active.e-hover {
232
+ background-color: $ddl-list-active-bg-color;
233
+ border-color: $ddl-list-active-border-color;
234
+ color: $ddl-list-active-font-color;
235
+ }
236
+
237
+ .e-ddl.e-popup.e-multiselect-group .e-list-group-item.e-hover {
238
+ background-color: $ddl-list-hover-bg-color;
239
+ border-color: $ddl-list-hover-border-color;
240
+ color: $ddl-list-hover-font-color;
241
+ }
242
+ }
@@ -1,2 +1,2 @@
1
- @import 'layout.scss';
2
- @import 'theme.scss';
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';