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

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