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

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