@syncfusion/ej2-angular-pivotview 24.1.43-ngcc → 24.1.43

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 (198) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/index.mjs +8 -0
  3. package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
  4. package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
  5. package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
  6. package/esm2020/src/pivotview/pivotview-all.module.mjs +65 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +163 -0
  8. package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
  9. package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
  10. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +353 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +353 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +26 -12
  15. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  16. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  17. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  18. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  19. package/src/pivotview/pivotview.component.d.ts +3 -0
  20. package/src/pivotview/pivotview.module.d.ts +6 -0
  21. package/styles/bootstrap-dark.css +6550 -1
  22. package/styles/bootstrap.css +6547 -1
  23. package/styles/bootstrap4.css +6735 -1
  24. package/styles/bootstrap5-dark.css +6647 -1
  25. package/styles/bootstrap5.css +6649 -1
  26. package/styles/fabric-dark.css +6551 -1
  27. package/styles/fabric.css +6550 -1
  28. package/styles/fluent-dark.css +6644 -1
  29. package/styles/fluent.css +6646 -1
  30. package/styles/highcontrast-light.css +6549 -1
  31. package/styles/highcontrast.css +6549 -1
  32. package/styles/material-dark.css +6551 -1
  33. package/styles/material.css +6551 -1
  34. package/styles/material3-dark.css +6712 -1
  35. package/styles/material3-dark.scss +1 -0
  36. package/styles/material3.css +6768 -1
  37. package/styles/material3.scss +1 -0
  38. package/styles/pivotfieldlist/_all.scss +2 -0
  39. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +231 -0
  40. package/styles/pivotfieldlist/_bootstrap-definition.scss +213 -0
  41. package/styles/pivotfieldlist/_bootstrap4-definition.scss +213 -0
  42. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  43. package/styles/pivotfieldlist/_bootstrap5-definition.scss +217 -0
  44. package/styles/pivotfieldlist/_fabric-dark-definition.scss +219 -0
  45. package/styles/pivotfieldlist/_fabric-definition.scss +213 -0
  46. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  47. package/styles/pivotfieldlist/_fluent-definition.scss +217 -0
  48. package/styles/pivotfieldlist/_fusionnew-definition.scss +216 -0
  49. package/styles/pivotfieldlist/_highcontrast-definition.scss +214 -0
  50. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +214 -0
  51. package/styles/pivotfieldlist/_layout.scss +1963 -0
  52. package/styles/pivotfieldlist/_material-dark-definition.scss +214 -0
  53. package/styles/pivotfieldlist/_material-definition.scss +214 -0
  54. package/styles/pivotfieldlist/_material3-dark-definition.scss +1 -0
  55. package/styles/pivotfieldlist/_material3-definition.scss +224 -0
  56. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  57. package/styles/pivotfieldlist/_tailwind-definition.scss +217 -0
  58. package/styles/pivotfieldlist/_theme.scss +1994 -0
  59. package/styles/pivotfieldlist/bootstrap-dark.css +3711 -1
  60. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  61. package/styles/pivotfieldlist/bootstrap.css +3709 -1
  62. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  63. package/styles/pivotfieldlist/bootstrap4.css +3795 -1
  64. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  65. package/styles/pivotfieldlist/bootstrap5-dark.css +3777 -1
  66. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  67. package/styles/pivotfieldlist/bootstrap5.css +3777 -1
  68. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  69. package/styles/pivotfieldlist/fabric-dark.css +3711 -1
  70. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  71. package/styles/pivotfieldlist/fabric.css +3710 -1
  72. package/styles/pivotfieldlist/fabric.scss +4 -1
  73. package/styles/pivotfieldlist/fluent-dark.css +3769 -1
  74. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  75. package/styles/pivotfieldlist/fluent.css +3769 -1
  76. package/styles/pivotfieldlist/fluent.scss +4 -1
  77. package/styles/pivotfieldlist/highcontrast-light.css +3709 -1
  78. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  79. package/styles/pivotfieldlist/highcontrast.css +3709 -1
  80. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  81. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
  82. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  83. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  84. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  85. package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
  86. package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
  87. package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
  88. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  89. package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
  90. package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
  91. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
  92. package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
  93. package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
  94. package/styles/pivotfieldlist/icons/_material.scss +358 -0
  95. package/styles/pivotfieldlist/icons/_material3-dark.scss +1 -0
  96. package/styles/pivotfieldlist/icons/_material3.scss +357 -0
  97. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
  98. package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
  99. package/styles/pivotfieldlist/material-dark.css +3710 -1
  100. package/styles/pivotfieldlist/material-dark.scss +4 -1
  101. package/styles/pivotfieldlist/material.css +3709 -1
  102. package/styles/pivotfieldlist/material.scss +4 -1
  103. package/styles/pivotfieldlist/material3-dark.css +3827 -1
  104. package/styles/pivotfieldlist/material3-dark.scss +4 -1
  105. package/styles/pivotfieldlist/material3.css +3881 -1
  106. package/styles/pivotfieldlist/material3.scss +4 -1
  107. package/styles/pivotfieldlist/tailwind-dark.css +3774 -1
  108. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  109. package/styles/pivotfieldlist/tailwind.css +3775 -1
  110. package/styles/pivotfieldlist/tailwind.scss +4 -1
  111. package/styles/pivotview/_all.scss +2 -0
  112. package/styles/pivotview/_bootstrap-dark-definition.scss +176 -0
  113. package/styles/pivotview/_bootstrap-definition.scss +173 -0
  114. package/styles/pivotview/_bootstrap4-definition.scss +173 -0
  115. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  116. package/styles/pivotview/_bootstrap5-definition.scss +178 -0
  117. package/styles/pivotview/_fabric-dark-definition.scss +175 -0
  118. package/styles/pivotview/_fabric-definition.scss +172 -0
  119. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  120. package/styles/pivotview/_fluent-definition.scss +178 -0
  121. package/styles/pivotview/_fusionnew-definition.scss +178 -0
  122. package/styles/pivotview/_highcontrast-definition.scss +171 -0
  123. package/styles/pivotview/_highcontrast-light-definition.scss +172 -0
  124. package/styles/pivotview/_layout.scss +1156 -0
  125. package/styles/pivotview/_material-dark-definition.scss +179 -0
  126. package/styles/pivotview/_material-definition.scss +175 -0
  127. package/styles/pivotview/_material3-dark-definition.scss +1 -0
  128. package/styles/pivotview/_material3-definition.scss +181 -0
  129. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  130. package/styles/pivotview/_tailwind-definition.scss +178 -0
  131. package/styles/pivotview/_theme.scss +2049 -0
  132. package/styles/pivotview/bootstrap-dark.css +2838 -1
  133. package/styles/pivotview/bootstrap-dark.scss +5 -1
  134. package/styles/pivotview/bootstrap.css +2837 -1
  135. package/styles/pivotview/bootstrap.scss +5 -1
  136. package/styles/pivotview/bootstrap4.css +2939 -1
  137. package/styles/pivotview/bootstrap4.scss +5 -1
  138. package/styles/pivotview/bootstrap5-dark.css +2869 -1
  139. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  140. package/styles/pivotview/bootstrap5.css +2871 -1
  141. package/styles/pivotview/bootstrap5.scss +5 -1
  142. package/styles/pivotview/fabric-dark.css +2839 -1
  143. package/styles/pivotview/fabric-dark.scss +5 -1
  144. package/styles/pivotview/fabric.css +2839 -1
  145. package/styles/pivotview/fabric.scss +5 -1
  146. package/styles/pivotview/fluent-dark.css +2874 -1
  147. package/styles/pivotview/fluent-dark.scss +4 -1
  148. package/styles/pivotview/fluent.css +2876 -1
  149. package/styles/pivotview/fluent.scss +5 -1
  150. package/styles/pivotview/highcontrast-light.css +2839 -1
  151. package/styles/pivotview/highcontrast-light.scss +5 -1
  152. package/styles/pivotview/highcontrast.css +2839 -1
  153. package/styles/pivotview/highcontrast.scss +5 -1
  154. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  155. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  156. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  157. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  158. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  159. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  160. package/styles/pivotview/icons/_fabric.scss +184 -0
  161. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  162. package/styles/pivotview/icons/_fluent.scss +183 -0
  163. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  164. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  165. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  166. package/styles/pivotview/icons/_material-dark.scss +184 -0
  167. package/styles/pivotview/icons/_material.scss +184 -0
  168. package/styles/pivotview/icons/_material3-dark.scss +1 -0
  169. package/styles/pivotview/icons/_material3.scss +183 -0
  170. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  171. package/styles/pivotview/icons/_tailwind.scss +183 -0
  172. package/styles/pivotview/material-dark.css +2840 -1
  173. package/styles/pivotview/material-dark.scss +5 -1
  174. package/styles/pivotview/material.css +2841 -1
  175. package/styles/pivotview/material.scss +5 -1
  176. package/styles/pivotview/material3-dark.css +2939 -1
  177. package/styles/pivotview/material3-dark.scss +4 -1
  178. package/styles/pivotview/material3.css +2997 -1
  179. package/styles/pivotview/material3.scss +5 -1
  180. package/styles/pivotview/tailwind-dark.css +2886 -1
  181. package/styles/pivotview/tailwind-dark.scss +4 -1
  182. package/styles/pivotview/tailwind.css +2888 -1
  183. package/styles/pivotview/tailwind.scss +5 -1
  184. package/styles/tailwind-dark.css +6661 -1
  185. package/styles/tailwind.css +6664 -1
  186. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  187. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -439
  188. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  189. package/@syncfusion/ej2-angular-pivotview.js +0 -409
  190. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  191. package/CHANGELOG.md +0 -920
  192. package/dist/ej2-angular-pivotview.umd.js +0 -725
  193. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  194. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  195. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  196. package/ej2-angular-pivotview.d.ts +0 -6
  197. package/ej2-angular-pivotview.metadata.json +0 -1
  198. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,1994 @@
1
+ @include export-module('field-list-theme') {
2
+
3
+ /*! field-list theme */
4
+
5
+ .e-pivotfieldlist {
6
+
7
+ .e-member-editor-dialog,
8
+ .e-olap-editor-dialog {
9
+ visibility: hidden;
10
+ }
11
+
12
+ .e-select-table {
13
+ background: $field-list-toggle-bg-color;
14
+ border: .5px $field-list-border-type $field-list-toggle-border-color;
15
+ box-shadow: $field-list-toggle-shadow-color;
16
+ color: $field-list-toggle-font-color;
17
+ font-size: $field-list-toggle-icon-size;
18
+ height: $field-list-toggle-size;
19
+ max-height: $field-list-toggle-size;
20
+ max-width: $field-list-toggle-size;
21
+ min-height: $field-list-toggle-size;
22
+ min-width: $field-list-toggle-size;
23
+ padding: $field-list-toggle-padding-size;
24
+ position: relative;
25
+ width: $field-list-toggle-size;
26
+ z-index: 1000;
27
+ @if ($skin-name == 'Material3') {
28
+ border: none;
29
+ border-radius: 4px;
30
+ top: 1px;
31
+ }
32
+ @if ($theme-name == 'Material3-dark') {
33
+ /* stylelint-disable */
34
+ background: $field-list-toggle-bg-color-dark !important;
35
+ }
36
+ &.e-fieldlist-left {
37
+ @if ($skin-name == 'Material3') {
38
+ left: 2px !important;
39
+ /* stylelint-enable */
40
+ }
41
+ }
42
+
43
+ &.e-fieldlist-left {
44
+ box-shadow: $field-list-toggle-left-shadow-color;
45
+ }
46
+
47
+ &:focus,
48
+ &:active {
49
+ background-color: $field-list-toggle-hover-color;
50
+ }
51
+
52
+ &:hover {
53
+ background-color: $field-list-toggle-hover-color;
54
+ }
55
+ }
56
+ }
57
+
58
+ /* stylelint-disable */
59
+ #{if(&, "&", "*")}.e-rtl {
60
+
61
+ .e-select-table {
62
+ padding: 8px 5px;
63
+ }
64
+ }
65
+
66
+ .e-bigger .e-pivotfieldlist,
67
+ .e-bigger.e-pivotfieldlist {
68
+ .e-select-table {
69
+ font-size: $field-list-toggle-icon-bigger-size;
70
+ height: $field-list-toggle-bigger-size;
71
+ max-height: $field-list-toggle-bigger-size;
72
+ max-width: $field-list-toggle-bigger-size;
73
+ min-height: $field-list-toggle-bigger-size;
74
+ min-width: $field-list-toggle-bigger-size;
75
+ }
76
+
77
+ .e-member-editor-dialog,
78
+ .e-olap-editor-dialog {
79
+ max-height: 440px !important;
80
+ min-width: 370px !important;
81
+
82
+ .e-member-editor-container-outer-div .e-list-parent .e-ul {
83
+ height: auto;
84
+ }
85
+ }
86
+ }
87
+
88
+ .e-pivotfieldlist-container {
89
+ font-family: $field-list-font-family;
90
+ font-size: $field-list-content-font-size;
91
+ max-width: 700px;
92
+ min-width: 300px;
93
+
94
+ &.sf-pivotfieldlist-container {
95
+ .e-field-list-container .e-field-table .e-field-list {
96
+ display: block;
97
+ overflow-y: auto;
98
+
99
+ &.e-olap-field-list-tree.e-treeview {
100
+ ul:first-child {
101
+ padding-right: 0;
102
+ }
103
+
104
+ li {
105
+ &.e-no-checkbox > .e-text-content > .e-checkbox-wrapper, .e-measure-icon {
106
+ display: none;
107
+ }
108
+
109
+ &.e-rtl {
110
+ ul:first-child {
111
+ padding-left: 0;
112
+ padding-right: 10px;
113
+ }
114
+ }
115
+ }
116
+ }
117
+
118
+ li {
119
+ .e-drag {
120
+ padding: revert !important;
121
+ margin: revert !important;
122
+ width: auto !important;
123
+ height: auto !important;
124
+ }
125
+
126
+ .e-draggable {
127
+ display: contents;
128
+ }
129
+
130
+ .e-text-content {
131
+ display: flex;
132
+ align-items: center;
133
+ @if ($skin-name == 'FluentUI') {
134
+ padding-right: revert;
135
+ }
136
+ }
137
+
138
+ .e-list-text {
139
+ text-overflow: ellipsis;
140
+ overflow-x: hidden;
141
+ width: 100%;
142
+ white-space: nowrap;
143
+ }
144
+ }
145
+ }
146
+ .e-field-list-container .e-field-table .e-field-list.e-treeview:not(.e-rtl) {
147
+ .e-list-text {
148
+ padding-right: revert;
149
+ }
150
+ }
151
+
152
+ .e-field-list-container .e-field-table .e-field-list.e-treeview.e-rtl {
153
+ .e-list-text {
154
+ padding-left: revert;
155
+ }
156
+ }
157
+ .e-adaptive-field-list-dialog .e-member-editor-container {
158
+ li {
159
+ &.e-no-checkbox > .e-text-content > .e-checkbox-wrapper, .e-measure-icon {
160
+ display: none;
161
+ }
162
+ }
163
+ }
164
+ }
165
+
166
+ .e-layout-footer {
167
+ display: flex;
168
+ padding: 10px 2px 2px;
169
+
170
+ .e-button-layout {
171
+ flex: auto;
172
+ text-align: end;
173
+
174
+ .e-defer-apply-button {
175
+ margin-right: 10px;
176
+ }
177
+
178
+ .e-cancel-btn,
179
+ .e-defer-apply-button {
180
+ min-width: fit-content;
181
+ }
182
+ }
183
+
184
+ .e-cancel-btn,
185
+ .e-defer-apply-button,
186
+ .e-checkbox-layout {
187
+ max-width: 25%;
188
+ overflow: hidden;
189
+ text-overflow: ellipsis;
190
+ white-space: nowrap;
191
+ }
192
+
193
+ .e-checkbox-layout .e-label {
194
+ padding-right: 10px;
195
+ }
196
+
197
+ .e-checkbox-layout {
198
+ max-width: 45%;
199
+ overflow: visible;
200
+ }
201
+ }
202
+
203
+ .e-checkbox-layout {
204
+ float: left;
205
+ margin-top: 6px;
206
+
207
+ @if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
208
+ margin-left: 0 !important;
209
+ margin-right: 0 !important;
210
+ }
211
+ }
212
+
213
+ &.e-rtl {
214
+ .e-layout-footer {
215
+ .e-defer-apply-button {
216
+ margin-left: 10px;
217
+ }
218
+ }
219
+
220
+ .e-checkbox-layout {
221
+ float: right;
222
+ }
223
+ }
224
+
225
+ &.e-dialog {
226
+ max-height: 550px !important;
227
+
228
+ .e-layout-footer {
229
+ padding: 0;
230
+ }
231
+
232
+ .e-checkbox-layout {
233
+ margin-left: 10px;
234
+ }
235
+
236
+ .e-button-layout {
237
+ margin-right: 10px;
238
+ }
239
+
240
+ .e-dlg-content ul li .e-text-content .e-checkbox-wrapper {
241
+ @if ($skin-name == 'Material3') {
242
+ margin: 0 !important;
243
+ /* stylelint-enable */
244
+ }
245
+
246
+ .e-ripple-container {
247
+ @if ($skin-name == 'Material3') {
248
+ background: transparent;
249
+ }
250
+ }
251
+ }
252
+ }
253
+
254
+ .e-dlg-header-content,
255
+ .e-footer-content {
256
+ border: 0;
257
+ }
258
+
259
+ .e-dlg-header-content {
260
+ @if ($skin-name == 'bootstrap5') {
261
+ border-bottom: 1px solid $field-list-border;
262
+ }
263
+ }
264
+
265
+ .e-footer-content {
266
+ @if ($skin-name == 'bootstrap5') {
267
+ border-top: 1px solid $field-list-border;
268
+ }
269
+ }
270
+
271
+ .e-field-list-title {
272
+ display: flex;
273
+ font-size: $field-list-title-font-size;
274
+ min-height: 25px;
275
+ padding: 0 2px $field-list-title-padding-size;
276
+ width: 100%;
277
+
278
+ .e-title-content {
279
+ flex: auto;
280
+ }
281
+ }
282
+
283
+ .e-title-header {
284
+ display: flex;
285
+ padding: 2px;
286
+ width: 100%;
287
+
288
+ .e-title-content {
289
+ flex: auto;
290
+ @if ($skin-name == 'Material3') {
291
+ font-size: 22px;
292
+ font-weight: $field-list-button-font-weight;
293
+ }
294
+ }
295
+ }
296
+
297
+ .e-field-list-container {
298
+ display: flex;
299
+ height: 342px;
300
+ padding: 1px;
301
+ position: relative;
302
+
303
+ .e-field-table {
304
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
305
+ border-radius: $field-list-default-border-radius;
306
+ display: inline-block;
307
+ overflow: hidden;
308
+ width: 30%;
309
+
310
+ .e-field-list-tree {
311
+ .e-sibling {
312
+ display: none;
313
+ }
314
+ }
315
+
316
+ .e-field-header,
317
+ .e-field-list {
318
+ width: 100%;
319
+ }
320
+
321
+ .e-field-header {
322
+ background: $field-list-header-background-color;
323
+ color: $field-list-default-header-font-color;
324
+ font-size: $field-list-header-font-size;
325
+ font-weight: $field-list-table-header-font-weight;
326
+ overflow: hidden;
327
+ padding: $field-list-table-header-padding;
328
+ text-align: left;
329
+ text-overflow: ellipsis;
330
+ white-space: nowrap;
331
+ word-break: break-all;
332
+ @if ($field-list-skin == 'tailwind') {
333
+ text-transform: uppercase;
334
+ }
335
+ }
336
+
337
+ .e-field-header-container {
338
+ align-items: center;
339
+ background: $field-list-header-background-color;
340
+ color: $field-list-default-header-font-color;
341
+ display: flex;
342
+ height: $field-list-header-height;
343
+ padding-right: $field-list-header-padding;
344
+
345
+ .e-field-header {
346
+ flex: auto;
347
+ }
348
+
349
+ .e-sort-none,
350
+ .e-sort-ascend,
351
+ .e-sort-descend {
352
+ color: $field-list-default-header-icon-font-color;
353
+ cursor: pointer;
354
+ font-size: $field-list-header-icon-size;
355
+ padding: 0 0 0 $field-list-icon-to-icon-padding;
356
+ width: 20px;
357
+
358
+ &.e-selected::before {
359
+ color: $field-list-active-color;
360
+ }
361
+
362
+ &:hover {
363
+ font-weight: bold;
364
+ }
365
+
366
+ &:focus {
367
+ font-weight: bold;
368
+ }
369
+ }
370
+
371
+ /* stylelint-disable */
372
+ @if ($skin-name == 'FluentUI') {
373
+ .e-sort-none {
374
+ padding-right: 2px !important;
375
+ transform: rotate(90deg);
376
+ }
377
+ }
378
+ /* stylelint-enable */
379
+ }
380
+
381
+ .e-field-list-tree-outer-div {
382
+ display: inline-block;
383
+ height: $field-list-tree-outer-div-height;
384
+ overflow: auto;
385
+ width: 100%;
386
+ }
387
+
388
+ .e-field-list {
389
+ display: inline-table;
390
+ height: 100%;
391
+ padding-left: 2px;
392
+ width: 100%;
393
+
394
+ &:not(.e-olap-field-list-tree) {
395
+ ul {
396
+ padding-left: $field-list-treeview-ul-padding;
397
+
398
+ li.e-pivot-parent{
399
+ @if ($skin-name == 'bootstrap5') {
400
+ padding-left: 10px;
401
+ }
402
+
403
+ @if ($skin-name == 'FluentUI') {
404
+ padding-left: 9px;
405
+ }
406
+ }
407
+
408
+ li:not(.e-pivot-parent):not(.e-pivot-child) {
409
+ .e-text-content {
410
+ padding-left: $field-list-treeview-li-padding;
411
+ }
412
+ }
413
+ }
414
+ }
415
+
416
+ ul {
417
+ overflow: hidden;
418
+
419
+ li {
420
+ .e-fullrow {
421
+ cursor: default;
422
+ }
423
+
424
+ .e-drag {
425
+ color: $field-list-drag-icon-color;
426
+ cursor: move;
427
+ display: inline-block;
428
+ font-size: $field-list-icon-size;
429
+ height: 20px;
430
+ margin-bottom: $field-list-treeview-drag-margin;
431
+ margin-right: 6px;
432
+ pointer-events: all;
433
+ text-align: center;
434
+ vertical-align: bottom;
435
+ width: 20px;
436
+
437
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
438
+ margin-right: 4px;
439
+ padding-left: 8px;
440
+ }
441
+
442
+ @if ($skin-name == 'tailwind') {
443
+ margin-bottom: 0;
444
+ vertical-align: middle;
445
+ }
446
+
447
+ &.e-disable-drag {
448
+ cursor: not-allowed;
449
+ opacity: .4;
450
+ visibility: hidden;
451
+ }
452
+ }
453
+
454
+ .e-list-icon {
455
+ color: $field-list-tree-icon-color;
456
+ margin: 0;
457
+ }
458
+
459
+ /* stylelint-disable */
460
+ .e-calc-measure-icon,
461
+ .e-calc-dimension-icon,
462
+ .e-attributeCDB-icon,
463
+ .e-hierarchyCDB-icon,
464
+ .e-level-members,
465
+ .e-namedSetCDB-icon,
466
+ .e-measure-icon,
467
+ .e-kpiGoal-icon,
468
+ .e-kpiStatus-icon,
469
+ .e-kpiTrend-icon,
470
+ .e-kpiValue-icon {
471
+ margin-left: 10px;
472
+ }
473
+
474
+ /* stylelint-enable */
475
+
476
+ .e-list-selected {
477
+ opacity: .5;
478
+ }
479
+
480
+ .e-selected-node {
481
+ font-weight: $field-list-treeview-font-weight;
482
+ }
483
+
484
+ .e-list-text {
485
+ font-family: $field-list-font-family;
486
+ }
487
+ }
488
+
489
+ /* stylelint-disable */
490
+ li.e-disable {
491
+ display: none !important;
492
+ }
493
+ /* stylelint-enable */
494
+ }
495
+
496
+ &.e-olap-field-list-tree {
497
+ ul {
498
+ .e-list-icon {
499
+ font-size: $field-list-icon-size;
500
+ height: auto;
501
+ width: auto;
502
+ }
503
+ }
504
+
505
+ &.e-treeview ul:first-child {
506
+ padding-left: 10px;
507
+ padding-right: 10px;
508
+ }
509
+
510
+ &.e-rtl {
511
+ ul {
512
+ .e-list-icon {
513
+ transform: rotateX(0deg) rotateY(180deg);
514
+ }
515
+ }
516
+ }
517
+ }
518
+ }
519
+
520
+ &.e-olap-field-table {
521
+ width: 40%;
522
+ }
523
+ }
524
+
525
+ .e-axis-table {
526
+ display: flex;
527
+ overflow: hidden;
528
+ width: 70%;
529
+
530
+ .e-left-axis-fields,
531
+ .e-right-axis-fields {
532
+ padding-left: $field-list-default-padding-size;
533
+ width: 50%;
534
+ }
535
+
536
+ .e-left-axis-fields .e-field-list-filters,
537
+ .e-left-axis-fields .e-field-list-rows,
538
+ .e-right-axis-fields .e-field-list-columns,
539
+ .e-right-axis-fields .e-field-list-values {
540
+ background-color: $field-list-table-background-color;
541
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
542
+ border-radius: $field-list-default-border-radius;
543
+ fill: $field-list-default-fill-color;
544
+ font-weight: normal;
545
+ min-height: 165px;
546
+ position: relative;
547
+ width: 100%;
548
+
549
+ .e-axis-container {
550
+ align-items: center;
551
+ background: $field-list-header-background-color;
552
+ border-bottom: $field-list-border-size $field-list-border-type $field-list-default-border-color;
553
+ color: $field-list-default-header-font-color;
554
+ display: flex;
555
+ height: $field-list-header-height;
556
+ padding: 0 $field-list-header-padding 0;
557
+
558
+ @if ($skin-name == 'Material3') {
559
+ border-bottom: none;
560
+ }
561
+
562
+ .e-axis-icon-container {
563
+ display: flex;
564
+ height: $field-list-header-icon-size;
565
+ width: 20px;
566
+
567
+ .e-axis-rows,
568
+ .e-axis-columns,
569
+ .e-axis-values,
570
+ .e-axis-filters {
571
+ color: $field-list-default-header-icon-font-color;
572
+ font-size: $field-list-header-icon-size;
573
+ }
574
+ }
575
+ }
576
+
577
+ .e-axis-header {
578
+ flex: auto;
579
+ font-size: $field-list-header-font-size;
580
+ line-height: $field-list-header-content-line-height;
581
+ overflow: hidden;
582
+ padding: 0 8px;
583
+ text-overflow: ellipsis;
584
+ text-transform: $field-list-text-transform;
585
+ white-space: nowrap;
586
+ width: 100%;
587
+ @if ($skin-name == 'Material3') {
588
+ font-weight: $field-list-table-header-font-weight;
589
+ }
590
+ }
591
+
592
+ .e-axis-content {
593
+ cursor: default;
594
+ width: 100%;
595
+
596
+ &.e-drag-restrict {
597
+ cursor: no-drop;
598
+ }
599
+
600
+ .e-pvt-btn-div {
601
+
602
+ .e-drop-indicator-last,
603
+ .e-drop-indicator {
604
+ display: block;
605
+ pointer-events: none;
606
+ width: 100%;
607
+
608
+ &.e-drop-hover {
609
+ border-top: 2px dashed $field-list-drop-hover-color;
610
+ margin-top: -2px;
611
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
612
+ border-top: 2px solid $field-list-drop-hover-color;
613
+ }
614
+ }
615
+ }
616
+
617
+ &.e-first-btn {
618
+ .e-drop-indicator {
619
+ &.e-drop-hover {
620
+ position: absolute;
621
+ }
622
+ }
623
+ }
624
+
625
+ .e-pivot-button {
626
+ background: $field-list-button-color;
627
+ border-bottom: $field-list-border-size $field-list-border-type $field-list-button-border-color;
628
+ border-left: 0;
629
+ border-radius: 0;
630
+ border-right: 0;
631
+ border-top: 0;
632
+ box-shadow: none;
633
+ cursor: default;
634
+ display: flex;
635
+ font-weight: normal;
636
+ height: $field-list-button-height;
637
+ line-height: 1em;
638
+ padding: $field-list-button-padding;
639
+ text-transform: none;
640
+ width: 100%;
641
+
642
+ @if ($field-list-skin == 'bootstrap4') {
643
+ color: $field-list-button-font-color;
644
+ }
645
+
646
+ @if ($skin-name == 'bootstrap5') {
647
+ color: $field-list-button-font-color;
648
+ }
649
+
650
+ &.e-list-selected {
651
+ color: $field-list-button-font-color;
652
+ opacity: .5;
653
+ }
654
+
655
+ &:hover {
656
+ background-color: $field-list-button-hover-color;
657
+
658
+ .e-pvt-btn-content {
659
+ background-color: transparent;
660
+ }
661
+ }
662
+
663
+ &:focus,
664
+ &:active {
665
+ background-color: $field-list-button-focus-color;
666
+ color: $field-list-button-active-color;
667
+
668
+ .e-pvt-btn-content {
669
+ background-color: transparent;
670
+ }
671
+
672
+ .e-sort,
673
+ .e-pv-filter,
674
+ .e-pv-filtered,
675
+ .e-dropdown-icon,
676
+ .e-edit {
677
+ color: $field-list-button-active-color;
678
+ }
679
+
680
+ .e-drag {
681
+ @if ($skin-name == 'tailwind') {
682
+ color: $field-list-button-active-color;
683
+ }
684
+ }
685
+ }
686
+
687
+ .e-pvt-btn-content {
688
+ background: transparent;
689
+ flex: auto;
690
+ font-size: $field-list-button-font-size;
691
+ height: 16px;
692
+ line-height: 1em;
693
+ overflow: hidden;
694
+ padding: 0 8px;
695
+ text-align: left;
696
+ text-overflow: ellipsis;
697
+ width: 70%;
698
+ @if ($skin-name == 'tailwind') {
699
+ line-height: 1.2em;
700
+ }
701
+ }
702
+
703
+ .e-draggable {
704
+ height: 20px;
705
+ width: 20px;
706
+ }
707
+
708
+ .e-drag {
709
+ color: $field-list-drag-icon-color;
710
+ cursor: move;
711
+ font-size: $field-list-icon-size;
712
+ height: 20px;
713
+ width: 20px;
714
+
715
+ &.e-disable-drag {
716
+ cursor: not-allowed;
717
+ opacity: .4;
718
+ visibility: hidden;
719
+ }
720
+ }
721
+
722
+ .e-sort,
723
+ .e-pv-filter,
724
+ .e-pv-filtered,
725
+ .e-dropdown-icon,
726
+ .e-edit {
727
+ color: $field-list-button-icon-color;
728
+ cursor: pointer;
729
+ display: inline-block;
730
+ font-size: $field-list-icon-size;
731
+ height: 20px;
732
+ padding-left: $field-list-icon-to-icon-padding;
733
+ width: 20px;
734
+
735
+ &:hover {
736
+ color: $field-list-icon-hover-color;
737
+ }
738
+
739
+ &.e-disable {
740
+ display: none;
741
+ }
742
+ }
743
+
744
+ .e-sort {
745
+ height: $field-list-icon-size;
746
+ }
747
+
748
+ .e-remove {
749
+ display: none;
750
+ }
751
+
752
+ &.e-rtl {
753
+ .e-pvt-btn-content {
754
+ text-align: right;
755
+ }
756
+
757
+ .e-sort,
758
+ .e-pv-filter,
759
+ .e-pv-filtered,
760
+ .e-remove,
761
+ .e-dropdown-icon,
762
+ .e-edit {
763
+ padding-left: 0;
764
+ padding-right: $field-list-icon-to-icon-padding;
765
+ }
766
+ }
767
+ }
768
+ }
769
+ }
770
+
771
+ .e-sort {
772
+ height: fit-content;
773
+ transform: rotateX(0deg);
774
+ transition: transform 200ms ease-in-out;
775
+
776
+ &.e-descend {
777
+ transform: rotateX(180deg);
778
+ }
779
+ }
780
+
781
+ .e-axis-content {
782
+ height: $field-list-axis-content-height;
783
+ overflow: auto;
784
+ scroll-behavior: smooth;
785
+ }
786
+
787
+ .e-draggable-prompt {
788
+ bottom: 32%;
789
+ color: $field-list-default-prompt-color;
790
+ font-size: $field-list-content-font-size;
791
+ height: 25px;
792
+ pointer-events: none;
793
+ position: absolute;
794
+ text-align: center;
795
+ width: 100%;
796
+
797
+ &.e-disable {
798
+ display: none;
799
+ }
800
+ }
801
+ }
802
+
803
+ .e-left-axis-fields .e-field-list-rows,
804
+ .e-right-axis-fields .e-field-list-values {
805
+ margin-top: $field-list-default-padding-size;
806
+ }
807
+
808
+ &.e-olap-axis-table {
809
+ width: 60%;
810
+ }
811
+ }
812
+ }
813
+
814
+ &.e-search-mode {
815
+ &.e-static {
816
+ max-height: 750px;
817
+
818
+ .e-field-list-container .e-field-table {
819
+ height: $field-list-search-static-field-table-height;
820
+ }
821
+ }
822
+
823
+ &.e-popup {
824
+ min-height: $field-list-search-popup-min-height;
825
+
826
+ .e-field-list-container {
827
+ height: 369px;
828
+
829
+ /* stylelint-disable */
830
+ .e-field-table {
831
+ height: $field-list-search-popup-table-height !important;
832
+
833
+ .e-field-list-tree-outer-div {
834
+ @if ($skin-name == 'Material3') {
835
+ height: $field-list-search-popup-table-outer-div-height !important;
836
+ }
837
+ }
838
+ }
839
+
840
+ .e-axis-table {
841
+ height: 392px;
842
+
843
+ .e-axis-content {
844
+ height: $field-list-search-popup-axis-content-height !important;
845
+ }
846
+ }
847
+ /* stylelint-enable */
848
+ }
849
+ }
850
+
851
+ .e-member-prompt {
852
+ color: $field-list-drag-icon-color;
853
+ padding: $field-list-member-prompt-padding-size;
854
+ text-align: center;
855
+ width: 100%;
856
+
857
+ &.e-disable {
858
+ display: none;
859
+ }
860
+ }
861
+
862
+ .e-field-table {
863
+ .e-field-list-search {
864
+ display: flex;
865
+ padding: $field-list-search-padding-size;
866
+
867
+ .e-field-list-search-input .e-field-list-search-icon {
868
+ float: right;
869
+ font-size: $field-list-header-icon-size;
870
+ }
871
+
872
+ /* stylelint-disable */
873
+ .e-input-group .e-input-group-icon,
874
+ .e-input-group.e-control-wrapper .e-input-group-icon {
875
+ border-width: 0 !important;
876
+ cursor: text !important;
877
+ }
878
+
879
+ .e-input-group-icon:hover {
880
+ background-color: transparent !important;
881
+ border: transparent !important;
882
+ color: currentColor !important;
883
+ }
884
+ }
885
+
886
+ .e-field-list-tree-outer-div .e-disable,
887
+ .e-disable {
888
+ display: none !important;
889
+ }
890
+ }
891
+ }
892
+
893
+ .e-calculated-field {
894
+ color: $field-list-cal-button-text-color;
895
+ font-size: $field-list-button-font-size;
896
+ font-weight: $field-list-button-font-weight;
897
+ max-width: 160px;
898
+ min-width: 145px;
899
+ @if ($skin-name == 'Material3') {
900
+ border: $field-list-calculated-field-border;
901
+ box-shadow: none;
902
+ }
903
+
904
+ &.e-disable {
905
+ display: none;
906
+ }
907
+ }
908
+
909
+ /* stylelint-enable */
910
+
911
+ &.e-rtl {
912
+ .e-field-table {
913
+ .e-field-list {
914
+ padding-left: 0;
915
+ padding-right: 2px;
916
+
917
+ &:not(.e-olap-field-list-tree) {
918
+ ul {
919
+ padding-right: $field-list-treeview-ul-padding;
920
+
921
+ li.e-pivot-parent{
922
+ @if ($skin-name == 'bootstrap5') {
923
+ padding-right: 5px;
924
+ }
925
+
926
+ @if ($skin-name == 'FluentUI') {
927
+ padding-right: 9px;
928
+ }
929
+ }
930
+
931
+ li:not(.e-pivot-parent):not(.e-pivot-child) {
932
+ .e-text-content {
933
+ padding-right: $field-list-treeview-li-padding;
934
+ }
935
+ }
936
+ }
937
+ }
938
+
939
+ ul li {
940
+ /* stylelint-disable */
941
+ .e-list-text {
942
+ font-family: $field-list-font-family;
943
+ }
944
+
945
+ .e-drag {
946
+ margin-left: 6px !important;
947
+ margin-right: 0 !important;
948
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
949
+ padding-right: 8px;
950
+ }
951
+ }
952
+
953
+ .e-calc-measure-icon,
954
+ .e-calc-dimension-icon,
955
+ .e-attributeCDB-icon,
956
+ .e-hierarchyCDB-icon,
957
+ .e-level-members,
958
+ .e-namedSetCDB-icon,
959
+ .e-measure-icon,
960
+ .e-kpiGoal-icon,
961
+ .e-kpiStatus-icon,
962
+ .e-kpiTrend-icon,
963
+ .e-kpiValue-icon {
964
+ margin-left: 0;
965
+ margin-right: 10px;
966
+ }
967
+
968
+ /* stylelint-enable */
969
+ }
970
+ }
971
+
972
+ .e-field-header {
973
+ padding-left: 0;
974
+ padding-right: $field-list-header-padding;
975
+ text-align: right;
976
+
977
+ @if ($field-list-skin == 'bootstrap4') {
978
+ padding-right: 12px;
979
+ }
980
+ }
981
+
982
+ .e-field-header-container {
983
+ padding-left: $field-list-header-padding;
984
+ padding-right: 0;
985
+
986
+ .e-sort-none,
987
+ .e-sort-ascend,
988
+ .e-sort-descend {
989
+ padding: 0 $field-list-icon-to-icon-padding 0 0;
990
+ }
991
+ }
992
+ }
993
+
994
+ .e-axis-table {
995
+
996
+ .e-left-axis-fields,
997
+ .e-right-axis-fields {
998
+ padding-left: 0;
999
+ padding-right: $field-list-default-padding-size;
1000
+ }
1001
+
1002
+ .e-left-axis-fields .e-field-list-filters,
1003
+ .e-left-axis-fields .e-field-list-rows,
1004
+ .e-right-axis-fields .e-field-list-columns,
1005
+ .e-right-axis-fields .e-field-list-values {
1006
+ .e-axis-header {
1007
+ float: right;
1008
+ }
1009
+ }
1010
+ }
1011
+ }
1012
+
1013
+ &.e-static {
1014
+ background-color: $field-list-default-bg-color;
1015
+ border: $field-list-border-size $field-list-border-type $field-list-default-border-color;
1016
+ max-height: 700px;
1017
+ padding: $field-list-static-padding-size;
1018
+ position: relative;
1019
+
1020
+ .e-title-content {
1021
+ color: $field-list-default-font-color;
1022
+ }
1023
+
1024
+ .e-field-list-container {
1025
+ display: inline-block;
1026
+ height: 100%;
1027
+ width: 100%;
1028
+
1029
+ .e-field-table {
1030
+ height: $field-list-static-field-table-height;
1031
+ width: 100%;
1032
+
1033
+ .e-field-list-tree-outer-div {
1034
+ height: $field-list-static-field-table-outer-div-height;
1035
+ }
1036
+ }
1037
+
1038
+ .e-center-div {
1039
+ display: none;
1040
+ }
1041
+
1042
+ .e-center-title {
1043
+ color: $field-list-default-header-font-color;
1044
+ font-size: $field-list-header-font-size;
1045
+ height: 25px;
1046
+ margin-top: 5px;
1047
+ overflow: hidden;
1048
+ text-align: left;
1049
+ text-overflow: ellipsis;
1050
+ }
1051
+
1052
+ .e-axis-table {
1053
+ width: 100%;
1054
+
1055
+ .e-left-axis-fields {
1056
+ padding: 0;
1057
+ }
1058
+
1059
+ .e-right-axis-fields {
1060
+ padding-left: $field-list-default-padding-size;
1061
+ }
1062
+
1063
+ .e-left-axis-fields .e-field-list-rows,
1064
+ .e-right-axis-fields .e-field-list-values {
1065
+ margin-top: $field-list-default-padding-size;
1066
+ }
1067
+ }
1068
+ }
1069
+
1070
+ &.e-rtl {
1071
+ .e-center-title {
1072
+ text-align: right;
1073
+ }
1074
+
1075
+ .e-axis-table {
1076
+ .e-left-axis-fields {
1077
+ padding-left: $field-list-static-padding-size;
1078
+ }
1079
+
1080
+ .e-right-axis-fields {
1081
+ padding: 0;
1082
+ }
1083
+ }
1084
+ }
1085
+
1086
+ .e-layout-footer {
1087
+ .e-checkbox-layout {
1088
+ align-items: center;
1089
+ display: flex;
1090
+ margin-top: 0;
1091
+ overflow: hidden;
1092
+ width: 100%;
1093
+
1094
+ .e-checkbox-wrapper {
1095
+ width: 100%;
1096
+
1097
+ label {
1098
+ width: 100%;
1099
+
1100
+ .e-label {
1101
+ overflow: hidden;
1102
+ /* stylelint-disable */
1103
+ text-overflow: ellipsis !important;
1104
+ /* stylelint-enable */
1105
+ white-space: unset;
1106
+ width: calc(100% - 20px);
1107
+ }
1108
+ }
1109
+ }
1110
+ }
1111
+
1112
+ .e-button-layout {
1113
+ display: flex;
1114
+ justify-content: flex-end;
1115
+ }
1116
+ }
1117
+ }
1118
+
1119
+ &.e-device {
1120
+ height: 100%;
1121
+ /* stylelint-disable */
1122
+ max-height: 100% !important;
1123
+ max-width: 100% !important;
1124
+ /* stylelint-enable */
1125
+ min-height: 500px;
1126
+ width: 100%;
1127
+
1128
+ .e-dlg-header-content {
1129
+ background-color: $field-list-mobile-header-color;
1130
+ color: $field-list-mobile-header-font-color;
1131
+ font-size: 14px;
1132
+
1133
+ @if ($skin-name == 'tailwind') {
1134
+ padding-left: 16px;
1135
+ padding-right: 16px;
1136
+ }
1137
+ }
1138
+
1139
+ .e-adaptive-field-list-dialog,
1140
+ .e-member-editor-dialog,
1141
+ .e-value-field-settings {
1142
+ .e-dlg-header-content {
1143
+ background-color: transparent;
1144
+ color: $field-list-mobile-header-font-color;
1145
+ }
1146
+
1147
+ .e-dlg-content .e-field-list-tree-outer-div {
1148
+ height: 210px;
1149
+ overflow: auto;
1150
+ }
1151
+ }
1152
+
1153
+ .e-title-mobile-header {
1154
+ display: flex;
1155
+ align-items: center;
1156
+ }
1157
+
1158
+ .e-field-list-back-icon {
1159
+ color: $field-list-back-font-color;
1160
+ font-size: 16px;
1161
+ height: auto;
1162
+ margin-left: 0;
1163
+ margin-right: 12px;
1164
+ text-align: center;
1165
+ width: 24px;
1166
+ }
1167
+
1168
+ .e-disable {
1169
+ display: none;
1170
+ }
1171
+
1172
+ .e-adaptive-container {
1173
+ height: 100%;
1174
+ position: relative;
1175
+
1176
+ .e-tab-header {
1177
+ background: $field-list-header-background-color;
1178
+ }
1179
+
1180
+ .e-content {
1181
+ display: initial;
1182
+
1183
+ .e-field-list-filters,
1184
+ .e-field-list-rows,
1185
+ .e-field-list-columns,
1186
+ .e-field-list-values {
1187
+ display: inline-block;
1188
+ height: 100%;
1189
+ min-height: 250px;
1190
+ padding-top: $field-list-adaptive-content-padding-size;
1191
+ position: relative;
1192
+ width: 100%;
1193
+
1194
+ .e-axis-content {
1195
+ overflow: auto;
1196
+ }
1197
+
1198
+ .e-pvt-btn-div {
1199
+ display: grid;
1200
+
1201
+ .e-drop-indicator {
1202
+ display: none;
1203
+ }
1204
+
1205
+ .e-pivot-button {
1206
+ align-items: center;
1207
+ border: $field-list-border-size $field-list-border-type $field-list-button-border-color;
1208
+ border-left: 0;
1209
+ border-radius: 0;
1210
+ border-right: 0;
1211
+ border-top: 0;
1212
+ border-width: 1px 0;
1213
+ box-shadow: none;
1214
+ display: flex;
1215
+ font-size: $field-list-bigger-button-font-size;
1216
+ font-weight: normal;
1217
+ height: $field-list-adaptive-pivot-button-height;
1218
+ line-height: normal;
1219
+ padding: $field-list-adaptive-pivot-button-padding;
1220
+ text-transform: none;
1221
+ width: 100%;
1222
+
1223
+ @if ($skin-name == 'bootstrap5') {
1224
+ background-color: $field-list-default-bg-color;
1225
+ color: $field-list-default-font-color;
1226
+ }
1227
+
1228
+ &.e-list-selected {
1229
+ opacity: .5;
1230
+ }
1231
+
1232
+ .e-pvt-btn-content {
1233
+ flex: auto;
1234
+ font-size: $field-list-bigger-button-font-size;
1235
+ overflow: hidden;
1236
+ text-align: left;
1237
+ text-overflow: ellipsis;
1238
+ width: 70%;
1239
+ }
1240
+
1241
+ .e-drag {
1242
+ display: none;
1243
+ }
1244
+
1245
+ /* stylelint-disable */
1246
+ .e-sort,
1247
+ .e-pv-filter,
1248
+ .e-pv-filtered,
1249
+ .e-remove,
1250
+ .e-dropdown-icon,
1251
+ .e-edit {
1252
+ color: $field-list-button-icon-color;
1253
+ cursor: pointer;
1254
+ display: inline-block;
1255
+ font-size: $field-list-bigger-icon-size;
1256
+ padding-left: 10px;
1257
+ width: 24px;
1258
+ font-size: 14px !important;
1259
+
1260
+ @if ($field-list-skin == 'bootstrap4') {
1261
+ color: $white;
1262
+ }
1263
+
1264
+ @if ($skin-name == 'bootstrap5') {
1265
+ color: $field-list-button-icon-color;
1266
+ padding-left: 8px;
1267
+ }
1268
+
1269
+ &:hover {
1270
+ color: $field-list-icon-hover-color;
1271
+ }
1272
+
1273
+ &.e-disable {
1274
+ display: none;
1275
+ }
1276
+ }
1277
+
1278
+ /* stylelint-enable */
1279
+
1280
+ .e-sort {
1281
+ height: fit-content;
1282
+ transform: rotateX(0deg);
1283
+ transition: transform 200ms ease-in-out;
1284
+
1285
+ &.e-descend {
1286
+ transform: rotateX(180deg);
1287
+ }
1288
+ }
1289
+
1290
+ .e-remove {
1291
+ display: inline-block;
1292
+ }
1293
+
1294
+ &.e-rtl {
1295
+ .e-pvt-btn-content {
1296
+ text-align: right;
1297
+ }
1298
+
1299
+ .e-sort,
1300
+ .e-pv-filter,
1301
+ .e-pv-filtered,
1302
+ .e-remove,
1303
+ .e-dropdown-icon,
1304
+ .e-edit {
1305
+ padding-left: 0;
1306
+ padding-right: 10px;
1307
+
1308
+ @if ($skin-name == 'tailwind') {
1309
+ margin-right: 8px;
1310
+ padding-right: 0;
1311
+ }
1312
+ @if ($skin-name == 'bootstrap5') {
1313
+ padding-right: 8px;
1314
+ }
1315
+ }
1316
+ }
1317
+ }
1318
+ }
1319
+
1320
+ .e-axis-content {
1321
+ height: 100%;
1322
+ width: 100%;
1323
+ }
1324
+
1325
+ .e-draggable-prompt {
1326
+ border: 1px dashed $field-list-header-background-color;
1327
+ color: $field-list-header-background-color;
1328
+ font-size: $field-list-drag-clone-font-size;
1329
+ height: $field-list-adaptive-drag-prompt-height;
1330
+ left: 15%;
1331
+ line-height: $field-list-adaptive-drag-prompt-height;
1332
+ pointer-events: none;
1333
+ position: absolute;
1334
+ text-align: center;
1335
+ top: 25%;
1336
+ vertical-align: middle;
1337
+ width: 70%;
1338
+
1339
+ @if ($skin-name == 'bootstrap5') {
1340
+ color: $field-list-default-font-color;
1341
+ }
1342
+ }
1343
+ }
1344
+
1345
+ .e-pivot-calc-outer-div {
1346
+ .e-pivot-formula {
1347
+ background-color: $pivot-formula-background;
1348
+ border: 1px solid $pivot-formula-border;
1349
+ border-radius: $field-list-default-border-radius;
1350
+ color: $field-list-default-font-color;
1351
+ height: 200px;
1352
+ margin-left: 20px;
1353
+ margin-right: 20px;
1354
+ margin-top: 25px;
1355
+ padding: 2px 3px;
1356
+ resize: none;
1357
+ width: 90%;
1358
+ }
1359
+
1360
+ /* stylelint-disable */
1361
+ .e-pivot-calc-input-div,
1362
+ .e-member-options,
1363
+ .e-pivot-calc-custom-format-div {
1364
+ margin-left: 20px;
1365
+ margin-right: 20px;
1366
+ margin-top: 20px;
1367
+ width: 90% !important;
1368
+ }
1369
+
1370
+ /* stylelint-enable */
1371
+
1372
+ .e-accordion {
1373
+ margin-top: 20px;
1374
+ overflow: auto;
1375
+
1376
+ .e-acrdn-header {
1377
+ align-items: center;
1378
+ display: flex;
1379
+
1380
+ .e-acrdn-header-icon {
1381
+ display: table;
1382
+ font-size: 12px;
1383
+ min-width: 28px;
1384
+ padding: 0;
1385
+ position: absolute;
1386
+ right: 16px;
1387
+
1388
+ .e-list-icon {
1389
+ cursor: pointer;
1390
+ display: table-cell;
1391
+ padding-right: 6px;
1392
+ text-align: center;
1393
+ vertical-align: middle;
1394
+ }
1395
+ }
1396
+ }
1397
+
1398
+ .e-icons.e-frame {
1399
+ margin-right: 12px;
1400
+ }
1401
+
1402
+ &.e-rtl {
1403
+ .e-acrdn-header-icon {
1404
+ left: 16px;
1405
+ right: auto;
1406
+ }
1407
+
1408
+ /* stylelint-disable */
1409
+ .e-icons.e-frame {
1410
+ margin-left: 12px !important;
1411
+ margin-right: 0 !important;
1412
+ }
1413
+
1414
+ /* stylelint-enable */
1415
+ }
1416
+ }
1417
+
1418
+ .e-radio-wrapper {
1419
+ margin-bottom: 24px;
1420
+ margin-right: 20px;
1421
+
1422
+ .e-label {
1423
+ color: $field-list-default-font-color;
1424
+ font-family: $field-list-font-family;
1425
+ opacity: .87;
1426
+ }
1427
+ }
1428
+
1429
+ .e-pivot-ok-button,
1430
+ .e-pivot-add-button,
1431
+ .e-pivot-cancel-button {
1432
+ float: right;
1433
+ margin-right: calc(10% - 20px);
1434
+ margin-top: 32px;
1435
+ }
1436
+
1437
+ .e-pivot-ok-button {
1438
+ bottom: 0;
1439
+ position: sticky;
1440
+ }
1441
+
1442
+ .e-pivot-accord {
1443
+ max-height: 290px;
1444
+ overflow: auto;
1445
+
1446
+ ul {
1447
+
1448
+ .e-list-icon {
1449
+ color: $field-list-tree-icon-color;
1450
+ }
1451
+
1452
+ .e-calcfieldmember .e-list-text {
1453
+ overflow: hidden;
1454
+ text-overflow: ellipsis;
1455
+ width: 53%;
1456
+ }
1457
+
1458
+ .e-list-header-icon {
1459
+ display: table;
1460
+ height: 30px;
1461
+ min-height: 30px;
1462
+ min-width: 24px;
1463
+ padding: 0;
1464
+ position: absolute;
1465
+ right: 16px;
1466
+ top: 0;
1467
+
1468
+ .e-list-edit-icon,
1469
+ .e-remove-report.e-icons {
1470
+ color: $field-list-tree-icon-color;
1471
+ display: table-cell;
1472
+ padding: 5px;
1473
+ pointer-events: all;
1474
+ text-align: center;
1475
+ vertical-align: middle;
1476
+ }
1477
+ }
1478
+ }
1479
+
1480
+ &.e-rtl {
1481
+ ul {
1482
+ .e-list-header-icon {
1483
+ left: 16px;
1484
+ right: auto;
1485
+ }
1486
+
1487
+ .e-list-icon {
1488
+ transform: rotateX(0deg) rotateY(180deg);
1489
+ }
1490
+ }
1491
+ }
1492
+ }
1493
+
1494
+ &.e-olap-calc-outer-div {
1495
+ max-height: 575px;
1496
+ overflow: hidden;
1497
+ overflow-y: auto;
1498
+ }
1499
+ }
1500
+ }
1501
+
1502
+ .e-field-list-footer {
1503
+ bottom: 20px;
1504
+ display: inline-block;
1505
+ position: absolute;
1506
+ vertical-align: bottom;
1507
+ width: 100%;
1508
+
1509
+ .e-field-list-footer-content {
1510
+ display: inline-block;
1511
+ padding: $field-list-adaptive-footer-padding-size;
1512
+ width: 100%;
1513
+
1514
+ .e-field-list-btn,
1515
+ .e-calculated-field-btn {
1516
+ float: right;
1517
+ height: $field-list-adaptive-btn-size;
1518
+ pointer-events: all;
1519
+ width: $field-list-adaptive-btn-size;
1520
+ z-index: 1000;
1521
+
1522
+ .e-add-icon {
1523
+ font-size: $field-list-adaptive-btn-icon-size;
1524
+ line-height: $field-list-adaptive-icon-height;
1525
+ }
1526
+ }
1527
+ }
1528
+ }
1529
+ }
1530
+
1531
+ .e-footer-content.e-field-list-footer {
1532
+ background-color: transparent;
1533
+ bottom: 0;
1534
+ display: inline-block;
1535
+ padding: $field-list-adaptive-footer-padding-size;
1536
+ pointer-events: none;
1537
+ position: absolute;
1538
+ vertical-align: bottom;
1539
+ width: 100%;
1540
+
1541
+ .e-field-list-btn,
1542
+ .e-calculated-field-btn,
1543
+ .e-cancel-btn,
1544
+ .e-defer-apply-button {
1545
+ float: right;
1546
+ height: $field-list-adaptive-btn-size;
1547
+ pointer-events: all;
1548
+ width: $field-list-adaptive-btn-size;
1549
+ z-index: 1000;
1550
+
1551
+ @if ($skin-name == 'Material3') {
1552
+ border-radius: $field-list-device-footer-button-border-radius;
1553
+ box-shadow: $field-list-device-footer-button-box-shadow;
1554
+ }
1555
+
1556
+ .e-add-icon {
1557
+ font-size: $field-list-adaptive-btn-icon-size;
1558
+ line-height: $field-list-adaptive-icon-height;
1559
+ }
1560
+ }
1561
+
1562
+ .e-cancel-btn,
1563
+ .e-defer-apply-button {
1564
+ float: left;
1565
+ }
1566
+
1567
+ .e-cancel-btn,
1568
+ .e-defer-apply-button,
1569
+ .e-checkbox-layout {
1570
+ max-width: 20%;
1571
+ overflow: hidden;
1572
+ text-overflow: ellipsis;
1573
+ white-space: nowrap;
1574
+ }
1575
+
1576
+ .e-checkbox-layout {
1577
+ max-width: 45%;
1578
+ }
1579
+ }
1580
+
1581
+ &.e-static {
1582
+ border: 0;
1583
+ padding: 0;
1584
+
1585
+ .e-field-list-filters,
1586
+ .e-field-list-rows,
1587
+ .e-field-list-columns,
1588
+ .e-field-list-values {
1589
+ .e-axis-content {
1590
+ max-height: 600px;
1591
+ }
1592
+ }
1593
+ }
1594
+
1595
+ &.e-rtl {
1596
+ .e-field-list-back-icon {
1597
+ margin-left: 12px;
1598
+ margin-right: 0;
1599
+ transform: rotateY(180deg);
1600
+ }
1601
+
1602
+ .e-field-list-footer {
1603
+
1604
+ .e-field-list-btn,
1605
+ .e-calculated-field-btn {
1606
+ float: left;
1607
+ }
1608
+
1609
+ .e-cancel-btn,
1610
+ .e-defer-apply-button {
1611
+ float: right;
1612
+ }
1613
+ }
1614
+
1615
+ /* stylelint-disable */
1616
+ .e-pivot-calc-outer-div {
1617
+
1618
+ .e-pivot-ok-button,
1619
+ .e-pivot-add-button,
1620
+ .e-pivot-cancel-button {
1621
+ float: left !important;
1622
+ margin-left: 20px;
1623
+ }
1624
+ }
1625
+ /* stylelint-enable */
1626
+ }
1627
+ }
1628
+ }
1629
+
1630
+ /* stylelint-disable */
1631
+ .e-bigger .e-pivotfieldlist-container,
1632
+ .e-bigger.e-pivotfieldlist-container {
1633
+ .e-field-table {
1634
+
1635
+ .e-left-axis-fields,
1636
+ .e-right-axis-fields {
1637
+ padding-left: $field-list-default-bigger-padding-size;
1638
+ }
1639
+
1640
+ .e-field-header {
1641
+ background: $field-list-header-background-color;
1642
+ color: $field-list-default-header-font-color;
1643
+ font-size: $field-list-bigger-header-font-size;
1644
+ font-weight: normal;
1645
+ overflow: hidden;
1646
+
1647
+ @if ($field-list-skin == 'bootstrap4') {
1648
+ padding-left: 16px;
1649
+ }
1650
+ }
1651
+
1652
+ .e-field-header-container {
1653
+ padding-right: $field-list-bigger-header-padding;
1654
+
1655
+ .e-sort-none,
1656
+ .e-sort-ascend,
1657
+ .e-sort-descend {
1658
+ font-size: $field-list-bigger-header-icon-size;
1659
+ padding: 0 0 0 $field-list-bigger-icon-to-icon-padding;
1660
+ width: 24px;
1661
+ }
1662
+ }
1663
+
1664
+ .e-field-list {
1665
+ padding-left: 5px;
1666
+
1667
+ &:not(.e-olap-field-list-tree) {
1668
+ ul {
1669
+ padding-left: $field-list-treeview-bigger-ul-padding;
1670
+
1671
+ li.e-pivot-parent{
1672
+ @if ($skin-name == 'bootstrap5') {
1673
+ padding-left: 7px;
1674
+ }
1675
+
1676
+ @if ($skin-name == 'FluentUI') {
1677
+ padding-left: 8px;
1678
+ }
1679
+ }
1680
+
1681
+ li:not(.e-pivot-parent):not(.e-pivot-child) {
1682
+ .e-text-content {
1683
+ padding-left: $field-list-treeview-bigger-li-padding;
1684
+ }
1685
+ }
1686
+ }
1687
+ }
1688
+
1689
+ ul {
1690
+ li {
1691
+ padding: 0;
1692
+ }
1693
+ }
1694
+
1695
+ .e-drag {
1696
+ font-size: $field-list-bigger-icon-size !important;
1697
+ height: 24px !important;
1698
+ margin-bottom: $field-list-treeview-drag-bigger-padding !important;
1699
+ margin-right: 4px !important;
1700
+ width: 24px !important;
1701
+ }
1702
+
1703
+ .e-calc-measure-icon,
1704
+ .e-calc-dimension-icon,
1705
+ .e-attributeCDB-icon,
1706
+ .e-hierarchyCDB-icon,
1707
+ .e-level-members,
1708
+ .e-namedSetCDB-icon,
1709
+ .e-measure-icon,
1710
+ .e-kpiGoal-icon,
1711
+ .e-kpiStatus-icon,
1712
+ .e-kpiTrend-icon,
1713
+ .e-kpiValue-icon {
1714
+ margin-left: 10px;
1715
+ }
1716
+
1717
+ &.e-olap-field-list-tree {
1718
+ ul {
1719
+ .e-list-icon {
1720
+ font-size: $field-list-bigger-icon-size;
1721
+ }
1722
+ }
1723
+ }
1724
+ }
1725
+ /* stylelint-enable */
1726
+
1727
+ .e-left-axis-fields .e-field-list-rows,
1728
+ .e-right-axis-fields .e-field-list-values {
1729
+ margin-top: $field-list-default-bigger-padding-size;
1730
+ }
1731
+ }
1732
+
1733
+ .e-axis-table {
1734
+ .e-left-axis-fields .e-field-list-filters,
1735
+ .e-left-axis-fields .e-field-list-rows,
1736
+ .e-right-axis-fields .e-field-list-columns,
1737
+ .e-right-axis-fields .e-field-list-values {
1738
+ .e-axis-container {
1739
+ height: $field-list-bigger-header-height;
1740
+ padding: 0 $field-list-bigger-header-padding 0;
1741
+
1742
+ .e-axis-icon-container {
1743
+ height: $field-list-bigger-header-icon-size;
1744
+ width: 24px;
1745
+
1746
+ .e-axis-rows,
1747
+ .e-axis-columns,
1748
+ .e-axis-values,
1749
+ .e-axis-filters {
1750
+ font-size: $field-list-bigger-header-icon-size;
1751
+ }
1752
+ }
1753
+
1754
+ .e-axis-header {
1755
+ font-size: $field-list-bigger-header-font-size;
1756
+ padding: 0 12px;
1757
+ }
1758
+ }
1759
+
1760
+ .e-axis-content {
1761
+ height: $field-list-popup-axis-content-bigger-height;
1762
+
1763
+ .e-pvt-btn-div {
1764
+ .e-pivot-button {
1765
+ /* stylelint-disable */
1766
+ font-size: $field-list-bigger-button-font-size;
1767
+ height: $field-list-bigger-button-height !important;
1768
+ padding: $field-list-bigger-button-padding !important;
1769
+
1770
+ /* stylelint-enable */
1771
+ .e-pvt-btn-content {
1772
+ font-size: $field-list-bigger-button-font-size;
1773
+ line-height: $field-list-bigger-button-line-height;
1774
+ padding: 0 10px;
1775
+ }
1776
+
1777
+ .e-draggable {
1778
+ height: 24px;
1779
+ width: 24px;
1780
+ }
1781
+
1782
+ .e-sort,
1783
+ .e-pv-filter,
1784
+ .e-pv-filtered,
1785
+ .e-dropdown-icon,
1786
+ .e-edit {
1787
+ cursor: pointer;
1788
+ display: inline-block;
1789
+ font-size: $field-list-bigger-icon-size;
1790
+ height: 24px;
1791
+ width: 24px;
1792
+ }
1793
+
1794
+ .e-sort {
1795
+ height: $field-list-bigger-icon-size;
1796
+ }
1797
+
1798
+ .e-drag {
1799
+ font-size: $field-list-bigger-icon-size;
1800
+ width: 24px;
1801
+ }
1802
+ }
1803
+ }
1804
+ }
1805
+
1806
+ .e-draggable-prompt {
1807
+ @if ($field-list-skin == 'bootstrap4') {
1808
+ font-size: 16px;
1809
+ }
1810
+ }
1811
+ }
1812
+ }
1813
+
1814
+ .e-calculated-field {
1815
+ font-size: $field-list-bigger-button-font-size;
1816
+ }
1817
+
1818
+ &.e-static {
1819
+ max-height: 735px;
1820
+
1821
+ .e-field-list-container {
1822
+ .e-center-title {
1823
+ color: $field-list-default-header-font-color;
1824
+ font-size: $field-list-bigger-header-font-size;
1825
+ }
1826
+
1827
+ .e-axis-table {
1828
+ .e-right-axis-fields {
1829
+ padding-left: $field-list-default-bigger-padding-size;
1830
+ }
1831
+
1832
+ .e-left-axis-fields .e-field-list-rows,
1833
+ .e-right-axis-fields .e-field-list-values {
1834
+ margin-top: $field-list-default-bigger-padding-size;
1835
+ }
1836
+ }
1837
+ }
1838
+
1839
+ &.e-rtl {
1840
+ .e-axis-table {
1841
+ .e-left-axis-fields {
1842
+ padding-left: $field-list-default-bigger-padding-size;
1843
+ }
1844
+
1845
+ /* stylelint-disable */
1846
+ .e-right-axis-fields {
1847
+ padding: 0 !important;
1848
+ }
1849
+ }
1850
+ }
1851
+
1852
+ .e-layout-footer .e-checkbox-layout .e-checkbox-wrapper label .e-label {
1853
+ width: calc(100% - 30px);
1854
+ }
1855
+ }
1856
+
1857
+ &.e-rtl {
1858
+ .e-field-table {
1859
+ .e-field-list {
1860
+ padding-left: 0;
1861
+ padding-right: 5px;
1862
+
1863
+ &:not(.e-olap-field-list-tree) {
1864
+ ul {
1865
+ padding-right: $field-list-treeview-bigger-ul-padding;
1866
+
1867
+ li.e-pivot-parent{
1868
+ @if ($skin-name == 'bootstrap5') {
1869
+ padding-right: 7px;
1870
+ }
1871
+
1872
+ @if ($skin-name == 'FluentUI') {
1873
+ padding-right: 8px;
1874
+ }
1875
+ }
1876
+
1877
+ li:not(.e-pivot-parent):not(.e-pivot-child) {
1878
+ .e-text-content {
1879
+ padding-right: $field-list-treeview-bigger-li-padding;
1880
+ }
1881
+ }
1882
+ }
1883
+ }
1884
+
1885
+ .e-drag {
1886
+ margin-left: 4px !important;
1887
+ margin-right: 0 !important;
1888
+ }
1889
+
1890
+ .e-calc-measure-icon,
1891
+ .e-calc-dimension-icon,
1892
+ .e-attributeCDB-icon,
1893
+ .e-hierarchyCDB-icon,
1894
+ .e-level-members,
1895
+ .e-namedSetCDB-icon,
1896
+ .e-measure-icon,
1897
+ .e-kpiGoal-icon,
1898
+ .e-kpiStatus-icon,
1899
+ .e-kpiTrend-icon,
1900
+ .e-kpiValue-icon {
1901
+ margin-left: 0;
1902
+ margin-right: 10px;
1903
+ }
1904
+
1905
+ /* stylelint-enable */
1906
+ }
1907
+
1908
+ .e-field-header {
1909
+ padding-right: $field-list-bigger-header-padding;
1910
+ }
1911
+
1912
+ .e-field-header-container {
1913
+ padding-left: $field-list-bigger-header-padding;
1914
+
1915
+ .e-sort-none,
1916
+ .e-sort-ascend,
1917
+ .e-sort-descend {
1918
+ padding: 0 $field-list-bigger-icon-to-icon-padding 0 0;
1919
+ }
1920
+ }
1921
+ }
1922
+
1923
+ .e-axis-table {
1924
+
1925
+ .e-left-axis-fields,
1926
+ .e-right-axis-fields {
1927
+ padding-left: 0;
1928
+ padding-right: $field-list-default-padding-size;
1929
+ }
1930
+
1931
+ .e-left-axis-fields .e-field-list-filters,
1932
+ .e-left-axis-fields .e-field-list-rows,
1933
+ .e-right-axis-fields .e-field-list-columns,
1934
+ .e-right-axis-fields .e-field-list-values {
1935
+ .e-pivot-button {
1936
+
1937
+ .e-sort,
1938
+ .e-pv-filter,
1939
+ .e-pv-filtered,
1940
+ .e-remove,
1941
+ .e-dropdown-icon,
1942
+ .e-edit {
1943
+ padding-left: 0;
1944
+ padding-right: $field-list-bigger-icon-to-icon-padding;
1945
+ }
1946
+ }
1947
+ }
1948
+ }
1949
+ }
1950
+
1951
+ &.e-search-mode {
1952
+ &.e-static {
1953
+ max-height: 750px;
1954
+
1955
+ .e-field-list-container {
1956
+ max-height: 800px;
1957
+
1958
+ .e-field-table {
1959
+ height: 270px;
1960
+ }
1961
+ }
1962
+ }
1963
+
1964
+ /* stylelint-disable */
1965
+ &.e-popup {
1966
+ max-height: 600px !important;
1967
+ min-height: $field-list-search-popup-container-bigger-height !important;
1968
+
1969
+ .e-field-list-container {
1970
+ height: 387px;
1971
+
1972
+ .e-field-table {
1973
+ height: $field-list-search-popup-table-bigger-height !important;
1974
+ }
1975
+
1976
+ .e-axis-table {
1977
+ height: $field-list-search-popup-axis-table-bigger-height;
1978
+
1979
+ .e-axis-content {
1980
+ height: $field-list-search-popup-axis-content-bigger-height !important;
1981
+ }
1982
+ }
1983
+ }
1984
+ }
1985
+ }
1986
+
1987
+ .e-adaptive-field-list-dialog {
1988
+ .e-dlg-content .e-field-list-tree-outer-div {
1989
+ max-height: $field-list-adaptive-outerdiv-height;
1990
+ }
1991
+ }
1992
+ }
1993
+ /* stylelint-enable */
1994
+ }