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

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