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