@syncfusion/ej2-dropdowns 23.2.7-52849 → 24.1.41

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 (256) hide show
  1. package/.eslintrc.json +260 -0
  2. package/CHANGELOG.md +2038 -2152
  3. package/{ReadMe.md → README.md} +217 -217
  4. package/dist/ej2-dropdowns.min.js +10 -0
  5. package/dist/ej2-dropdowns.umd.min.js +10 -1
  6. package/dist/ej2-dropdowns.umd.min.js.map +1 -1
  7. package/dist/es6/ej2-dropdowns.es2015.js +709 -172
  8. package/dist/es6/ej2-dropdowns.es2015.js.map +1 -1
  9. package/dist/es6/ej2-dropdowns.es5.js +870 -332
  10. package/dist/es6/ej2-dropdowns.es5.js.map +1 -1
  11. package/dist/global/ej2-dropdowns.min.js +11 -0
  12. package/dist/global/ej2-dropdowns.min.js.map +1 -0
  13. package/dist/global/index.d.ts +14 -0
  14. package/helpers/e2e/autocomplete.js +13 -13
  15. package/helpers/e2e/combobox.js +13 -13
  16. package/helpers/e2e/dropdownlist.js +13 -13
  17. package/helpers/e2e/index.js +3 -3
  18. package/helpers/e2e/listboxHelper.js +13 -13
  19. package/helpers/e2e/multiselect.js +13 -13
  20. package/license +2 -2
  21. package/package.json +80 -80
  22. package/src/auto-complete/auto-complete-model.d.ts +188 -188
  23. package/src/auto-complete/auto-complete.d.ts +12 -12
  24. package/src/auto-complete/auto-complete.js +30 -25
  25. package/src/combo-box/combo-box-model.d.ts +224 -224
  26. package/src/combo-box/combo-box.d.ts +27 -27
  27. package/src/combo-box/combo-box.js +103 -31
  28. package/src/common/incremental-search.d.ts +1 -1
  29. package/src/common/incremental-search.js +50 -7
  30. package/src/common/interface.d.ts +2 -0
  31. package/src/common/virtual-scroll.js +68 -47
  32. package/src/drop-down-base/drop-down-base-model.d.ts +200 -200
  33. package/src/drop-down-base/drop-down-base.d.ts +38 -18
  34. package/src/drop-down-base/drop-down-base.js +173 -60
  35. package/src/drop-down-list/drop-down-list-model.d.ts +202 -202
  36. package/src/drop-down-list/drop-down-list.d.ts +14 -7
  37. package/src/drop-down-list/drop-down-list.js +325 -61
  38. package/src/drop-down-tree/drop-down-tree-model.d.ts +468 -468
  39. package/src/drop-down-tree/drop-down-tree.js +43 -39
  40. package/src/list-box/list-box-model.d.ts +193 -193
  41. package/src/list-box/list-box.d.ts +2 -2
  42. package/src/list-box/list-box.js +27 -20
  43. package/src/mention/mention-model.d.ts +261 -261
  44. package/src/mention/mention.js +24 -20
  45. package/src/multi-select/checkbox-selection.js +4 -1
  46. package/src/multi-select/multi-select-model.d.ts +512 -512
  47. package/src/multi-select/multi-select.js +23 -21
  48. package/styles/auto-complete/_all.scss +1 -1
  49. package/styles/auto-complete/_bootstrap-dark-definition.scss +3 -3
  50. package/styles/auto-complete/_bootstrap-definition.scss +2 -2
  51. package/styles/auto-complete/_bootstrap4-definition.scss +11 -11
  52. package/styles/auto-complete/_bootstrap5-definition.scss +2 -2
  53. package/styles/auto-complete/_fabric-dark-definition.scss +2 -2
  54. package/styles/auto-complete/_fabric-definition.scss +2 -2
  55. package/styles/auto-complete/_fluent-definition.scss +2 -2
  56. package/styles/auto-complete/_fusionnew-definition.scss +2 -2
  57. package/styles/auto-complete/_highcontrast-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/auto-complete/_material-definition.scss +2 -2
  61. package/styles/auto-complete/_material3-definition.scss +2 -2
  62. package/styles/auto-complete/_tailwind-definition.scss +2 -2
  63. package/styles/auto-complete/material3-dark.scss +1 -1
  64. package/styles/auto-complete/material3.scss +1 -1
  65. package/styles/combo-box/_all.scss +1 -1
  66. package/styles/combo-box/_bootstrap-dark-definition.scss +2 -2
  67. package/styles/combo-box/_bootstrap-definition.scss +2 -2
  68. package/styles/combo-box/_bootstrap4-definition.scss +11 -11
  69. package/styles/combo-box/_bootstrap5-definition.scss +2 -2
  70. package/styles/combo-box/_fabric-dark-definition.scss +2 -2
  71. package/styles/combo-box/_fabric-definition.scss +2 -2
  72. package/styles/combo-box/_fluent-definition.scss +2 -2
  73. package/styles/combo-box/_fusionnew-definition.scss +2 -2
  74. package/styles/combo-box/_highcontrast-definition.scss +2 -2
  75. package/styles/combo-box/_highcontrast-light-definition.scss +3 -3
  76. package/styles/combo-box/_material-dark-definition.scss +2 -2
  77. package/styles/combo-box/_material-definition.scss +2 -2
  78. package/styles/combo-box/_material3-definition.scss +2 -2
  79. package/styles/combo-box/_tailwind-definition.scss +2 -2
  80. package/styles/combo-box/material3-dark.scss +1 -1
  81. package/styles/combo-box/material3.scss +1 -1
  82. package/styles/drop-down-base/_all.scss +2 -2
  83. package/styles/drop-down-base/_bootstrap-dark-definition.scss +83 -83
  84. package/styles/drop-down-base/_bootstrap-definition.scss +83 -83
  85. package/styles/drop-down-base/_bootstrap4-definition.scss +90 -90
  86. package/styles/drop-down-base/_bootstrap5-definition.scss +117 -117
  87. package/styles/drop-down-base/_definition.scss +23 -23
  88. package/styles/drop-down-base/_fabric-dark-definition.scss +86 -86
  89. package/styles/drop-down-base/_fabric-definition.scss +84 -84
  90. package/styles/drop-down-base/_fluent-definition.scss +121 -121
  91. package/styles/drop-down-base/_fusionnew-definition.scss +117 -117
  92. package/styles/drop-down-base/_highcontrast-definition.scss +105 -105
  93. package/styles/drop-down-base/_highcontrast-light-definition.scss +105 -105
  94. package/styles/drop-down-base/_layout.scss +195 -195
  95. package/styles/drop-down-base/_material-dark-definition.scss +86 -86
  96. package/styles/drop-down-base/_material-definition.scss +85 -85
  97. package/styles/drop-down-base/_material3-definition.scss +87 -87
  98. package/styles/drop-down-base/_tailwind-definition.scss +129 -129
  99. package/styles/drop-down-base/_theme.scss +391 -391
  100. package/styles/drop-down-base/material3-dark.scss +1 -1
  101. package/styles/drop-down-base/material3.scss +1 -1
  102. package/styles/drop-down-list/_all.scss +3 -3
  103. package/styles/drop-down-list/_bootstrap-dark-definition.scss +157 -157
  104. package/styles/drop-down-list/_bootstrap-definition.scss +156 -156
  105. package/styles/drop-down-list/_bootstrap4-definition.scss +202 -202
  106. package/styles/drop-down-list/_bootstrap5-definition.scss +201 -201
  107. package/styles/drop-down-list/_fabric-dark-definition.scss +128 -128
  108. package/styles/drop-down-list/_fabric-definition.scss +124 -124
  109. package/styles/drop-down-list/_fluent-definition.scss +185 -185
  110. package/styles/drop-down-list/_fusionnew-definition.scss +201 -201
  111. package/styles/drop-down-list/_highcontrast-definition.scss +142 -142
  112. package/styles/drop-down-list/_highcontrast-light-definition.scss +144 -144
  113. package/styles/drop-down-list/_layout.scss +310 -310
  114. package/styles/drop-down-list/_material-dark-definition.scss +143 -143
  115. package/styles/drop-down-list/_material-definition.scss +167 -167
  116. package/styles/drop-down-list/_material3-definition.scss +180 -180
  117. package/styles/drop-down-list/_tailwind-definition.scss +134 -134
  118. package/styles/drop-down-list/_theme.scss +10 -10
  119. package/styles/drop-down-list/icons/_bootstrap-dark.scss +14 -14
  120. package/styles/drop-down-list/icons/_bootstrap.scss +14 -14
  121. package/styles/drop-down-list/icons/_bootstrap4.scss +14 -14
  122. package/styles/drop-down-list/icons/_bootstrap5.scss +14 -14
  123. package/styles/drop-down-list/icons/_fabric-dark.scss +14 -14
  124. package/styles/drop-down-list/icons/_fabric.scss +14 -14
  125. package/styles/drop-down-list/icons/_fluent.scss +14 -14
  126. package/styles/drop-down-list/icons/_fusionnew.scss +14 -14
  127. package/styles/drop-down-list/icons/_highcontrast-light.scss +14 -14
  128. package/styles/drop-down-list/icons/_highcontrast.scss +14 -14
  129. package/styles/drop-down-list/icons/_material-dark.scss +14 -14
  130. package/styles/drop-down-list/icons/_material.scss +14 -14
  131. package/styles/drop-down-list/icons/_material3.scss +14 -14
  132. package/styles/drop-down-list/icons/_tailwind.scss +14 -14
  133. package/styles/drop-down-list/material3-dark.scss +1 -1
  134. package/styles/drop-down-list/material3.scss +1 -1
  135. package/styles/drop-down-tree/_all.scss +2 -2
  136. package/styles/drop-down-tree/_bootstrap-dark-definition.scss +71 -71
  137. package/styles/drop-down-tree/_bootstrap-definition.scss +70 -70
  138. package/styles/drop-down-tree/_bootstrap4-definition.scss +71 -71
  139. package/styles/drop-down-tree/_bootstrap5-definition.scss +59 -59
  140. package/styles/drop-down-tree/_fabric-dark-definition.scss +71 -71
  141. package/styles/drop-down-tree/_fabric-definition.scss +71 -71
  142. package/styles/drop-down-tree/_fluent-definition.scss +65 -65
  143. package/styles/drop-down-tree/_fusionnew-definition.scss +59 -59
  144. package/styles/drop-down-tree/_highcontrast-definition.scss +71 -71
  145. package/styles/drop-down-tree/_highcontrast-light-definition.scss +71 -71
  146. package/styles/drop-down-tree/_layout.scss +1418 -1418
  147. package/styles/drop-down-tree/_material-dark-definition.scss +72 -72
  148. package/styles/drop-down-tree/_material-definition.scss +72 -72
  149. package/styles/drop-down-tree/_material3-definition.scss +76 -76
  150. package/styles/drop-down-tree/_tailwind-definition.scss +61 -61
  151. package/styles/drop-down-tree/_theme.scss +132 -132
  152. package/styles/drop-down-tree/icons/_bootstrap-dark.scss +11 -11
  153. package/styles/drop-down-tree/icons/_bootstrap.scss +11 -11
  154. package/styles/drop-down-tree/icons/_bootstrap4.scss +11 -11
  155. package/styles/drop-down-tree/icons/_bootstrap5.scss +11 -11
  156. package/styles/drop-down-tree/icons/_fabric-dark.scss +11 -11
  157. package/styles/drop-down-tree/icons/_fabric.scss +11 -11
  158. package/styles/drop-down-tree/icons/_fluent.scss +11 -11
  159. package/styles/drop-down-tree/icons/_fusionnew.scss +11 -11
  160. package/styles/drop-down-tree/icons/_highcontrast-light.scss +11 -11
  161. package/styles/drop-down-tree/icons/_highcontrast.scss +11 -11
  162. package/styles/drop-down-tree/icons/_material-dark.scss +11 -11
  163. package/styles/drop-down-tree/icons/_material.scss +11 -11
  164. package/styles/drop-down-tree/icons/_material3.scss +11 -11
  165. package/styles/drop-down-tree/icons/_tailwind-dark.scss +11 -11
  166. package/styles/drop-down-tree/icons/_tailwind.scss +11 -11
  167. package/styles/drop-down-tree/material3-dark.scss +1 -1
  168. package/styles/drop-down-tree/material3.scss +1 -1
  169. package/styles/list-box/_all.scss +2 -2
  170. package/styles/list-box/_bootstrap-dark-definition.scss +126 -126
  171. package/styles/list-box/_bootstrap-definition.scss +119 -119
  172. package/styles/list-box/_bootstrap4-definition.scss +124 -124
  173. package/styles/list-box/_bootstrap5-definition.scss +120 -120
  174. package/styles/list-box/_fabric-dark-definition.scss +126 -126
  175. package/styles/list-box/_fabric-definition.scss +119 -119
  176. package/styles/list-box/_fluent-definition.scss +120 -120
  177. package/styles/list-box/_fusionnew-definition.scss +111 -111
  178. package/styles/list-box/_highcontrast-definition.scss +119 -119
  179. package/styles/list-box/_highcontrast-light-definition.scss +126 -126
  180. package/styles/list-box/_layout.scss +542 -542
  181. package/styles/list-box/_material-dark-definition.scss +126 -126
  182. package/styles/list-box/_material-definition.scss +119 -119
  183. package/styles/list-box/_material3-definition.scss +119 -119
  184. package/styles/list-box/_tailwind-definition.scss +119 -119
  185. package/styles/list-box/_theme.scss +382 -382
  186. package/styles/list-box/icons/_bootstrap-dark.scss +25 -25
  187. package/styles/list-box/icons/_bootstrap.scss +25 -25
  188. package/styles/list-box/icons/_bootstrap4.scss +25 -25
  189. package/styles/list-box/icons/_bootstrap5.scss +25 -25
  190. package/styles/list-box/icons/_fabric-dark.scss +25 -25
  191. package/styles/list-box/icons/_fabric.scss +25 -25
  192. package/styles/list-box/icons/_fluent.scss +25 -25
  193. package/styles/list-box/icons/_fusionnew.scss +25 -25
  194. package/styles/list-box/icons/_highcontrast-light.scss +25 -25
  195. package/styles/list-box/icons/_highcontrast.scss +25 -25
  196. package/styles/list-box/icons/_material-dark.scss +25 -25
  197. package/styles/list-box/icons/_material.scss +25 -25
  198. package/styles/list-box/icons/_material3.scss +25 -25
  199. package/styles/list-box/icons/_tailwind-dark.scss +25 -25
  200. package/styles/list-box/icons/_tailwind.scss +25 -25
  201. package/styles/list-box/material3-dark.scss +1 -1
  202. package/styles/list-box/material3.scss +1 -1
  203. package/styles/material3-dark.scss +1 -1
  204. package/styles/material3.scss +1 -1
  205. package/styles/mention/_all.scss +1 -1
  206. package/styles/mention/_bootstrap-dark-definition.scss +3 -3
  207. package/styles/mention/_bootstrap-definition.scss +3 -3
  208. package/styles/mention/_bootstrap4-definition.scss +3 -3
  209. package/styles/mention/_bootstrap5-definition.scss +1 -1
  210. package/styles/mention/_fabric-dark-definition.scss +2 -2
  211. package/styles/mention/_fabric-definition.scss +3 -3
  212. package/styles/mention/_fluent-definition.scss +1 -1
  213. package/styles/mention/_fusionnew-definition.scss +1 -1
  214. package/styles/mention/_highcontrast-definition.scss +3 -3
  215. package/styles/mention/_highcontrast-light-definition.scss +3 -3
  216. package/styles/mention/_layout.scss +6 -6
  217. package/styles/mention/_material-dark-definition.scss +3 -3
  218. package/styles/mention/_material-definition.scss +3 -3
  219. package/styles/mention/_material3-definition.scss +1 -1
  220. package/styles/mention/_tailwind-definition.scss +1 -1
  221. package/styles/mention/material3-dark.scss +1 -1
  222. package/styles/mention/material3.scss +1 -1
  223. package/styles/multi-select/_all.scss +2 -2
  224. package/styles/multi-select/_bootstrap-dark-definition.scss +203 -203
  225. package/styles/multi-select/_bootstrap-definition.scss +192 -192
  226. package/styles/multi-select/_bootstrap4-definition.scss +278 -278
  227. package/styles/multi-select/_bootstrap5-definition.scss +230 -230
  228. package/styles/multi-select/_fabric-dark-definition.scss +192 -192
  229. package/styles/multi-select/_fabric-definition.scss +183 -183
  230. package/styles/multi-select/_fluent-definition.scss +241 -241
  231. package/styles/multi-select/_fusionnew-definition.scss +227 -227
  232. package/styles/multi-select/_highcontrast-definition.scss +303 -303
  233. package/styles/multi-select/_highcontrast-light-definition.scss +297 -297
  234. package/styles/multi-select/_layout.scss +2199 -2199
  235. package/styles/multi-select/_material-dark-definition.scss +230 -230
  236. package/styles/multi-select/_material-definition.scss +223 -223
  237. package/styles/multi-select/_material3-definition.scss +246 -246
  238. package/styles/multi-select/_tailwind-definition.scss +235 -235
  239. package/styles/multi-select/_theme.scss +586 -586
  240. package/styles/multi-select/icons/_bootstrap-dark.scss +26 -26
  241. package/styles/multi-select/icons/_bootstrap.scss +26 -26
  242. package/styles/multi-select/icons/_bootstrap4.scss +37 -37
  243. package/styles/multi-select/icons/_bootstrap5.scss +26 -26
  244. package/styles/multi-select/icons/_fabric-dark.scss +26 -26
  245. package/styles/multi-select/icons/_fabric.scss +26 -26
  246. package/styles/multi-select/icons/_fluent.scss +55 -55
  247. package/styles/multi-select/icons/_fusionnew.scss +26 -26
  248. package/styles/multi-select/icons/_highcontrast-light.scss +26 -26
  249. package/styles/multi-select/icons/_highcontrast.scss +26 -26
  250. package/styles/multi-select/icons/_material-dark.scss +693 -693
  251. package/styles/multi-select/icons/_material.scss +693 -693
  252. package/styles/multi-select/icons/_material3.scss +692 -692
  253. package/styles/multi-select/icons/_tailwind.scss +26 -26
  254. package/styles/multi-select/material3-dark.scss +1 -1
  255. package/styles/multi-select/material3.scss +1 -1
  256. package/tslint.json +111 -0
@@ -1,1418 +1,1418 @@
1
- @mixin ddt-rotate($position) {
2
- transform: rotate($position);
3
- transition: transform 300ms ease;
4
- }
5
-
6
- @include export-module('dropdowntree-layout') {
7
-
8
- .e-ddt {
9
- cursor: pointer;
10
- outline: none;
11
-
12
- .e-ddt-icon::before {
13
- @include ddt-rotate(0deg);
14
- }
15
-
16
- &.e-icon-anim {
17
- @if $ddt-skin-name == 'Material3' {
18
- .e-ddt-icon {
19
- background: $ddt-dd-icon-bg;
20
- border-radius: $ddt-dd-icon-radius;
21
- }
22
- }
23
-
24
- .e-ddt-icon::before {
25
- @include ddt-rotate(180deg);
26
- }
27
- }
28
-
29
- .e-ddt-hidden {
30
- border: 0;
31
- height: 0;
32
- visibility: hidden;
33
- width: 0;
34
- }
35
-
36
- &.e-input-group.e-control-wrapper,
37
- &.e-float-input.e-control-wrapper {
38
- .e-clear-icon {
39
- box-sizing: content-box;
40
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
41
- min-height: $ddt-close-icon-min-height;
42
- }
43
- @if $ddt-skin-name == 'Material3' {
44
- margin: $ddt-dd-icon-margin;
45
- }
46
- @if $ddt-skin-name == 'FluentUI' {
47
- min-height: $ddt-dd-icon-width;
48
- }
49
- }
50
-
51
- .e-input-group-icon.e-ddt-icon {
52
- border: 0;
53
-
54
- @if $ddt-skin-name == 'bootstrap4' {
55
- font-size: 8px;
56
- }
57
- @if $ddt-skin-name == 'bootstrap5' {
58
- font-size: 20px;
59
- }
60
-
61
- @if $ddt-skin-name == 'Material3' {
62
- font-size: $ddt-chip-icon-line-height;
63
- margin: $ddt-dd-icon-margin;
64
- line-height: $ddt-chip-icon-line-height;
65
- }
66
- }
67
-
68
- .e-icon-hide {
69
- display: none;
70
- }
71
-
72
- &.e-show-chip,
73
- &.e-show-text {
74
- .e-clear-icon {
75
- bottom: $ddt-close-icon-bottom;
76
- position: absolute;
77
- right: 0;
78
- @if $ddt-skin-name == 'Material3' {
79
- margin: 0;
80
- }
81
- }
82
-
83
- &.e-show-dd-icon .e-clear-icon {
84
- @if $ddt-skin-name == 'tailwind' {
85
- right: 28px;
86
- }
87
- @else {
88
- right: $ddt-dd-icon-width;
89
- }
90
- @if $ddt-skin-name == 'FluentUI' {
91
- bottom: 0;
92
- }
93
- }
94
-
95
- .e-ddt-icon {
96
- @if $ddt-skin-name != 'FluentUI' {
97
- bottom: $ddt-dd-icon-bottom;
98
- }
99
- position: absolute;
100
- right: 0;
101
- }
102
-
103
- &.e-input-focus input.e-dropdowntree.e-chip-input,
104
- input.e-dropdowntree.e-chip-input {
105
- padding-left: 0;
106
- padding-right: 0;
107
- }
108
- }
109
- }
110
-
111
- .e-chips-wrapper {
112
- width: 100%;
113
- }
114
-
115
- &.e-show-chip {
116
-
117
- .e-chips-close {
118
- @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
119
- line-height: $ddt-chip-icon-line-height;
120
- }
121
- min-height: $ddt-chip-close-height;
122
- min-width: $ddt-chip-close-width;
123
- text-align: center;
124
-
125
- &::before {
126
- font-size: $ddt-chip-close-font;
127
- @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' {
128
- vertical-align: middle;
129
- }
130
- }
131
- }
132
-
133
- .e-chips {
134
- align-items: center;
135
- border-radius: $ddt-chip-radius;
136
- box-sizing: border-box;
137
- display: inline-flex;
138
- float: left;
139
- height: $ddt-chip-height;
140
- margin: $ddt-chip-margin;
141
- max-width: $ddt-chip-width;
142
- overflow: hidden;
143
- padding: $ddt-chip-padding;
144
- text-overflow: ellipsis;
145
- white-space: nowrap;
146
-
147
- & > .e-chipcontent {
148
- max-width: 100%;
149
- overflow: hidden;
150
- padding: $ddt-chip-content-padding;
151
- text-indent: 0;
152
- text-overflow: ellipsis;
153
- white-space: nowrap;
154
-
155
- @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
156
- line-height: $ddt-chip-text-line-height;
157
- }
158
- }
159
- }
160
-
161
- .e-ddt-icon {
162
- @if $ddt-skin-name == 'FluentUI' {
163
- bottom: 0;
164
- }
165
- }
166
- }
167
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
168
- &.e-outline {
169
- .e-overflow {
170
- &.e-show-text {
171
- padding: 10px 12px 9px;
172
- }
173
-
174
- &.e-total-count {
175
- padding: $ddt-outline-padding;
176
- }
177
- }
178
-
179
- &.e-input-group.e-control-wrapper,
180
- &.e-float-input.e-control-wrapper {
181
- &.e-show-dd-icon .e-clear-icon {
182
- right: 30px;
183
- }
184
- }
185
-
186
- &.e-input-group.e-control-wrapper:not(.e-show-chip),
187
- &.e-float-input.e-control-wrapper:not(.e-show-chip) {
188
- &.e-show-dd-icon.e-input-focus .e-clear-icon {
189
- min-height: 20px;
190
- }
191
- }
192
- }
193
-
194
- &.e-outline.e-show-chip {
195
- .e-overflow {
196
- padding: $ddt-outline-chip-padding;
197
- }
198
-
199
- .e-chips-wrapper {
200
- padding: $ddt-outline-chip-padding;
201
- }
202
- }
203
-
204
- &.e-filled {
205
- &.e-float-input.e-control-wrapper {
206
- .e-overflow {
207
- &.e-show-text {
208
- line-height: 21px;
209
- padding: 14px 2px 5px 0;
210
- }
211
-
212
- .e-remain {
213
- &.e-wrap-count {
214
- padding-top: 10px;
215
- }
216
- }
217
- }
218
- }
219
-
220
- &.e-float-input.e-control-wrapper:not(.e-show-chip) {
221
- .e-ddt-icon,
222
- &.e-show-dd-icon .e-clear-icon {
223
- padding-top: 8px;
224
- }
225
- }
226
-
227
- &.e-float-input.e-control-wrapper.e-show-chip,
228
- &.e-float-input.e-control-wrapper.e-show-text {
229
- .e-ddt-icon {
230
- bottom: 6px;
231
- right: 10px;
232
- }
233
-
234
- .e-clear-icon {
235
- bottom: 5px;
236
- right: 38px;
237
- }
238
-
239
- &:not(.e-show-dd-icon) .e-clear-icon {
240
- bottom: 9px;
241
- right: 10px;
242
- }
243
- }
244
-
245
- .e-chips-wrapper,
246
- .e-overflow {
247
- .e-chips {
248
- margin-top: 8px;
249
- padding: 0 8px;
250
- }
251
- }
252
-
253
- &.e-float-input.e-control-wrapper.e-show-chip {
254
- .e-chips-wrapper,
255
- .e-overflow {
256
- padding-top: 8px;
257
-
258
- .e-chips {
259
- height: 18px;
260
- }
261
-
262
- .e-chips > .e-chipcontent {
263
- font-size: 12px;
264
- padding: 0 4px 0 0;
265
- }
266
-
267
- .e-chips-close::before {
268
- font-size: 12px;
269
- height: 12px;
270
- width: 12px;
271
- }
272
- }
273
- }
274
-
275
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
276
- .e-overflow {
277
- &.e-show-text {
278
- line-height: 39px;
279
- padding: 0;
280
- }
281
-
282
- .e-remain {
283
- &.e-wrap-count {
284
- line-height: 39px;
285
- padding-top: 0;
286
- }
287
- }
288
- }
289
-
290
- &.e-show-chip {
291
- .e-chips-wrapper,
292
- .e-overflow {
293
- .e-chips {
294
- height: 28px;
295
- margin-top: 8px;
296
- padding: 0 8px;
297
- }
298
-
299
- .e-chips > .e-chipcontent {
300
- font-size: 13px;
301
- padding: 0 8px 0 0;
302
- }
303
-
304
- .e-chips-close::before {
305
- font-size: 14px;
306
- height: 14px;
307
- width: 14px;
308
- }
309
- }
310
- }
311
-
312
- &.e-show-dd-icon.e-show-text,
313
- &.e-show-dd-icon.e-show-chip {
314
- .e-ddt-icon {
315
- bottom: 10px;
316
- right: 10px;
317
- }
318
- }
319
-
320
- .e-clear-icon {
321
- bottom: 9px;
322
- right: 38px;
323
- }
324
-
325
- &:not(.e-show-dd-icon) .e-clear-icon {
326
- bottom: 9px;
327
- right: 10px;
328
- }
329
- }
330
- }
331
- }
332
-
333
- .e-overflow {
334
- white-space: nowrap;
335
-
336
- &.e-show-text {
337
- padding: $ddt-delim-padding;
338
- @if $ddt-skin-name == 'tailwind' {
339
- line-height: 22px;
340
-
341
- .e-remain {
342
- padding-left: 8px;
343
- }
344
- }
345
- @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
346
- line-height: 30px;
347
- }
348
- }
349
-
350
- &.e-total-count {
351
- box-sizing: border-box;
352
- display: inline-block;
353
- overflow: hidden;
354
- text-overflow: ellipsis;
355
-
356
- .e-remain {
357
- @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
358
- line-height: 30px;
359
- }
360
- @else {
361
- padding: $ddt-rtl-remains-padding;
362
- }
363
- }
364
- }
365
-
366
- &.e-wrap-count {
367
- @if $ddt-skin-name != 'bootstrap5' {
368
- padding-top: $ddt-remains-count-padding-top;
369
- }
370
- }
371
-
372
- .e-remain {
373
- cursor: pointer;
374
- display: inline-block;
375
- font-size: $ddt-chip-font-size;
376
- padding: $ddt-remains-padding;
377
-
378
- &.e-wrap-count {
379
- @if $ddt-skin-name == 'bootstrap5' {
380
- padding: $ddt-overflow-count-padding;
381
- }
382
- @else {
383
- @if $ddt-skin-name == 'FluentUI' {
384
- line-height: 30px;
385
- }
386
- @else {
387
- padding-top: $ddt-overflow-count-padding-top;
388
- }
389
- }
390
- }
391
- }
392
- }
393
-
394
- &.e-show-chip {
395
- .e-overflow {
396
- &.e-total-count {
397
- .e-remain {
398
- padding: $ddt-delim-padding;
399
- }
400
- }
401
- @if $ddt-skin-name == 'FluentUI' {
402
- .e-remain.e-wrap-count {
403
- padding-left: 4px;
404
- }
405
- }
406
- }
407
- }
408
-
409
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
410
- @if $ddt-skin-name == 'tailwind' {
411
- margin-right: 18px;
412
- }
413
- @else {
414
- margin-right: $ddt-dd-icon-width;
415
- }
416
- max-width: $ddt-chip-ddi-width;
417
- }
418
-
419
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
420
- @if $ddt-skin-name == 'tailwind' {
421
- margin-right: 18px;
422
- }
423
- @else {
424
- margin-right: $ddt-close-icon-width;
425
- }
426
- max-width: $ddt-chip-ci-width;
427
- }
428
-
429
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
430
- margin-right: $ddt-last-chip-right-margin;
431
- max-width: $ddt-chip-ddi-ci-width;
432
- }
433
-
434
- input[readonly],
435
- .e-dropdowntree,
436
- input[readonly].e-input {
437
- pointer-events: none;
438
-
439
- &.e-chip-input {
440
- width: 0;
441
- }
442
- }
443
-
444
- &.e-popup {
445
- @if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
446
- border: 1px solid $ddt-popup-border-color;
447
- }
448
-
449
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
450
- border-radius: 4px;
451
- margin-top: 4px;
452
- }
453
-
454
- @if $skin-name == 'bootstrap4' or $skin-name == 'Material3' {
455
- border-radius: $ddt-chip-radius;
456
- }
457
-
458
- @if $skin-name == 'Material3' {
459
- margin-top: 2px;
460
- }
461
-
462
- @if $skin-name == 'FluentUI' {
463
- border-radius: 2px;
464
- }
465
- box-shadow: $ddt-box-shadow;
466
- position: absolute;
467
-
468
- .e-active .e-checkbox-wrapper {
469
- .e-frame:not(.e-check):not(.e-stop) {
470
- @if$ddt-skin-name == 'bootstrap5' {
471
- background-color: $ddt-readonly-input-bg-color;
472
- }
473
- }
474
- }
475
-
476
- .e-checkbox-wrapper {
477
- .e-frame:not(.e-check):not(.e-stop) {
478
- @if$ddt-skin-name == 'bootstrap5' {
479
- background-color: transparent;
480
- }
481
- }
482
- }
483
-
484
- .e-selectall-parent {
485
- border-bottom: 1px solid;
486
- cursor: pointer;
487
- display: block;
488
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'FluentUI' {
489
- line-height: $ddt-select-all-height;
490
- }
491
- overflow: hidden;
492
- position: relative;
493
- text-indent: $ddt-select-all-text-indent;
494
- white-space: nowrap;
495
- width: 100%;
496
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
497
- padding: 8px 12px;
498
- }
499
- @else if $ddt-skin-name == 'bootstrap5' {
500
- padding: 0 8px;
501
- }
502
- @else if $ddt-skin-name == 'Material3' {
503
- padding: $ddt-select-all-padding;
504
- }
505
-
506
- &.e-hide-selectall {
507
- display: none;
508
- }
509
-
510
- .e-checkbox-wrapper {
511
- position: relative;
512
- text-indent: 0;
513
-
514
- .e-frame {
515
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
516
- margin-top: -3px;
517
- }
518
- }
519
- }
520
-
521
- .e-all-text {
522
- font-family: inherit;
523
- font-size: 14px;
524
- margin: $ddt-select-all-checkbox-margin;
525
- @if $ddt-skin-name == 'tailwind' {
526
- line-height: $ddt-select-all-height;
527
- }
528
- }
529
- }
530
-
531
- & .e-filter-wrap .e-input,
532
- & .e-filter-wrap .e-input:focus {
533
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' {
534
- padding: $ddt-list-filter-text-indent;
535
- }
536
- }
537
-
538
- .e-filter-wrap {
539
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
540
- border-bottom: $ddt-filter-border;
541
- }
542
- @else {
543
- border: $ddt-filter-border;
544
- }
545
- border-top-width: $ddt-filter-top-border;
546
- display: block;
547
- padding: $ddt-filter-padding;
548
- }
549
-
550
- .e-filter-wrap {
551
- @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
552
- border-left-width: 0;
553
- border-right-width: 0;
554
- }
555
-
556
- @if $ddt-skin-name == 'bootstrap-dark' or $ddt-skin-name == 'bootstrap' {
557
- border-bottom: $ddt-filter-border-bottom-color;
558
- }
559
-
560
- @if $ddt-skin-name == 'bootstrap4' {
561
- background: $ddt-filter-bg;
562
- }
563
-
564
- .e-input-group:not(.e-disabled):not(.e-float-icon-left)::before,
565
- .e-input-group:not(.e-disabled):not(.e-float-icon-left)::after,
566
- .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
567
- .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
568
- @if $ddt-skin-name == 'material' {
569
- bottom: -1px;
570
- height: 1px;
571
- }
572
- }
573
- }
574
-
575
- .e-filter-wrap .e-input-group {
576
- margin-bottom: 0;
577
-
578
- @if $ddt-skin-name == 'tailwind' {
579
- border: 1px solid $border;
580
- border-radius: 4px;
581
- }
582
-
583
- @if $ddt-skin-name == 'bootstrap4' {
584
- background: $ddt-filter-bg;
585
- }
586
-
587
- .e-clear-icon {
588
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
589
- margin: 6px 6px 5px;
590
- min-height: 12px;
591
- min-width: 12px;
592
- padding: 6px;
593
- }
594
- }
595
- }
596
-
597
- .e-popup-content {
598
- overflow: auto;
599
- position: relative;
600
-
601
- .e-ddt-nodata {
602
- display: none;
603
- }
604
-
605
- &.e-no-data {
606
- cursor: default;
607
- font-family: inherit;
608
- font-size: 14px;
609
- @if $ddt-skin-name == 'tailwind' {
610
- padding: 8px 16px;
611
- }
612
- @else if $ddt-skin-name == 'bootstrap5' {
613
- padding: 7px 16px;
614
- }
615
- @else {
616
- padding: 14px 16px;
617
- }
618
- text-align: center;
619
-
620
- .e-treeview {
621
- display: none;
622
- }
623
-
624
- .e-ddt-nodata {
625
- display: block;
626
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5'or $ddt-skin-name == 'FluentUI' {
627
- line-height: 22px;
628
- }
629
- }
630
- }
631
- }
632
-
633
- .e-treeview {
634
- display: inline-table;
635
- width: 100%;
636
-
637
- .e-list-item {
638
- padding: 0;
639
-
640
- .e-ul {
641
- margin: 0;
642
- padding: 0 0 0 14px;
643
- }
644
- }
645
-
646
- .e-fullrow {
647
- @if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
648
- border-width: 2px;
649
- }
650
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
651
- height: $ddt-treeview-fullrow-height;
652
- }
653
- }
654
-
655
- & > .e-ul {
656
- overflow: hidden;
657
- @if $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
658
- padding: $ddt-treeview-padding;
659
- }
660
- }
661
-
662
- &.e-fullrow-wrap .e-text-content {
663
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
664
- padding-bottom: $ddt-treeview-content-padding-top;
665
- padding-top: $ddt-treeview-content-padding-bottom;
666
- }
667
- }
668
- }
669
-
670
- .e-ddt-footer,
671
- .e-ddt-header {
672
- cursor: default;
673
- }
674
- }
675
-
676
- &.e-rtl {
677
- &.e-show-chip {
678
- .e-chips {
679
- float: right;
680
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
681
- & > .e-chipcontent {
682
- padding: $ddt-rtl-chip-content-padding;
683
- }
684
- }
685
- }
686
- }
687
-
688
- &.e-show-chip,
689
- &.e-show-text {
690
- .e-overflow {
691
- .e-remain {
692
- padding: $ddt-rtl-remains-padding;
693
-
694
- &.e-wrap-count {
695
- @if $ddt-skin-name == 'bootstrap5' {
696
- padding-top: 5px;
697
- }
698
- @else {
699
- padding-top: $ddt-remains-count-padding-top;
700
- }
701
- }
702
- }
703
-
704
- &.e-wrap-count {
705
- position: absolute;
706
- right: auto;
707
- }
708
- }
709
- }
710
-
711
- &.e-show-text {
712
- .e-overflow {
713
- &.e-total-count {
714
- .e-remain {
715
- padding: $ddt-remains-padding;
716
- }
717
- }
718
- }
719
- }
720
-
721
- &.e-show-text {
722
- .e-overflow {
723
- &.e-wrap-count {
724
- .e-remain {
725
- @if $ddt-skin-name == 'tailwind' {
726
- padding-right: 8px;
727
- }
728
- }
729
- }
730
- }
731
- }
732
-
733
- &.e-show-chip {
734
- .e-overflow {
735
- &.e-total-count {
736
- .e-remain {
737
- padding: $ddt-delim-padding;
738
- }
739
- }
740
- }
741
- }
742
-
743
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
744
- &.e-outline {
745
- &.e-input-group.e-control-wrapper,
746
- &.e-float-input.e-control-wrapper {
747
- &.e-show-dd-icon .e-clear-icon,
748
- &.e-show-dd-icon.e-show-text .e-clear-icon,
749
- &.e-show-dd-icon.e-show-chip .e-clear-icon {
750
- left: 30px;
751
- }
752
- }
753
- }
754
-
755
- &.e-filled {
756
- &.e-float-input.e-control-wrapper {
757
- .e-overflow {
758
- &.e-show-text {
759
- padding: 14px 0 5px 2px;
760
- }
761
- }
762
- }
763
-
764
- &.e-float-input.e-control-wrapper.e-show-chip,
765
- &.e-float-input.e-control-wrapper.e-show-text {
766
- .e-ddt-icon {
767
- left: 10px;
768
- right: auto;
769
- }
770
-
771
- &.e-show-dd-icon .e-clear-icon {
772
- left: 38px;
773
- right: auto;
774
- }
775
-
776
- &:not(.e-show-dd-icon) .e-clear-icon {
777
- left: 10px;
778
- right: auto;
779
- }
780
- }
781
-
782
- &.e-float-input.e-control-wrapper.e-show-chip {
783
- .e-chips-wrapper,
784
- .e-overflow {
785
- .e-chips > .e-chipcontent {
786
- padding: 0 0 0 4px;
787
- }
788
- }
789
- }
790
-
791
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
792
- &.e-show-chip {
793
- .e-chips-wrapper,
794
- .e-overflow {
795
- .e-chips > .e-chipcontent {
796
- padding: 0 0 0 8px;
797
- }
798
- }
799
- }
800
-
801
- &.e-show-dd-icon.e-show-text,
802
- &.e-show-dd-icon.e-show-chip {
803
- .e-ddt-icon {
804
- left: 10px;
805
- right: auto;
806
- }
807
- }
808
-
809
- &.e-show-dd-icon .e-clear-icon {
810
- left: 38px;
811
- right: auto;
812
- }
813
-
814
- &:not(.e-show-dd-icon) .e-clear-icon {
815
- left: 10px;
816
- right: auto;
817
- }
818
- }
819
- }
820
- }
821
-
822
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
823
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
824
- margin-left: 18px;
825
- margin-right: 4px;
826
- }
827
- @else {
828
- margin-left: $ddt-dd-icon-width;
829
- margin-right: 1px;
830
- }
831
- }
832
-
833
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
834
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
835
- margin-left: 18px;
836
- margin-right: 4px;
837
- }
838
- @else {
839
- margin-left: $ddt-close-icon-width;
840
- margin-right: 1px;
841
- }
842
- }
843
-
844
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
845
- margin-left: $ddt-last-chip-right-margin;
846
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
847
- margin-right: 4px;
848
- }
849
- @else {
850
- margin-right: 1px;
851
- }
852
- }
853
-
854
- &.e-input-group.e-control-wrapper,
855
- &.e-float-input.e-control-wrapper {
856
-
857
- &.e-show-chip,
858
- &.e-show-text {
859
-
860
- .e-clear-icon,
861
- .e-ddt-icon {
862
- left: 0;
863
- right: auto;
864
- }
865
-
866
- &.e-show-dd-icon .e-clear-icon {
867
- @if $ddt-skin-name == 'tailwind' {
868
- left: 28px;
869
- }
870
- @else {
871
- left: $ddt-dd-icon-width;
872
- }
873
- }
874
- }
875
- }
876
-
877
- &.e-popup {
878
-
879
- .e-treeview .e-list-item .e-ul {
880
- padding: 0 14px 0 0;
881
- }
882
- }
883
- }
884
- }
885
-
886
- .e-ddt-icon-hide {
887
- display: none;
888
- }
889
-
890
- .e-bigger .e-ddt,
891
- .e-ddt.e-bigger {
892
-
893
- .e-chips {
894
- height: $ddt-chip-bigger-height;
895
-
896
- @if $ddt-skin-name == 'tailwind' {
897
- padding: 3px 8px;
898
-
899
- & > .e-chipcontent {
900
- padding: $ddt-big-chip-content-padding;
901
- }
902
- }
903
- @if $ddt-skin-name == 'FluentUI' {
904
- font-size: $text-lg;
905
- }
906
- }
907
-
908
- &.e-input-group.e-control-wrapper,
909
- &.e-float-input.e-control-wrapper {
910
-
911
- &.e-show-chip,
912
- &.e-show-text {
913
- &.e-show-dd-icon .e-clear-icon {
914
- @if $ddt-skin-name == 'tailwind' {
915
- bottom: 3px;
916
- right: 32px;
917
- }
918
- @else if $ddt-skin-name == 'bootstrap4' {
919
- right: 33px;
920
- }
921
- @else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
922
- bottom: auto;
923
- right: 36px;
924
- }
925
- @else if $ddt-skin-name != 'Material3' {
926
- right: $ddt-dd-icon-bigger-width;
927
- }
928
- }
929
-
930
- @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
931
- &.e-show-chip {
932
- &.e-show-dd-icon .e-clear-icon {
933
- bottom: 0;
934
- }
935
- }
936
- }
937
-
938
- .e-ddt-icon {
939
- bottom: $ddt-dd-icon-bigger-bottom;
940
- }
941
- }
942
-
943
- .e-input-group-icon.e-ddt-icon {
944
- @if $ddt-skin-name == 'bootstrap4' {
945
- font-size: 10px;
946
- }
947
- }
948
-
949
- .e-clear-icon {
950
- @if $ddt-skin-name == 'tailwind' {
951
- min-width: 0;
952
- padding: 6px;
953
- }
954
- @else {
955
- min-height: $ddt-close-icon-bigger-min-height;
956
- }
957
- }
958
- }
959
-
960
- &.e-show-chip {
961
- .e-chips-close {
962
- @if $ddt-skin-name == 'bootstrap4' {
963
- line-height: 27px;
964
- min-height: 30px;
965
- min-width: 30px;
966
-
967
- &::before {
968
- font-size: 10px;
969
- }
970
- }
971
- @if $ddt-skin-name == 'tailwind' {
972
- line-height: 18px;
973
- min-height: 24px;
974
- min-width: 24px;
975
-
976
- &::before {
977
- font-size: 20px;
978
- }
979
- }
980
- @if $ddt-skin-name == 'bootstrap5' {
981
- min-height: 24px;
982
- min-width: 24px;
983
-
984
- &::before {
985
- font-size: 12px;
986
- vertical-align: middle;
987
- }
988
- }
989
- @if $ddt-skin-name == 'FluentUI' {
990
- line-height: 27px;
991
- min-height: 32px;
992
- min-width: 32px;
993
-
994
- &::before {
995
- font-size: 12px;
996
- }
997
- }
998
- }
999
- }
1000
-
1001
- .e-overflow {
1002
-
1003
- &.e-show-text {
1004
- padding: $ddt-delim-bigger-padding;
1005
- @if $ddt-skin-name == 'bootstrap5' {
1006
- line-height: 37px;
1007
- }
1008
- @if $ddt-skin-name == 'FluentUI' {
1009
- line-height: 38px;
1010
- }
1011
- }
1012
-
1013
- .e-remain {
1014
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
1015
- font-size: $text-base;
1016
- }
1017
- @else if $ddt-skin-name == 'FluentUI' {
1018
- font-size: $text-lg;
1019
- }
1020
- }
1021
- }
1022
-
1023
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1024
- &.e-outline {
1025
- .e-overflow {
1026
- &.e-show-text {
1027
- padding: $ddt-outline-bigger-padding;
1028
- }
1029
-
1030
- &.e-total-count {
1031
- padding: $ddt-outline-bigger-padding;
1032
- }
1033
- }
1034
-
1035
- &.e-input-group.e-control-wrapper,
1036
- &.e-float-input.e-control-wrapper {
1037
- &.e-show-dd-icon .e-clear-icon {
1038
- right: 36px;
1039
- }
1040
- }
1041
- }
1042
-
1043
- &.e-outline.e-show-chip {
1044
- .e-overflow {
1045
- padding: $ddt-bigger-outline-chip-padding;
1046
-
1047
- &.e-total-count {
1048
- .e-remain {
1049
- padding-top: 10px;
1050
- }
1051
- }
1052
-
1053
- .e-remain {
1054
- &.e-wrap-count {
1055
- padding-top: 10px;
1056
- }
1057
- }
1058
- }
1059
-
1060
- .e-chips-wrapper {
1061
- padding: $ddt-bigger-outline-chip-padding;
1062
- }
1063
- }
1064
-
1065
- &.e-filled {
1066
- &.e-float-input.e-control-wrapper {
1067
- .e-overflow {
1068
- &.e-show-text {
1069
- line-height: 30px;
1070
- padding: 19px 12px 0 0;
1071
- }
1072
-
1073
- .e-remain {
1074
- &.e-wrap-count {
1075
- padding-top: 14px;
1076
- }
1077
- }
1078
- }
1079
- }
1080
-
1081
- &.e-float-input.e-control-wrapper:not(.e-show-chip) {
1082
- .e-ddt-icon,
1083
- &.e-show-dd-icon .e-clear-icon {
1084
- padding-top: 8px;
1085
- }
1086
- }
1087
-
1088
- &.e-float-input.e-control-wrapper.e-show-chip,
1089
- &.e-float-input.e-control-wrapper.e-show-text {
1090
- .e-ddt-icon {
1091
- bottom: 12px;
1092
- right: 12px;
1093
- }
1094
-
1095
- .e-clear-icon {
1096
- bottom: 11px;
1097
- right: 44px;
1098
- }
1099
-
1100
- &:not(.e-show-dd-icon) .e-clear-icon {
1101
- bottom: 14px;
1102
- right: 12px;
1103
- }
1104
- }
1105
-
1106
- .e-chips-wrapper,
1107
- .e-overflow {
1108
- .e-chips {
1109
- margin-top: 8px;
1110
- padding: 0 8px;
1111
- }
1112
- }
1113
-
1114
- &.e-float-input.e-control-wrapper.e-show-chip {
1115
- .e-chips-wrapper,
1116
- .e-overflow {
1117
- padding-top: 19px;
1118
-
1119
- .e-chips {
1120
- height: 24px;
1121
- }
1122
-
1123
- .e-chips > .e-chipcontent {
1124
- font-size: 13px;
1125
- }
1126
-
1127
- .e-chips-close::before {
1128
- font-size: 14px;
1129
- height: 14px;
1130
- width: 14px;
1131
- }
1132
- }
1133
- }
1134
-
1135
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
1136
- .e-overflow {
1137
- &.e-show-text {
1138
- line-height: 55px;
1139
- }
1140
-
1141
- .e-remain {
1142
- &.e-wrap-count {
1143
- line-height: 55px;
1144
- padding-top: 0;
1145
- }
1146
- }
1147
- }
1148
-
1149
- &.e-show-chip {
1150
- .e-chips-wrapper,
1151
- .e-overflow {
1152
- .e-chips {
1153
- height: 32px;
1154
- padding: 0 12px;
1155
- }
1156
-
1157
- .e-chips > .e-chipcontent {
1158
- font-size: 14px;
1159
- }
1160
-
1161
- .e-chips-close::before {
1162
- font-size: 16px;
1163
- height: 16px;
1164
- width: 16px;
1165
- }
1166
- }
1167
- }
1168
-
1169
- &.e-show-dd-icon.e-show-text,
1170
- &.e-show-dd-icon.e-show-chip {
1171
- .e-ddt-icon,
1172
- &:not(.e-show-dd-icon) .e-clear-icon {
1173
- bottom: 16px;
1174
- right: 12px;
1175
- }
1176
- }
1177
-
1178
- .e-clear-icon {
1179
- bottom: 15px;
1180
- right: 44px;
1181
- }
1182
- }
1183
- }
1184
- }
1185
-
1186
- &.e-show-chip {
1187
- .e-overflow {
1188
- .e-remain {
1189
- &.e-wrap-count {
1190
- @if $ddt-skin-name == 'tailwind' {
1191
- line-height: 22px;
1192
- padding-top: 7px;
1193
- }
1194
- @if $ddt-skin-name == 'FluentUI' {
1195
- line-height: 38px;
1196
- padding-top: 0;
1197
- }
1198
- }
1199
- }
1200
-
1201
- &.e-total-count {
1202
- .e-remain {
1203
- @if $ddt-skin-name == 'bootstrap5' {
1204
- line-height: 36px;
1205
- padding: 0 12px;
1206
- }
1207
- @else if $ddt-skin-name == 'tailwind' {
1208
- padding: 8px 12px;
1209
- }
1210
- @else if $ddt-skin-name == 'FluentUI' {
1211
- line-height: 38px;
1212
- padding: 0 8px;
1213
- }
1214
- }
1215
- }
1216
- }
1217
- }
1218
-
1219
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1220
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1221
- margin-right: $ddt-dd-icon-bigger-width;
1222
- }
1223
- max-width: $ddt-big-chip-ddi-width;
1224
- }
1225
-
1226
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1227
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1228
- margin-right: $ddt-close-icon-bigger-width;
1229
- }
1230
- max-width: $ddt-big-chip-ci-width;
1231
- }
1232
-
1233
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1234
- margin-right: $ddt-last-chip-bigger-right-margin;
1235
- max-width: $ddt-big-chip-ddi-ci-width;
1236
- }
1237
-
1238
- &.e-popup {
1239
- @if $ddt-skin-name == 'tailwind' {
1240
- margin-top: 8px;
1241
- }
1242
- @else if $ddt-skin-name == 'bootstrap5' {
1243
- margin-top: 4px;
1244
- }
1245
-
1246
- .e-selectall-parent {
1247
- text-indent: $ddt-select-all-bigger-text-indent;
1248
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1249
- @if $ddt-skin-name == 'bootstrap5' {
1250
- padding: 3px 12px;
1251
- }
1252
- @else if $ddt-skin-name == 'tailwind' {
1253
- padding: 12px 16px;
1254
- }
1255
- @else {
1256
- padding: 10px 16px;
1257
- }
1258
-
1259
- .e-all-text {
1260
- font-size: $text-base;
1261
- line-height: 24px;
1262
- @if $ddt-skin-name == 'bootstrap5' {
1263
- margin: 0 12px;
1264
- }
1265
- @else {
1266
- margin: 0 16px;
1267
- }
1268
- }
1269
- }
1270
- }
1271
-
1272
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1273
- .e-popup-content {
1274
- &.e-no-data {
1275
- @if $ddt-skin-name == 'bootstrap5' {
1276
- padding: 9px 16px;
1277
- }
1278
- @else {
1279
- padding: 10px 16px;
1280
- }
1281
-
1282
- .e-ddt-nodata {
1283
- @if $ddt-skin-name == 'FluentUI' {
1284
- font-size: $text-lg;
1285
- }
1286
- @else {
1287
- font-size: $text-base;
1288
- }
1289
- line-height: 24px;
1290
- }
1291
- }
1292
- }
1293
-
1294
- .e-filter-wrap {
1295
- padding: 8px;
1296
- }
1297
- }
1298
-
1299
- .e-treeview .e-fullrow {
1300
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1301
- height: $ddt-treeview-fullrow-bigger-height;
1302
- }
1303
- }
1304
-
1305
- .e-treeview > .e-ul {
1306
- @if $ddt-skin-name == 'bootstrap5' {
1307
- padding: 8px 16px;
1308
- }
1309
- @if $ddt-skin-name == 'tailwind' {
1310
- padding: 8px 0 8px 16px;
1311
- }
1312
- }
1313
- }
1314
-
1315
- &.e-rtl {
1316
- .e-chips {
1317
- @if $ddt-skin-name == 'tailwind' {
1318
- & > .e-chipcontent {
1319
- padding: $ddt-rtl-big-chip-content-padding;
1320
- }
1321
- }
1322
- }
1323
-
1324
- @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1325
- &.e-outline {
1326
- &.e-input-group.e-control-wrapper,
1327
- &.e-float-input.e-control-wrapper {
1328
- &.e-show-dd-icon .e-clear-icon,
1329
- &.e-show-dd-icon.e-show-text .e-clear-icon,
1330
- &.e-show-dd-icon.e-show-chip .e-clear-icon {
1331
- left: 36px;
1332
- }
1333
- }
1334
- }
1335
-
1336
- &.e-filled {
1337
- &.e-float-input.e-control-wrapper {
1338
- .e-overflow {
1339
- &.e-show-text {
1340
- padding: 19px 0 0 12px;
1341
- }
1342
- }
1343
- }
1344
-
1345
- &.e-float-input.e-control-wrapper.e-show-chip,
1346
- &.e-float-input.e-control-wrapper.e-show-text {
1347
- .e-ddt-icon,
1348
- &:not(.e-show-dd-icon) .e-clear-icon {
1349
- left: 12px;
1350
- right: auto;
1351
- }
1352
-
1353
- &.e-show-dd-icon .e-clear-icon {
1354
- left: 44px;
1355
- right: auto;
1356
- }
1357
- }
1358
-
1359
- &.e-input-group.e-control-wrapper:not(.e-float-input) {
1360
- &.e-show-dd-icon:not(.e-input-focus),
1361
- &.e-show-dd-icon.e-show-chip {
1362
- .e-ddt-icon,
1363
- &:not(.e-show-dd-icon) .e-clear-icon {
1364
- left: 12px;
1365
- right: auto;
1366
- }
1367
- }
1368
-
1369
- .e-clear-icon {
1370
- left: 44px;
1371
- right: auto;
1372
- }
1373
- }
1374
- }
1375
- }
1376
-
1377
- &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1378
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1379
- margin-right: 4px;
1380
- }
1381
- @else if $ddt-skin-name != 'Material3' {
1382
- margin-left: $ddt-dd-icon-bigger-width;
1383
- margin-right: 1px;
1384
- }
1385
- }
1386
-
1387
- &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1388
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1389
- margin-right: 4px;
1390
- }
1391
- @else if $ddt-skin-name != 'Material3' {
1392
- margin-left: $ddt-close-icon-bigger-width;
1393
- margin-right: 1px;
1394
- }
1395
- }
1396
-
1397
- &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1398
- margin-left: $ddt-last-chip-bigger-right-margin;
1399
- @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1400
- margin-right: 4px;
1401
- }
1402
- @else {
1403
- margin-right: 1px;
1404
- }
1405
- }
1406
-
1407
- &.e-show-chip,
1408
- &.e-show-text {
1409
- &.e-input-group.e-show-dd-icon .e-clear-icon {
1410
- @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1411
- left: $ddt-dd-icon-bigger-width;
1412
- }
1413
- right: auto;
1414
- }
1415
- }
1416
- }
1417
- }
1418
- }
1
+ @mixin ddt-rotate($position) {
2
+ transform: rotate($position);
3
+ transition: transform 300ms ease;
4
+ }
5
+
6
+ @include export-module('dropdowntree-layout') {
7
+
8
+ .e-ddt {
9
+ cursor: pointer;
10
+ outline: none;
11
+
12
+ .e-ddt-icon::before {
13
+ @include ddt-rotate(0deg);
14
+ }
15
+
16
+ &.e-icon-anim {
17
+ @if $ddt-skin-name == 'Material3' {
18
+ .e-ddt-icon {
19
+ background: $ddt-dd-icon-bg;
20
+ border-radius: $ddt-dd-icon-radius;
21
+ }
22
+ }
23
+
24
+ .e-ddt-icon::before {
25
+ @include ddt-rotate(180deg);
26
+ }
27
+ }
28
+
29
+ .e-ddt-hidden {
30
+ border: 0;
31
+ height: 0;
32
+ visibility: hidden;
33
+ width: 0;
34
+ }
35
+
36
+ &.e-input-group.e-control-wrapper,
37
+ &.e-float-input.e-control-wrapper {
38
+ .e-clear-icon {
39
+ box-sizing: content-box;
40
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
41
+ min-height: $ddt-close-icon-min-height;
42
+ }
43
+ @if $ddt-skin-name == 'Material3' {
44
+ margin: $ddt-dd-icon-margin;
45
+ }
46
+ @if $ddt-skin-name == 'FluentUI' {
47
+ min-height: $ddt-dd-icon-width;
48
+ }
49
+ }
50
+
51
+ .e-input-group-icon.e-ddt-icon {
52
+ border: 0;
53
+
54
+ @if $ddt-skin-name == 'bootstrap4' {
55
+ font-size: 8px;
56
+ }
57
+ @if $ddt-skin-name == 'bootstrap5' {
58
+ font-size: 20px;
59
+ }
60
+
61
+ @if $ddt-skin-name == 'Material3' {
62
+ font-size: $ddt-chip-icon-line-height;
63
+ margin: $ddt-dd-icon-margin;
64
+ line-height: $ddt-chip-icon-line-height;
65
+ }
66
+ }
67
+
68
+ .e-icon-hide {
69
+ display: none;
70
+ }
71
+
72
+ &.e-show-chip,
73
+ &.e-show-text {
74
+ .e-clear-icon {
75
+ bottom: $ddt-close-icon-bottom;
76
+ position: absolute;
77
+ right: 0;
78
+ @if $ddt-skin-name == 'Material3' {
79
+ margin: 0;
80
+ }
81
+ }
82
+
83
+ &.e-show-dd-icon .e-clear-icon {
84
+ @if $ddt-skin-name == 'tailwind' {
85
+ right: 28px;
86
+ }
87
+ @else {
88
+ right: $ddt-dd-icon-width;
89
+ }
90
+ @if $ddt-skin-name == 'FluentUI' {
91
+ bottom: 0;
92
+ }
93
+ }
94
+
95
+ .e-ddt-icon {
96
+ @if $ddt-skin-name != 'FluentUI' {
97
+ bottom: $ddt-dd-icon-bottom;
98
+ }
99
+ position: absolute;
100
+ right: 0;
101
+ }
102
+
103
+ &.e-input-focus input.e-dropdowntree.e-chip-input,
104
+ input.e-dropdowntree.e-chip-input {
105
+ padding-left: 0;
106
+ padding-right: 0;
107
+ }
108
+ }
109
+ }
110
+
111
+ .e-chips-wrapper {
112
+ width: 100%;
113
+ }
114
+
115
+ &.e-show-chip {
116
+
117
+ .e-chips-close {
118
+ @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
119
+ line-height: $ddt-chip-icon-line-height;
120
+ }
121
+ min-height: $ddt-chip-close-height;
122
+ min-width: $ddt-chip-close-width;
123
+ text-align: center;
124
+
125
+ &::before {
126
+ font-size: $ddt-chip-close-font;
127
+ @if $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'material' and $ddt-skin-name != 'material-dark' and $ddt-skin-name != 'Material3' {
128
+ vertical-align: middle;
129
+ }
130
+ }
131
+ }
132
+
133
+ .e-chips {
134
+ align-items: center;
135
+ border-radius: $ddt-chip-radius;
136
+ box-sizing: border-box;
137
+ display: inline-flex;
138
+ float: left;
139
+ height: $ddt-chip-height;
140
+ margin: $ddt-chip-margin;
141
+ max-width: $ddt-chip-width;
142
+ overflow: hidden;
143
+ padding: $ddt-chip-padding;
144
+ text-overflow: ellipsis;
145
+ white-space: nowrap;
146
+
147
+ & > .e-chipcontent {
148
+ max-width: 100%;
149
+ overflow: hidden;
150
+ padding: $ddt-chip-content-padding;
151
+ text-indent: 0;
152
+ text-overflow: ellipsis;
153
+ white-space: nowrap;
154
+
155
+ @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
156
+ line-height: $ddt-chip-text-line-height;
157
+ }
158
+ }
159
+ }
160
+
161
+ .e-ddt-icon {
162
+ @if $ddt-skin-name == 'FluentUI' {
163
+ bottom: 0;
164
+ }
165
+ }
166
+ }
167
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
168
+ &.e-outline {
169
+ .e-overflow {
170
+ &.e-show-text {
171
+ padding: 10px 12px 9px;
172
+ }
173
+
174
+ &.e-total-count {
175
+ padding: $ddt-outline-padding;
176
+ }
177
+ }
178
+
179
+ &.e-input-group.e-control-wrapper,
180
+ &.e-float-input.e-control-wrapper {
181
+ &.e-show-dd-icon .e-clear-icon {
182
+ right: 30px;
183
+ }
184
+ }
185
+
186
+ &.e-input-group.e-control-wrapper:not(.e-show-chip),
187
+ &.e-float-input.e-control-wrapper:not(.e-show-chip) {
188
+ &.e-show-dd-icon.e-input-focus .e-clear-icon {
189
+ min-height: 20px;
190
+ }
191
+ }
192
+ }
193
+
194
+ &.e-outline.e-show-chip {
195
+ .e-overflow {
196
+ padding: $ddt-outline-chip-padding;
197
+ }
198
+
199
+ .e-chips-wrapper {
200
+ padding: $ddt-outline-chip-padding;
201
+ }
202
+ }
203
+
204
+ &.e-filled {
205
+ &.e-float-input.e-control-wrapper {
206
+ .e-overflow {
207
+ &.e-show-text {
208
+ line-height: 21px;
209
+ padding: 14px 2px 5px 0;
210
+ }
211
+
212
+ .e-remain {
213
+ &.e-wrap-count {
214
+ padding-top: 10px;
215
+ }
216
+ }
217
+ }
218
+ }
219
+
220
+ &.e-float-input.e-control-wrapper:not(.e-show-chip) {
221
+ .e-ddt-icon,
222
+ &.e-show-dd-icon .e-clear-icon {
223
+ padding-top: 8px;
224
+ }
225
+ }
226
+
227
+ &.e-float-input.e-control-wrapper.e-show-chip,
228
+ &.e-float-input.e-control-wrapper.e-show-text {
229
+ .e-ddt-icon {
230
+ bottom: 6px;
231
+ right: 10px;
232
+ }
233
+
234
+ .e-clear-icon {
235
+ bottom: 5px;
236
+ right: 38px;
237
+ }
238
+
239
+ &:not(.e-show-dd-icon) .e-clear-icon {
240
+ bottom: 9px;
241
+ right: 10px;
242
+ }
243
+ }
244
+
245
+ .e-chips-wrapper,
246
+ .e-overflow {
247
+ .e-chips {
248
+ margin-top: 8px;
249
+ padding: 0 8px;
250
+ }
251
+ }
252
+
253
+ &.e-float-input.e-control-wrapper.e-show-chip {
254
+ .e-chips-wrapper,
255
+ .e-overflow {
256
+ padding-top: 8px;
257
+
258
+ .e-chips {
259
+ height: 18px;
260
+ }
261
+
262
+ .e-chips > .e-chipcontent {
263
+ font-size: 12px;
264
+ padding: 0 4px 0 0;
265
+ }
266
+
267
+ .e-chips-close::before {
268
+ font-size: 12px;
269
+ height: 12px;
270
+ width: 12px;
271
+ }
272
+ }
273
+ }
274
+
275
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
276
+ .e-overflow {
277
+ &.e-show-text {
278
+ line-height: 39px;
279
+ padding: 0;
280
+ }
281
+
282
+ .e-remain {
283
+ &.e-wrap-count {
284
+ line-height: 39px;
285
+ padding-top: 0;
286
+ }
287
+ }
288
+ }
289
+
290
+ &.e-show-chip {
291
+ .e-chips-wrapper,
292
+ .e-overflow {
293
+ .e-chips {
294
+ height: 28px;
295
+ margin-top: 8px;
296
+ padding: 0 8px;
297
+ }
298
+
299
+ .e-chips > .e-chipcontent {
300
+ font-size: 13px;
301
+ padding: 0 8px 0 0;
302
+ }
303
+
304
+ .e-chips-close::before {
305
+ font-size: 14px;
306
+ height: 14px;
307
+ width: 14px;
308
+ }
309
+ }
310
+ }
311
+
312
+ &.e-show-dd-icon.e-show-text,
313
+ &.e-show-dd-icon.e-show-chip {
314
+ .e-ddt-icon {
315
+ bottom: 10px;
316
+ right: 10px;
317
+ }
318
+ }
319
+
320
+ .e-clear-icon {
321
+ bottom: 9px;
322
+ right: 38px;
323
+ }
324
+
325
+ &:not(.e-show-dd-icon) .e-clear-icon {
326
+ bottom: 9px;
327
+ right: 10px;
328
+ }
329
+ }
330
+ }
331
+ }
332
+
333
+ .e-overflow {
334
+ white-space: nowrap;
335
+
336
+ &.e-show-text {
337
+ padding: $ddt-delim-padding;
338
+ @if $ddt-skin-name == 'tailwind' {
339
+ line-height: 22px;
340
+
341
+ .e-remain {
342
+ padding-left: 8px;
343
+ }
344
+ }
345
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
346
+ line-height: 30px;
347
+ }
348
+ }
349
+
350
+ &.e-total-count {
351
+ box-sizing: border-box;
352
+ display: inline-block;
353
+ overflow: hidden;
354
+ text-overflow: ellipsis;
355
+
356
+ .e-remain {
357
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
358
+ line-height: 30px;
359
+ }
360
+ @else {
361
+ padding: $ddt-rtl-remains-padding;
362
+ }
363
+ }
364
+ }
365
+
366
+ &.e-wrap-count {
367
+ @if $ddt-skin-name != 'bootstrap5' {
368
+ padding-top: $ddt-remains-count-padding-top;
369
+ }
370
+ }
371
+
372
+ .e-remain {
373
+ cursor: pointer;
374
+ display: inline-block;
375
+ font-size: $ddt-chip-font-size;
376
+ padding: $ddt-remains-padding;
377
+
378
+ &.e-wrap-count {
379
+ @if $ddt-skin-name == 'bootstrap5' {
380
+ padding: $ddt-overflow-count-padding;
381
+ }
382
+ @else {
383
+ @if $ddt-skin-name == 'FluentUI' {
384
+ line-height: 30px;
385
+ }
386
+ @else {
387
+ padding-top: $ddt-overflow-count-padding-top;
388
+ }
389
+ }
390
+ }
391
+ }
392
+ }
393
+
394
+ &.e-show-chip {
395
+ .e-overflow {
396
+ &.e-total-count {
397
+ .e-remain {
398
+ padding: $ddt-delim-padding;
399
+ }
400
+ }
401
+ @if $ddt-skin-name == 'FluentUI' {
402
+ .e-remain.e-wrap-count {
403
+ padding-left: 4px;
404
+ }
405
+ }
406
+ }
407
+ }
408
+
409
+ &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
410
+ @if $ddt-skin-name == 'tailwind' {
411
+ margin-right: 18px;
412
+ }
413
+ @else {
414
+ margin-right: $ddt-dd-icon-width;
415
+ }
416
+ max-width: $ddt-chip-ddi-width;
417
+ }
418
+
419
+ &.e-show-clear .e-chips-wrapper .e-chips:last-child {
420
+ @if $ddt-skin-name == 'tailwind' {
421
+ margin-right: 18px;
422
+ }
423
+ @else {
424
+ margin-right: $ddt-close-icon-width;
425
+ }
426
+ max-width: $ddt-chip-ci-width;
427
+ }
428
+
429
+ &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
430
+ margin-right: $ddt-last-chip-right-margin;
431
+ max-width: $ddt-chip-ddi-ci-width;
432
+ }
433
+
434
+ input[readonly],
435
+ .e-dropdowntree,
436
+ input[readonly].e-input {
437
+ pointer-events: none;
438
+
439
+ &.e-chip-input {
440
+ width: 0;
441
+ }
442
+ }
443
+
444
+ &.e-popup {
445
+ @if $skin-name != 'material' and $skin-name != 'FluentUI' and $skin-name != 'Material3' {
446
+ border: 1px solid $ddt-popup-border-color;
447
+ }
448
+
449
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
450
+ border-radius: 4px;
451
+ margin-top: 4px;
452
+ }
453
+
454
+ @if $skin-name == 'bootstrap4' or $skin-name == 'Material3' {
455
+ border-radius: $ddt-chip-radius;
456
+ }
457
+
458
+ @if $skin-name == 'Material3' {
459
+ margin-top: 2px;
460
+ }
461
+
462
+ @if $skin-name == 'FluentUI' {
463
+ border-radius: 2px;
464
+ }
465
+ box-shadow: $ddt-box-shadow;
466
+ position: absolute;
467
+
468
+ .e-active .e-checkbox-wrapper {
469
+ .e-frame:not(.e-check):not(.e-stop) {
470
+ @if$ddt-skin-name == 'bootstrap5' {
471
+ background-color: $ddt-readonly-input-bg-color;
472
+ }
473
+ }
474
+ }
475
+
476
+ .e-checkbox-wrapper {
477
+ .e-frame:not(.e-check):not(.e-stop) {
478
+ @if$ddt-skin-name == 'bootstrap5' {
479
+ background-color: transparent;
480
+ }
481
+ }
482
+ }
483
+
484
+ .e-selectall-parent {
485
+ border-bottom: 1px solid;
486
+ cursor: pointer;
487
+ display: block;
488
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'FluentUI' {
489
+ line-height: $ddt-select-all-height;
490
+ }
491
+ overflow: hidden;
492
+ position: relative;
493
+ text-indent: $ddt-select-all-text-indent;
494
+ white-space: nowrap;
495
+ width: 100%;
496
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
497
+ padding: 8px 12px;
498
+ }
499
+ @else if $ddt-skin-name == 'bootstrap5' {
500
+ padding: 0 8px;
501
+ }
502
+ @else if $ddt-skin-name == 'Material3' {
503
+ padding: $ddt-select-all-padding;
504
+ }
505
+
506
+ &.e-hide-selectall {
507
+ display: none;
508
+ }
509
+
510
+ .e-checkbox-wrapper {
511
+ position: relative;
512
+ text-indent: 0;
513
+
514
+ .e-frame {
515
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
516
+ margin-top: -3px;
517
+ }
518
+ }
519
+ }
520
+
521
+ .e-all-text {
522
+ font-family: inherit;
523
+ font-size: 14px;
524
+ margin: $ddt-select-all-checkbox-margin;
525
+ @if $ddt-skin-name == 'tailwind' {
526
+ line-height: $ddt-select-all-height;
527
+ }
528
+ }
529
+ }
530
+
531
+ & .e-filter-wrap .e-input,
532
+ & .e-filter-wrap .e-input:focus {
533
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' {
534
+ padding: $ddt-list-filter-text-indent;
535
+ }
536
+ }
537
+
538
+ .e-filter-wrap {
539
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'FluentUI' {
540
+ border-bottom: $ddt-filter-border;
541
+ }
542
+ @else {
543
+ border: $ddt-filter-border;
544
+ }
545
+ border-top-width: $ddt-filter-top-border;
546
+ display: block;
547
+ padding: $ddt-filter-padding;
548
+ }
549
+
550
+ .e-filter-wrap {
551
+ @if $ddt-skin-name == 'fabric' or $ddt-skin-name == 'fabric-dark' or $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
552
+ border-left-width: 0;
553
+ border-right-width: 0;
554
+ }
555
+
556
+ @if $ddt-skin-name == 'bootstrap-dark' or $ddt-skin-name == 'bootstrap' {
557
+ border-bottom: $ddt-filter-border-bottom-color;
558
+ }
559
+
560
+ @if $ddt-skin-name == 'bootstrap4' {
561
+ background: $ddt-filter-bg;
562
+ }
563
+
564
+ .e-input-group:not(.e-disabled):not(.e-float-icon-left)::before,
565
+ .e-input-group:not(.e-disabled):not(.e-float-icon-left)::after,
566
+ .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::before,
567
+ .e-input-group.e-control-wrapper:not(.e-disabled):not(.e-float-icon-left)::after {
568
+ @if $ddt-skin-name == 'material' {
569
+ bottom: -1px;
570
+ height: 1px;
571
+ }
572
+ }
573
+ }
574
+
575
+ .e-filter-wrap .e-input-group {
576
+ margin-bottom: 0;
577
+
578
+ @if $ddt-skin-name == 'tailwind' {
579
+ border: 1px solid $border;
580
+ border-radius: 4px;
581
+ }
582
+
583
+ @if $ddt-skin-name == 'bootstrap4' {
584
+ background: $ddt-filter-bg;
585
+ }
586
+
587
+ .e-clear-icon {
588
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
589
+ margin: 6px 6px 5px;
590
+ min-height: 12px;
591
+ min-width: 12px;
592
+ padding: 6px;
593
+ }
594
+ }
595
+ }
596
+
597
+ .e-popup-content {
598
+ overflow: auto;
599
+ position: relative;
600
+
601
+ .e-ddt-nodata {
602
+ display: none;
603
+ }
604
+
605
+ &.e-no-data {
606
+ cursor: default;
607
+ font-family: inherit;
608
+ font-size: 14px;
609
+ @if $ddt-skin-name == 'tailwind' {
610
+ padding: 8px 16px;
611
+ }
612
+ @else if $ddt-skin-name == 'bootstrap5' {
613
+ padding: 7px 16px;
614
+ }
615
+ @else {
616
+ padding: 14px 16px;
617
+ }
618
+ text-align: center;
619
+
620
+ .e-treeview {
621
+ display: none;
622
+ }
623
+
624
+ .e-ddt-nodata {
625
+ display: block;
626
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5'or $ddt-skin-name == 'FluentUI' {
627
+ line-height: 22px;
628
+ }
629
+ }
630
+ }
631
+ }
632
+
633
+ .e-treeview {
634
+ display: inline-table;
635
+ width: 100%;
636
+
637
+ .e-list-item {
638
+ padding: 0;
639
+
640
+ .e-ul {
641
+ margin: 0;
642
+ padding: 0 0 0 14px;
643
+ }
644
+ }
645
+
646
+ .e-fullrow {
647
+ @if $ddt-skin-name == 'highcontrast' or $ddt-skin-name == 'highcontrast-light' {
648
+ border-width: 2px;
649
+ }
650
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
651
+ height: $ddt-treeview-fullrow-height;
652
+ }
653
+ }
654
+
655
+ & > .e-ul {
656
+ overflow: hidden;
657
+ @if $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
658
+ padding: $ddt-treeview-padding;
659
+ }
660
+ }
661
+
662
+ &.e-fullrow-wrap .e-text-content {
663
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'FluentUI' and $ddt-skin-name != 'Material3' {
664
+ padding-bottom: $ddt-treeview-content-padding-top;
665
+ padding-top: $ddt-treeview-content-padding-bottom;
666
+ }
667
+ }
668
+ }
669
+
670
+ .e-ddt-footer,
671
+ .e-ddt-header {
672
+ cursor: default;
673
+ }
674
+ }
675
+
676
+ &.e-rtl {
677
+ &.e-show-chip {
678
+ .e-chips {
679
+ float: right;
680
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
681
+ & > .e-chipcontent {
682
+ padding: $ddt-rtl-chip-content-padding;
683
+ }
684
+ }
685
+ }
686
+ }
687
+
688
+ &.e-show-chip,
689
+ &.e-show-text {
690
+ .e-overflow {
691
+ .e-remain {
692
+ padding: $ddt-rtl-remains-padding;
693
+
694
+ &.e-wrap-count {
695
+ @if $ddt-skin-name == 'bootstrap5' {
696
+ padding-top: 5px;
697
+ }
698
+ @else {
699
+ padding-top: $ddt-remains-count-padding-top;
700
+ }
701
+ }
702
+ }
703
+
704
+ &.e-wrap-count {
705
+ position: absolute;
706
+ right: auto;
707
+ }
708
+ }
709
+ }
710
+
711
+ &.e-show-text {
712
+ .e-overflow {
713
+ &.e-total-count {
714
+ .e-remain {
715
+ padding: $ddt-remains-padding;
716
+ }
717
+ }
718
+ }
719
+ }
720
+
721
+ &.e-show-text {
722
+ .e-overflow {
723
+ &.e-wrap-count {
724
+ .e-remain {
725
+ @if $ddt-skin-name == 'tailwind' {
726
+ padding-right: 8px;
727
+ }
728
+ }
729
+ }
730
+ }
731
+ }
732
+
733
+ &.e-show-chip {
734
+ .e-overflow {
735
+ &.e-total-count {
736
+ .e-remain {
737
+ padding: $ddt-delim-padding;
738
+ }
739
+ }
740
+ }
741
+ }
742
+
743
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
744
+ &.e-outline {
745
+ &.e-input-group.e-control-wrapper,
746
+ &.e-float-input.e-control-wrapper {
747
+ &.e-show-dd-icon .e-clear-icon,
748
+ &.e-show-dd-icon.e-show-text .e-clear-icon,
749
+ &.e-show-dd-icon.e-show-chip .e-clear-icon {
750
+ left: 30px;
751
+ }
752
+ }
753
+ }
754
+
755
+ &.e-filled {
756
+ &.e-float-input.e-control-wrapper {
757
+ .e-overflow {
758
+ &.e-show-text {
759
+ padding: 14px 0 5px 2px;
760
+ }
761
+ }
762
+ }
763
+
764
+ &.e-float-input.e-control-wrapper.e-show-chip,
765
+ &.e-float-input.e-control-wrapper.e-show-text {
766
+ .e-ddt-icon {
767
+ left: 10px;
768
+ right: auto;
769
+ }
770
+
771
+ &.e-show-dd-icon .e-clear-icon {
772
+ left: 38px;
773
+ right: auto;
774
+ }
775
+
776
+ &:not(.e-show-dd-icon) .e-clear-icon {
777
+ left: 10px;
778
+ right: auto;
779
+ }
780
+ }
781
+
782
+ &.e-float-input.e-control-wrapper.e-show-chip {
783
+ .e-chips-wrapper,
784
+ .e-overflow {
785
+ .e-chips > .e-chipcontent {
786
+ padding: 0 0 0 4px;
787
+ }
788
+ }
789
+ }
790
+
791
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
792
+ &.e-show-chip {
793
+ .e-chips-wrapper,
794
+ .e-overflow {
795
+ .e-chips > .e-chipcontent {
796
+ padding: 0 0 0 8px;
797
+ }
798
+ }
799
+ }
800
+
801
+ &.e-show-dd-icon.e-show-text,
802
+ &.e-show-dd-icon.e-show-chip {
803
+ .e-ddt-icon {
804
+ left: 10px;
805
+ right: auto;
806
+ }
807
+ }
808
+
809
+ &.e-show-dd-icon .e-clear-icon {
810
+ left: 38px;
811
+ right: auto;
812
+ }
813
+
814
+ &:not(.e-show-dd-icon) .e-clear-icon {
815
+ left: 10px;
816
+ right: auto;
817
+ }
818
+ }
819
+ }
820
+ }
821
+
822
+ &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
823
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
824
+ margin-left: 18px;
825
+ margin-right: 4px;
826
+ }
827
+ @else {
828
+ margin-left: $ddt-dd-icon-width;
829
+ margin-right: 1px;
830
+ }
831
+ }
832
+
833
+ &.e-show-clear .e-chips-wrapper .e-chips:last-child {
834
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
835
+ margin-left: 18px;
836
+ margin-right: 4px;
837
+ }
838
+ @else {
839
+ margin-left: $ddt-close-icon-width;
840
+ margin-right: 1px;
841
+ }
842
+ }
843
+
844
+ &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
845
+ margin-left: $ddt-last-chip-right-margin;
846
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
847
+ margin-right: 4px;
848
+ }
849
+ @else {
850
+ margin-right: 1px;
851
+ }
852
+ }
853
+
854
+ &.e-input-group.e-control-wrapper,
855
+ &.e-float-input.e-control-wrapper {
856
+
857
+ &.e-show-chip,
858
+ &.e-show-text {
859
+
860
+ .e-clear-icon,
861
+ .e-ddt-icon {
862
+ left: 0;
863
+ right: auto;
864
+ }
865
+
866
+ &.e-show-dd-icon .e-clear-icon {
867
+ @if $ddt-skin-name == 'tailwind' {
868
+ left: 28px;
869
+ }
870
+ @else {
871
+ left: $ddt-dd-icon-width;
872
+ }
873
+ }
874
+ }
875
+ }
876
+
877
+ &.e-popup {
878
+
879
+ .e-treeview .e-list-item .e-ul {
880
+ padding: 0 14px 0 0;
881
+ }
882
+ }
883
+ }
884
+ }
885
+
886
+ .e-ddt-icon-hide {
887
+ display: none;
888
+ }
889
+
890
+ .e-bigger .e-ddt,
891
+ .e-ddt.e-bigger {
892
+
893
+ .e-chips {
894
+ height: $ddt-chip-bigger-height;
895
+
896
+ @if $ddt-skin-name == 'tailwind' {
897
+ padding: 3px 8px;
898
+
899
+ & > .e-chipcontent {
900
+ padding: $ddt-big-chip-content-padding;
901
+ }
902
+ }
903
+ @if $ddt-skin-name == 'FluentUI' {
904
+ font-size: $text-lg;
905
+ }
906
+ }
907
+
908
+ &.e-input-group.e-control-wrapper,
909
+ &.e-float-input.e-control-wrapper {
910
+
911
+ &.e-show-chip,
912
+ &.e-show-text {
913
+ &.e-show-dd-icon .e-clear-icon {
914
+ @if $ddt-skin-name == 'tailwind' {
915
+ bottom: 3px;
916
+ right: 32px;
917
+ }
918
+ @else if $ddt-skin-name == 'bootstrap4' {
919
+ right: 33px;
920
+ }
921
+ @else if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
922
+ bottom: auto;
923
+ right: 36px;
924
+ }
925
+ @else if $ddt-skin-name != 'Material3' {
926
+ right: $ddt-dd-icon-bigger-width;
927
+ }
928
+ }
929
+
930
+ @if $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
931
+ &.e-show-chip {
932
+ &.e-show-dd-icon .e-clear-icon {
933
+ bottom: 0;
934
+ }
935
+ }
936
+ }
937
+
938
+ .e-ddt-icon {
939
+ bottom: $ddt-dd-icon-bigger-bottom;
940
+ }
941
+ }
942
+
943
+ .e-input-group-icon.e-ddt-icon {
944
+ @if $ddt-skin-name == 'bootstrap4' {
945
+ font-size: 10px;
946
+ }
947
+ }
948
+
949
+ .e-clear-icon {
950
+ @if $ddt-skin-name == 'tailwind' {
951
+ min-width: 0;
952
+ padding: 6px;
953
+ }
954
+ @else {
955
+ min-height: $ddt-close-icon-bigger-min-height;
956
+ }
957
+ }
958
+ }
959
+
960
+ &.e-show-chip {
961
+ .e-chips-close {
962
+ @if $ddt-skin-name == 'bootstrap4' {
963
+ line-height: 27px;
964
+ min-height: 30px;
965
+ min-width: 30px;
966
+
967
+ &::before {
968
+ font-size: 10px;
969
+ }
970
+ }
971
+ @if $ddt-skin-name == 'tailwind' {
972
+ line-height: 18px;
973
+ min-height: 24px;
974
+ min-width: 24px;
975
+
976
+ &::before {
977
+ font-size: 20px;
978
+ }
979
+ }
980
+ @if $ddt-skin-name == 'bootstrap5' {
981
+ min-height: 24px;
982
+ min-width: 24px;
983
+
984
+ &::before {
985
+ font-size: 12px;
986
+ vertical-align: middle;
987
+ }
988
+ }
989
+ @if $ddt-skin-name == 'FluentUI' {
990
+ line-height: 27px;
991
+ min-height: 32px;
992
+ min-width: 32px;
993
+
994
+ &::before {
995
+ font-size: 12px;
996
+ }
997
+ }
998
+ }
999
+ }
1000
+
1001
+ .e-overflow {
1002
+
1003
+ &.e-show-text {
1004
+ padding: $ddt-delim-bigger-padding;
1005
+ @if $ddt-skin-name == 'bootstrap5' {
1006
+ line-height: 37px;
1007
+ }
1008
+ @if $ddt-skin-name == 'FluentUI' {
1009
+ line-height: 38px;
1010
+ }
1011
+ }
1012
+
1013
+ .e-remain {
1014
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' {
1015
+ font-size: $text-base;
1016
+ }
1017
+ @else if $ddt-skin-name == 'FluentUI' {
1018
+ font-size: $text-lg;
1019
+ }
1020
+ }
1021
+ }
1022
+
1023
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1024
+ &.e-outline {
1025
+ .e-overflow {
1026
+ &.e-show-text {
1027
+ padding: $ddt-outline-bigger-padding;
1028
+ }
1029
+
1030
+ &.e-total-count {
1031
+ padding: $ddt-outline-bigger-padding;
1032
+ }
1033
+ }
1034
+
1035
+ &.e-input-group.e-control-wrapper,
1036
+ &.e-float-input.e-control-wrapper {
1037
+ &.e-show-dd-icon .e-clear-icon {
1038
+ right: 36px;
1039
+ }
1040
+ }
1041
+ }
1042
+
1043
+ &.e-outline.e-show-chip {
1044
+ .e-overflow {
1045
+ padding: $ddt-bigger-outline-chip-padding;
1046
+
1047
+ &.e-total-count {
1048
+ .e-remain {
1049
+ padding-top: 10px;
1050
+ }
1051
+ }
1052
+
1053
+ .e-remain {
1054
+ &.e-wrap-count {
1055
+ padding-top: 10px;
1056
+ }
1057
+ }
1058
+ }
1059
+
1060
+ .e-chips-wrapper {
1061
+ padding: $ddt-bigger-outline-chip-padding;
1062
+ }
1063
+ }
1064
+
1065
+ &.e-filled {
1066
+ &.e-float-input.e-control-wrapper {
1067
+ .e-overflow {
1068
+ &.e-show-text {
1069
+ line-height: 30px;
1070
+ padding: 19px 12px 0 0;
1071
+ }
1072
+
1073
+ .e-remain {
1074
+ &.e-wrap-count {
1075
+ padding-top: 14px;
1076
+ }
1077
+ }
1078
+ }
1079
+ }
1080
+
1081
+ &.e-float-input.e-control-wrapper:not(.e-show-chip) {
1082
+ .e-ddt-icon,
1083
+ &.e-show-dd-icon .e-clear-icon {
1084
+ padding-top: 8px;
1085
+ }
1086
+ }
1087
+
1088
+ &.e-float-input.e-control-wrapper.e-show-chip,
1089
+ &.e-float-input.e-control-wrapper.e-show-text {
1090
+ .e-ddt-icon {
1091
+ bottom: 12px;
1092
+ right: 12px;
1093
+ }
1094
+
1095
+ .e-clear-icon {
1096
+ bottom: 11px;
1097
+ right: 44px;
1098
+ }
1099
+
1100
+ &:not(.e-show-dd-icon) .e-clear-icon {
1101
+ bottom: 14px;
1102
+ right: 12px;
1103
+ }
1104
+ }
1105
+
1106
+ .e-chips-wrapper,
1107
+ .e-overflow {
1108
+ .e-chips {
1109
+ margin-top: 8px;
1110
+ padding: 0 8px;
1111
+ }
1112
+ }
1113
+
1114
+ &.e-float-input.e-control-wrapper.e-show-chip {
1115
+ .e-chips-wrapper,
1116
+ .e-overflow {
1117
+ padding-top: 19px;
1118
+
1119
+ .e-chips {
1120
+ height: 24px;
1121
+ }
1122
+
1123
+ .e-chips > .e-chipcontent {
1124
+ font-size: 13px;
1125
+ }
1126
+
1127
+ .e-chips-close::before {
1128
+ font-size: 14px;
1129
+ height: 14px;
1130
+ width: 14px;
1131
+ }
1132
+ }
1133
+ }
1134
+
1135
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
1136
+ .e-overflow {
1137
+ &.e-show-text {
1138
+ line-height: 55px;
1139
+ }
1140
+
1141
+ .e-remain {
1142
+ &.e-wrap-count {
1143
+ line-height: 55px;
1144
+ padding-top: 0;
1145
+ }
1146
+ }
1147
+ }
1148
+
1149
+ &.e-show-chip {
1150
+ .e-chips-wrapper,
1151
+ .e-overflow {
1152
+ .e-chips {
1153
+ height: 32px;
1154
+ padding: 0 12px;
1155
+ }
1156
+
1157
+ .e-chips > .e-chipcontent {
1158
+ font-size: 14px;
1159
+ }
1160
+
1161
+ .e-chips-close::before {
1162
+ font-size: 16px;
1163
+ height: 16px;
1164
+ width: 16px;
1165
+ }
1166
+ }
1167
+ }
1168
+
1169
+ &.e-show-dd-icon.e-show-text,
1170
+ &.e-show-dd-icon.e-show-chip {
1171
+ .e-ddt-icon,
1172
+ &:not(.e-show-dd-icon) .e-clear-icon {
1173
+ bottom: 16px;
1174
+ right: 12px;
1175
+ }
1176
+ }
1177
+
1178
+ .e-clear-icon {
1179
+ bottom: 15px;
1180
+ right: 44px;
1181
+ }
1182
+ }
1183
+ }
1184
+ }
1185
+
1186
+ &.e-show-chip {
1187
+ .e-overflow {
1188
+ .e-remain {
1189
+ &.e-wrap-count {
1190
+ @if $ddt-skin-name == 'tailwind' {
1191
+ line-height: 22px;
1192
+ padding-top: 7px;
1193
+ }
1194
+ @if $ddt-skin-name == 'FluentUI' {
1195
+ line-height: 38px;
1196
+ padding-top: 0;
1197
+ }
1198
+ }
1199
+ }
1200
+
1201
+ &.e-total-count {
1202
+ .e-remain {
1203
+ @if $ddt-skin-name == 'bootstrap5' {
1204
+ line-height: 36px;
1205
+ padding: 0 12px;
1206
+ }
1207
+ @else if $ddt-skin-name == 'tailwind' {
1208
+ padding: 8px 12px;
1209
+ }
1210
+ @else if $ddt-skin-name == 'FluentUI' {
1211
+ line-height: 38px;
1212
+ padding: 0 8px;
1213
+ }
1214
+ }
1215
+ }
1216
+ }
1217
+ }
1218
+
1219
+ &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1220
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1221
+ margin-right: $ddt-dd-icon-bigger-width;
1222
+ }
1223
+ max-width: $ddt-big-chip-ddi-width;
1224
+ }
1225
+
1226
+ &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1227
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1228
+ margin-right: $ddt-close-icon-bigger-width;
1229
+ }
1230
+ max-width: $ddt-big-chip-ci-width;
1231
+ }
1232
+
1233
+ &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1234
+ margin-right: $ddt-last-chip-bigger-right-margin;
1235
+ max-width: $ddt-big-chip-ddi-ci-width;
1236
+ }
1237
+
1238
+ &.e-popup {
1239
+ @if $ddt-skin-name == 'tailwind' {
1240
+ margin-top: 8px;
1241
+ }
1242
+ @else if $ddt-skin-name == 'bootstrap5' {
1243
+ margin-top: 4px;
1244
+ }
1245
+
1246
+ .e-selectall-parent {
1247
+ text-indent: $ddt-select-all-bigger-text-indent;
1248
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1249
+ @if $ddt-skin-name == 'bootstrap5' {
1250
+ padding: 3px 12px;
1251
+ }
1252
+ @else if $ddt-skin-name == 'tailwind' {
1253
+ padding: 12px 16px;
1254
+ }
1255
+ @else {
1256
+ padding: 10px 16px;
1257
+ }
1258
+
1259
+ .e-all-text {
1260
+ font-size: $text-base;
1261
+ line-height: 24px;
1262
+ @if $ddt-skin-name == 'bootstrap5' {
1263
+ margin: 0 12px;
1264
+ }
1265
+ @else {
1266
+ margin: 0 16px;
1267
+ }
1268
+ }
1269
+ }
1270
+ }
1271
+
1272
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1273
+ .e-popup-content {
1274
+ &.e-no-data {
1275
+ @if $ddt-skin-name == 'bootstrap5' {
1276
+ padding: 9px 16px;
1277
+ }
1278
+ @else {
1279
+ padding: 10px 16px;
1280
+ }
1281
+
1282
+ .e-ddt-nodata {
1283
+ @if $ddt-skin-name == 'FluentUI' {
1284
+ font-size: $text-lg;
1285
+ }
1286
+ @else {
1287
+ font-size: $text-base;
1288
+ }
1289
+ line-height: 24px;
1290
+ }
1291
+ }
1292
+ }
1293
+
1294
+ .e-filter-wrap {
1295
+ padding: 8px;
1296
+ }
1297
+ }
1298
+
1299
+ .e-treeview .e-fullrow {
1300
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1301
+ height: $ddt-treeview-fullrow-bigger-height;
1302
+ }
1303
+ }
1304
+
1305
+ .e-treeview > .e-ul {
1306
+ @if $ddt-skin-name == 'bootstrap5' {
1307
+ padding: 8px 16px;
1308
+ }
1309
+ @if $ddt-skin-name == 'tailwind' {
1310
+ padding: 8px 0 8px 16px;
1311
+ }
1312
+ }
1313
+ }
1314
+
1315
+ &.e-rtl {
1316
+ .e-chips {
1317
+ @if $ddt-skin-name == 'tailwind' {
1318
+ & > .e-chipcontent {
1319
+ padding: $ddt-rtl-big-chip-content-padding;
1320
+ }
1321
+ }
1322
+ }
1323
+
1324
+ @if $ddt-skin-name == 'material' or $ddt-skin-name == 'material-dark' {
1325
+ &.e-outline {
1326
+ &.e-input-group.e-control-wrapper,
1327
+ &.e-float-input.e-control-wrapper {
1328
+ &.e-show-dd-icon .e-clear-icon,
1329
+ &.e-show-dd-icon.e-show-text .e-clear-icon,
1330
+ &.e-show-dd-icon.e-show-chip .e-clear-icon {
1331
+ left: 36px;
1332
+ }
1333
+ }
1334
+ }
1335
+
1336
+ &.e-filled {
1337
+ &.e-float-input.e-control-wrapper {
1338
+ .e-overflow {
1339
+ &.e-show-text {
1340
+ padding: 19px 0 0 12px;
1341
+ }
1342
+ }
1343
+ }
1344
+
1345
+ &.e-float-input.e-control-wrapper.e-show-chip,
1346
+ &.e-float-input.e-control-wrapper.e-show-text {
1347
+ .e-ddt-icon,
1348
+ &:not(.e-show-dd-icon) .e-clear-icon {
1349
+ left: 12px;
1350
+ right: auto;
1351
+ }
1352
+
1353
+ &.e-show-dd-icon .e-clear-icon {
1354
+ left: 44px;
1355
+ right: auto;
1356
+ }
1357
+ }
1358
+
1359
+ &.e-input-group.e-control-wrapper:not(.e-float-input) {
1360
+ &.e-show-dd-icon:not(.e-input-focus),
1361
+ &.e-show-dd-icon.e-show-chip {
1362
+ .e-ddt-icon,
1363
+ &:not(.e-show-dd-icon) .e-clear-icon {
1364
+ left: 12px;
1365
+ right: auto;
1366
+ }
1367
+ }
1368
+
1369
+ .e-clear-icon {
1370
+ left: 44px;
1371
+ right: auto;
1372
+ }
1373
+ }
1374
+ }
1375
+ }
1376
+
1377
+ &.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1378
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1379
+ margin-right: 4px;
1380
+ }
1381
+ @else if $ddt-skin-name != 'Material3' {
1382
+ margin-left: $ddt-dd-icon-bigger-width;
1383
+ margin-right: 1px;
1384
+ }
1385
+ }
1386
+
1387
+ &.e-show-clear .e-chips-wrapper .e-chips:last-child {
1388
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1389
+ margin-right: 4px;
1390
+ }
1391
+ @else if $ddt-skin-name != 'Material3' {
1392
+ margin-left: $ddt-close-icon-bigger-width;
1393
+ margin-right: 1px;
1394
+ }
1395
+ }
1396
+
1397
+ &.e-show-clear.e-show-dd-icon .e-chips-wrapper .e-chips:last-child {
1398
+ margin-left: $ddt-last-chip-bigger-right-margin;
1399
+ @if $ddt-skin-name == 'tailwind' or $ddt-skin-name == 'bootstrap5' or $ddt-skin-name == 'FluentUI' {
1400
+ margin-right: 4px;
1401
+ }
1402
+ @else {
1403
+ margin-right: 1px;
1404
+ }
1405
+ }
1406
+
1407
+ &.e-show-chip,
1408
+ &.e-show-text {
1409
+ &.e-input-group.e-show-dd-icon .e-clear-icon {
1410
+ @if $ddt-skin-name != 'tailwind' and $ddt-skin-name != 'bootstrap5' and $ddt-skin-name != 'Material3' {
1411
+ left: $ddt-dd-icon-bigger-width;
1412
+ }
1413
+ right: auto;
1414
+ }
1415
+ }
1416
+ }
1417
+ }
1418
+ }