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

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