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

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 -912
  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,1156 @@
1
+ @include export-module('pivotview-layout') {
2
+
3
+ /*! PivotView layout */
4
+ .e-pivotview {
5
+ &.e-dialog .e-dlg-header-content .e-btn.e-dlg-closeicon-btn {
6
+ @if ($skin-name == 'Material3') {
7
+ padding: 0;
8
+ }
9
+ }
10
+
11
+ /* stylelint-disable */
12
+ .e-value-field-settings,
13
+ .e-member-editor-dialog,
14
+ .e-group-field-settings,
15
+ .e-pivot-format-dialog {
16
+ max-height: 450px !important;
17
+ border-radius: $pivotgrid-default-border-radius;
18
+ max-width: 400px !important;
19
+ }
20
+ /* stylelint-enable */
21
+
22
+ .e-value-field-settings {
23
+ .e-field-name-text-container {
24
+ display: flex;
25
+ }
26
+
27
+ .e-field-name-title {
28
+ flex: none;
29
+ font-size: 13px;
30
+ font-weight: 500;
31
+ }
32
+
33
+ .e-field-name-content {
34
+ flex: auto;
35
+ font-size: 13px;
36
+ font-weight: 500;
37
+ width: 100%;
38
+ }
39
+
40
+ .e-caption-input-container,
41
+ .e-type-option-container,
42
+ .e-base-field-option-container,
43
+ .e-base-item-option-container {
44
+ padding-top: $pivotgrid-editor-search-padding-size;
45
+ }
46
+
47
+ .e-base-field-option-text,
48
+ .e-base-item-option-text,
49
+ .e-type-option-text {
50
+ font-size: 13px;
51
+ font-weight: 500;
52
+ width: 100%;
53
+
54
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
55
+ padding-bottom: 4px;
56
+ }
57
+ }
58
+
59
+ .e-caption-input-text {
60
+ font-size: 13px;
61
+ }
62
+ }
63
+
64
+ .e-group-field-settings {
65
+ /* stylelint-disable */
66
+ width: auto !important;
67
+ /* stylelint-enable */
68
+
69
+ .e-caption-option-text,
70
+ .e-input-option-text,
71
+ .e-group-inerval-option-text,
72
+ .e-checkbox-wrapper {
73
+ padding-bottom: $pivotgrid-grouping-padding-bottom;
74
+ }
75
+
76
+ .e-group-start-option-container .e-checkbox-wrapper {
77
+ padding-top: $pivotgrid-grouping-padding-top;
78
+ }
79
+
80
+ .e-caption-option-text,
81
+ .e-input-option-text,
82
+ .e-group-inerval-option-text,
83
+ .e-checkbox-wrapper .e-label {
84
+ font-size: 13px;
85
+ font-weight: 500;
86
+ width: 100%;
87
+ }
88
+
89
+ .e-group-input-container,
90
+ .e-group-end-option-container,
91
+ .e-group-interval-option-container {
92
+ padding-top: $pivotgrid-editor-search-padding-size;
93
+ }
94
+
95
+ .e-group-field-div-content {
96
+ margin-bottom: 10px;
97
+ }
98
+ }
99
+
100
+ .e-member-editor-dialog {
101
+ min-width: 320px;
102
+
103
+ .e-editor-search-container {
104
+ display: flex;
105
+ padding: $pivotgrid-member-editor-search-padding;
106
+
107
+ .e-clear-icon-hide {
108
+ visibility: hidden;
109
+ }
110
+ }
111
+
112
+ @if ($pivotgrid-skin == 'bootstrap4') {
113
+ &:not(.e-excel-filter) {
114
+ .e-editor-search-container {
115
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
116
+ }
117
+ }
118
+ }
119
+
120
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') {
121
+ &:not(.e-excel-filter) {
122
+ .e-editor-search-container {
123
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
124
+ }
125
+ }
126
+ }
127
+
128
+ @if ($skin-name == 'tailwind') {
129
+ &:not(.e-excel-filter) {
130
+ .e-editor-search-container {
131
+ padding: 5px $pivotgrid-editor-search-padding-size 10px;
132
+ }
133
+ }
134
+ }
135
+
136
+ .e-filter-sort {
137
+ box-shadow: none;
138
+ margin-left: $pivotgrid-sort-wrapper-padding-size;
139
+
140
+ .e-member-sort {
141
+ @if ($pivotgrid-skin == 'bootstrap4') {
142
+ background-color: $content-bg;
143
+ border-color: $gray-400;
144
+ color: $gray-700;
145
+ }
146
+
147
+ @if ($skin-name == 'Material3') {
148
+ border: 1px solid $pivotgrid-border;
149
+ border-radius: $pivotgrid-member-sort-border-radius;
150
+ min-width: 40px;
151
+ }
152
+
153
+ &:hover {
154
+ @if ($pivotgrid-skin == 'bootstrap4') {
155
+ /* stylelint-disable */
156
+ background-color: $gray-600 !important;
157
+ border-color: $gray-600 !important;
158
+ color: $white !important;
159
+ /* stylelint-enable */
160
+ }
161
+ }
162
+
163
+ &.e-active {
164
+ @if ($pivotgrid-skin == 'bootstrap4') {
165
+ background: $pivotgrid-sort-select-background-color;
166
+ border-color: $pivotgrid-sort-select-border-color;
167
+ color: $pivotgrid-sort-select-color;
168
+ outline: none;
169
+ }
170
+ }
171
+
172
+ .e-sort-ascend-icon,
173
+ .e-sort-descend-icon {
174
+ font-size: 16px;
175
+ }
176
+
177
+ &:focus {
178
+ @if ($pivotgrid-skin == 'bootstrap4') {
179
+ /* stylelint-disable */
180
+ background-color: $gray-600 !important;
181
+ border-color: $gray-600 !important;
182
+ color: $white !important;
183
+ /* stylelint-enable */
184
+ }
185
+
186
+ &.e-active {
187
+ @if ($skin-name == 'bootstrap4') {
188
+ background: $pivotgrid-sort-select-background-color;
189
+ border-color: $pivotgrid-sort-select-border-color;
190
+ color: $pivotgrid-sort-select-color;
191
+ outline: none;
192
+ }
193
+ }
194
+ }
195
+ }
196
+ }
197
+
198
+ .e-member-prompt {
199
+ padding: 15px $pivotgrid-editor-search-padding-size;
200
+ text-align: center;
201
+ width: 100%;
202
+ }
203
+
204
+ .e-select-all-container {
205
+ ul li .e-text-content > .e-icon-expandable {
206
+ display: none;
207
+ }
208
+ }
209
+
210
+ .e-member-editor-container-outer-div {
211
+ display: inline-block;
212
+ height: $pivotgrid-member-filter-list-height;
213
+ max-width: 400px;
214
+ overflow: auto;
215
+ width: 100%;
216
+ }
217
+
218
+ .e-member-editor-container {
219
+ display: inline-table;
220
+ width: 100%;
221
+
222
+ &.e-olap-field-list-tree {
223
+ overflow-x: auto;
224
+ }
225
+ }
226
+
227
+ ul li .e-text-content .e-checkbox-wrapper {
228
+ @if ($skin-name == 'Material3') {
229
+ /* stylelint-disable */
230
+ margin: 0 !important;
231
+ /* stylelint-enable */
232
+ }
233
+
234
+ .e-ripple-container {
235
+ @if ($skin-name == 'Material3') {
236
+ background: transparent;
237
+ }
238
+ }
239
+ }
240
+
241
+ .e-select-all-container ul,
242
+ .e-member-editor-container ul {
243
+ margin-left: $pivotgrid-member-filter-list-padding-size;
244
+ overflow: hidden;
245
+
246
+ li {
247
+ .e-list-text {
248
+ font-family: $field-list-font-family;
249
+ }
250
+
251
+ .e-list-icon {
252
+ margin: 0;
253
+ }
254
+ }
255
+ }
256
+
257
+ .e-select-all-container ul,
258
+ .e-member-editor-container ul {
259
+ margin-left: $pivotgrid-member-filter-list-padding-size;
260
+ overflow: hidden;
261
+
262
+ li {
263
+ .e-list-text {
264
+ font-family: $field-list-font-family;
265
+ }
266
+
267
+ .e-list-icon {
268
+ margin: 0;
269
+ }
270
+ }
271
+ }
272
+
273
+ .e-excelfilter {
274
+ padding-top: 20px;
275
+
276
+ @if ($skin-name == 'tailwind') {
277
+ padding-top: 12px;
278
+ }
279
+
280
+ .e-member-editor-container-outer-div {
281
+ height: $pivotgrid-excel-member-filter-height;
282
+ }
283
+ }
284
+
285
+ &.e-node-limit .e-excelfilter .e-member-editor-container-outer-div {
286
+ height: $pivotgrid-excel-member-filter-node-limit-height;
287
+ }
288
+
289
+ .e-label-filter,
290
+ .e-value-filter {
291
+ height: $pivotgrid-excel-filter-height;
292
+ overflow: auto;
293
+ padding: 20px;
294
+ padding-bottom: 0;
295
+
296
+ .e-filter-text-div {
297
+ /* stylelint-disable */
298
+ color: $pivotview-grid-header-font-color !important;
299
+ /* stylelint-enable */
300
+ font-size: 13px;
301
+ font-weight: 500;
302
+ }
303
+
304
+ .e-filter-option-container-1,
305
+ .e-filter-option-container-2,
306
+ .e-separator-div {
307
+ padding-top: 20px;
308
+ }
309
+
310
+ .e-between-text-div {
311
+ padding: 8px 0;
312
+ }
313
+
314
+ .e-disable {
315
+ display: none;
316
+ }
317
+
318
+ @if ($skin-name == 'tailwind') {
319
+ padding-top: 0;
320
+ }
321
+ }
322
+
323
+ .e-filter-tab-container {
324
+ border: none;
325
+
326
+ .e-tab-header {
327
+ .e-toolbar-item .e-icon-left + .e-tab-text {
328
+ margin: 0 0 0 6px;
329
+ }
330
+
331
+ .e-text-wrap {
332
+ .e-tab-icon {
333
+ height: fit-content;
334
+
335
+ &::before {
336
+ font-size: 14px;
337
+ /* stylelint-disable */
338
+ top: 0 !important;
339
+ /* stylelint-enable */
340
+ }
341
+ }
342
+ }
343
+ }
344
+
345
+ &.e-rtl {
346
+ .e-tab-header {
347
+ .e-toolbar-item .e-icon-left + .e-tab-text {
348
+ margin: 0 6px 0 0;
349
+ }
350
+ }
351
+ }
352
+ }
353
+
354
+ /* stylelint-disable */
355
+ .e-disable {
356
+ display: none !important;
357
+ }
358
+
359
+ .e-clear-filter-button {
360
+ float: left;
361
+ margin: 0 !important;
362
+
363
+ @if ($skin-name == 'FluentUI') {
364
+ margin-left: 0 !important;
365
+ margin-right: 0 !important;
366
+ }
367
+ &.e-disable {
368
+ display: none;
369
+ }
370
+ }
371
+
372
+ .e-editor-label-container {
373
+ align-items: center;
374
+ background: $pivotgrid-editor-label-fill;
375
+ display: flex !important;
376
+ /* stylelint-enable */
377
+ height: 40px;
378
+ justify-content: center;
379
+ opacity: $pivotgrid-editor-label-excel-opacity;
380
+ @if ($skin-name == 'Material3') {
381
+ border-top: $pivotpager-separator-border;
382
+ }
383
+
384
+ .e-editor-label {
385
+ color: $pivotgrid-editor-label-color;
386
+ font: $pivotgrid-editor-label-font;
387
+ margin-bottom: 0;
388
+ opacity: $pivotgrid-editor-label-opacity;
389
+ overflow: hidden;
390
+ text-overflow: ellipsis;
391
+ white-space: nowrap;
392
+ }
393
+ }
394
+
395
+ &.e-rtl {
396
+ .e-member-editor-outer-container {
397
+ .e-editor-search-container {
398
+ .e-filter-sort {
399
+ margin-left: 0;
400
+ margin-right: $pivotgrid-sort-wrapper-padding-size;
401
+ }
402
+ }
403
+
404
+ ul {
405
+ margin-left: 0;
406
+ margin-right: $pivotgrid-member-filter-list-padding-size;
407
+ }
408
+ }
409
+ .e-member-editor-outer-container {
410
+ .e-editor-search-container {
411
+ .e-filter-sort {
412
+ margin-left: 0;
413
+ margin-right: $pivotgrid-sort-wrapper-padding-size;
414
+ }
415
+ }
416
+
417
+ ul {
418
+ margin-left: 0;
419
+ margin-right: $pivotgrid-member-filter-list-padding-size;
420
+ }
421
+ }
422
+
423
+ .e-footer-content {
424
+ .e-clear-filter-button {
425
+ float: right;
426
+ margin: 0;
427
+ }
428
+ }
429
+ }
430
+
431
+ &.e-olap-editor-dialog {
432
+ .e-member-editor-outer-container {
433
+ .e-select-all-container ul,
434
+ .e-member-editor-container ul {
435
+ margin-left: 0;
436
+ }
437
+
438
+ .e-treeview ul:first-child {
439
+ padding-left: 10px;
440
+ padding-right: 10px;
441
+ }
442
+
443
+ .e-editor-search-container {
444
+ .e-level-drop {
445
+ margin: 0 5px;
446
+
447
+ .e-caret {
448
+ font-size: $pivotgrid-button-icon-size;
449
+ }
450
+
451
+ li .e-disabled {
452
+ opacity: .5;
453
+ pointer-events: none;
454
+ }
455
+ }
456
+ }
457
+ }
458
+ .e-member-editor-outer-container {
459
+ .e-select-all-container ul,
460
+ .e-member-editor-container ul {
461
+ margin-left: 0;
462
+ }
463
+
464
+ .e-treeview ul:first-child {
465
+ padding-left: 10px;
466
+ padding-right: 10px;
467
+ }
468
+
469
+ .e-editor-search-container {
470
+ .e-level-drop {
471
+ margin: 0 5px;
472
+
473
+ .e-caret {
474
+ font-size: $pivotgrid-button-icon-size;
475
+ }
476
+
477
+ li .e-disabled {
478
+ opacity: .5;
479
+ pointer-events: none;
480
+ }
481
+ }
482
+ }
483
+ }
484
+
485
+ &.e-rtl {
486
+ .e-member-editor-outer-container {
487
+ ul {
488
+ margin-right: 0;
489
+ }
490
+ }
491
+ }
492
+ }
493
+ /* stylelint-disable */
494
+ .e-member-editor-outer-container:not(.e-excelfilter) {
495
+ .e-editor-search-container {
496
+ padding-top: 4px !important;
497
+ }
498
+ }
499
+ }
500
+
501
+ .e-value-field-settings,
502
+ .e-member-editor-dialog,
503
+ .e-pivot-format-dialog,
504
+ .e-group-field-settings {
505
+
506
+ .e-dlg-header-content {
507
+ border: 0;
508
+ border-radius: $pivotgrid-default-border-radius;
509
+ font-weight: normal;
510
+ }
511
+
512
+ .e-footer-content {
513
+ border-top-left-radius: 0;
514
+ border-top-right-radius: 0;
515
+ @if ($skin-name != 'FluentUI') {
516
+ padding-top: $pivotgrid-editor-dialog-footer-padding;
517
+ padding-bottom: $pivotgrid-editor-dialog-footer-padding;
518
+ }
519
+ }
520
+
521
+ .e-dlg-content {
522
+ overflow: hidden;
523
+ @if ($skin-name == 'Material3') {
524
+ border-radius: 0;
525
+ }
526
+
527
+ .e-empty-field::-webkit-input-placeholder {
528
+ color: $error-font-color !important;
529
+ font-weight: 600 !important;
530
+ }
531
+
532
+ .e-empty-field:-moz-placeholder {
533
+ color: $error-font-color !important;
534
+ font-weight: 600 !important;
535
+ }
536
+
537
+ .e-empty-field::-moz-placeholder {
538
+ color: $error-font-color !important;
539
+ font-weight: 600 !important;
540
+ }
541
+
542
+ .e-empty-field:-ms-input-placeholder {
543
+ color: $error-font-color !important;
544
+ font-weight: 600 !important;
545
+ }
546
+ }
547
+ }
548
+
549
+ .e-member-editor-dialog,
550
+ .e-pivot-format-dialog {
551
+ .e-dlg-content {
552
+ @if ($skin-name != 'FluentUI') {
553
+ padding: 0;
554
+ }
555
+
556
+ @if ($skin-name == 'FluentUI') {
557
+ padding-left: 0 !important;
558
+ padding-right: 0 !important;
559
+ }
560
+ }
561
+ }
562
+ /* stylelint-enable */
563
+
564
+ .e-value-field-settings,
565
+ .e-member-editor-dialog {
566
+ .e-footer-content {
567
+ border-top: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
568
+
569
+ @if ($skin-name == 'FluentUI') {
570
+ border-top: 0;
571
+ }
572
+ }
573
+ }
574
+
575
+ .e-value-field-settings,
576
+ .e-pivot-format-dialog {
577
+ min-width: 300px;
578
+
579
+ .e-dlg-content {
580
+ overflow: auto;
581
+
582
+ @if ($skin-name == 'tailwind') {
583
+ padding-top: 12px;
584
+ }
585
+ }
586
+ }
587
+
588
+ .e-pivotchart-type-dialog {
589
+ /* stylelint-disable */
590
+ max-width: 350px !important;
591
+ max-height: 380px !important;
592
+ /* stylelint-enable */
593
+
594
+ .e-chart-type-option-container,
595
+ .e-chart-type-option-text {
596
+ padding-bottom: 20px;
597
+
598
+ .e-chart-type-option-text {
599
+ padding-bottom: 5px;
600
+ }
601
+ }
602
+
603
+ .e-multiple-axes-mode-container {
604
+ padding-top: 20px;
605
+
606
+ .e-multiple-axes-mode-text {
607
+ padding-bottom: 5px;
608
+ }
609
+ }
610
+
611
+ .e-dialog-multiple-axis,
612
+ .e-dialog-show-legend {
613
+ width: 49%;
614
+ }
615
+ }
616
+
617
+ .e-pivot-format-dialog {
618
+ /* stylelint-disable */
619
+ max-height: 550px !important;
620
+ max-width: 350px !important;
621
+ /* stylelint-enable */
622
+
623
+ .e-pivot-format-dialog-outer {
624
+ padding: 0 $pivotgrid-editor-search-padding-size;
625
+
626
+ .e-pivot-format-value-lable,
627
+ .e-pivot-format-lable,
628
+ .e-pivot-format-custom-lable,
629
+ .e-pivot-format-grouping-lable,
630
+ .e-pivot-format-decimal-lable {
631
+ font-weight: 500;
632
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
633
+ padding-bottom: 4px;
634
+ }
635
+ }
636
+
637
+ .e-pivot-format-value-drop,
638
+ .e-pivot-format-drop,
639
+ .e-pivot-format-custom-text,
640
+ .e-pivot-format-grouping-drop,
641
+ .e-pivot-format-decimal-drop {
642
+ margin-bottom: 20px;
643
+ @if ($skin-name == 'tailwind') {
644
+ margin-bottom: 12px;
645
+ }
646
+ }
647
+ }
648
+ }
649
+
650
+ &.sf-pivotview {
651
+ .e-pivot-toolbar {
652
+ box-sizing: border-box;
653
+ }
654
+ }
655
+
656
+ .e-pivot-toolbar {
657
+ background: $pivotgrid-grp-bg-color;
658
+ border-bottom: 0;
659
+ border-style: solid;
660
+
661
+ @if ($skin-name == 'FluentUI') {
662
+ box-shadow: none;
663
+ }
664
+
665
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') or ($skin-name == 'Material3') {
666
+ border-top: 1px solid $pivotgrid-border;
667
+ border-left: 1px solid $pivotgrid-border;
668
+ border-right: 1px solid $pivotgrid-border;
669
+ }
670
+
671
+ .e-toolbar-items {
672
+ background: $pivotgrid-grp-bg-color;
673
+ }
674
+
675
+ .e-toolbar-item .e-tbar-btn.e-btn {
676
+
677
+ .e-icons.e-btn-icon {
678
+ @if ($skin-name != 'bootstrap5') and ($skin-name != 'tailwind') and ($skin-name != 'FluentUI') and ($skin-name != 'Material3') {
679
+ font-size: 16px;
680
+ }
681
+ }
682
+ }
683
+
684
+ .e-pivot-toolbar-menu {
685
+ background-color: $pivotgrid-table-background-color;
686
+ border: none;
687
+
688
+ ul .e-menu-item {
689
+ @if ($skin-name != 'tailwind') {
690
+ /* stylelint-disable */
691
+ height: $pivotgrid-menubar-height !important;
692
+ /* stylelint-enable */
693
+ }
694
+ overflow: hidden;
695
+ padding-left: 10px;
696
+
697
+ .e-menu-icon {
698
+ margin-left: 0;
699
+ margin-right: 0;
700
+
701
+ @if ($skin-name != 'bootstrap5') and ($skin-name != 'tailwind') {
702
+ font-size: 16px;
703
+ }
704
+
705
+ @if ($pivotgrid-skin == 'bootstrap4') {
706
+ color: $gray-700;
707
+ }
708
+
709
+ @if ($pivotgrid-skin == 'FluentUI') {
710
+ color: $pivotgrid-active-color;
711
+ }
712
+
713
+ @if ($skin-name == 'bootstrap5') {
714
+ line-height: $pivotgrid-menubar-height;
715
+ }
716
+
717
+ @if ($skin-name == 'FluentUI') {
718
+ line-height: 28px;
719
+ }
720
+
721
+ @if ($skin-name == 'tailwind') {
722
+ line-height: 40px;
723
+ }
724
+ }
725
+
726
+ .e-caret {
727
+ @if ($pivotgrid-skin == 'bootstrap4') {
728
+ color: $gray-700;
729
+ }
730
+
731
+ @if ($pivotgrid-skin == 'FluentUI') {
732
+ color: $pivotgrid-active-color;
733
+ }
734
+
735
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
736
+ line-height: $pivotgrid-menubar-height;
737
+ }
738
+
739
+ @if ($skin-name == 'tailwind') {
740
+ line-height: 40px;
741
+ }
742
+ }
743
+ }
744
+
745
+ ul .e-menu-item.e-focused {
746
+ @if ($pivotgrid-skin == 'bootstrap4') {
747
+ background-color: $gray-600;
748
+ border-radius: $pivotgrid-default-border-radius;
749
+ }
750
+
751
+ .e-menu-icon,
752
+ .e-icons{
753
+ @if ($pivotgrid-skin == 'bootstrap4') {
754
+ color: $white;
755
+ }
756
+
757
+ @if ($pivotgrid-skin == 'FluentUI') {
758
+ color: $pivotgrid-active-color;
759
+ }
760
+ }
761
+ }
762
+
763
+ /* stylelint-disable */
764
+ ul.e-menu {
765
+ @if ($pivotgrid-skin == 'fabric') or ($pivotgrid-skin == 'fabric-dark') or
766
+ ($pivotgrid-skin == 'highcontrast') or ($pivotgrid-skin == 'highcontrast-light') {
767
+ padding-left: 0 !important;
768
+ padding-right: 0 !important;
769
+ }
770
+ }
771
+
772
+ &.e-menu-wrapper ul.e-menu {
773
+ background-color: $pivotgrid-table-background-color;
774
+ }
775
+ }
776
+
777
+ .e-tab .e-tab-header .e-toolbar-item.e-active {
778
+ margin-left: 18px !important;
779
+ }
780
+
781
+ .e-toolbar-item.e-template {
782
+ padding: 0 !important;
783
+ /* stylelint-enable */
784
+ }
785
+
786
+ .e-reportlist-label {
787
+ float: left;
788
+ font-weight: 500;
789
+ }
790
+
791
+ .e-reportlist-drop {
792
+ float: right;
793
+ margin: 0 8px;
794
+ @if ($skin-name == 'Material3') {
795
+ background: $pivotgrid-grp-bg-color;
796
+ }
797
+ }
798
+
799
+ &.e-rtl {
800
+ .e-reportlist-label {
801
+ float: right;
802
+ }
803
+
804
+ .e-reportlist-drop {
805
+ float: left;
806
+ }
807
+
808
+ .e-pivot-toolbar-menu {
809
+ ul .e-menu-item {
810
+ padding-left: 30px;
811
+ padding-right: 10px;
812
+ }
813
+ }
814
+ }
815
+ }
816
+
817
+ .e-frozenscrollbar {
818
+ background: $pivotgrid-grp-bg-color;
819
+ }
820
+
821
+ /* stylelint-disable */
822
+ & .e-headercontent {
823
+ & .e-columnheader {
824
+ & .e-headercell.e-leftfreeze {
825
+ // For safari browser only
826
+ -webkit-transform: translate3d(0, 0, 0);
827
+ }
828
+ }
829
+ }
830
+ /* stylelint-enable */
831
+ }
832
+
833
+ .e-pivotview-disable-icon {
834
+ visibility: hidden;
835
+ }
836
+
837
+ .e-pivotview-report-inner {
838
+ padding-top: 10px;
839
+ }
840
+
841
+ .e-pivotview-report-dialog {
842
+ /* stylelint-disable */
843
+ max-width: 350px !important;
844
+ }
845
+
846
+ .e-mdx-query-content {
847
+ background-color: $pivotgrid-table-background-color;
848
+ color: $pivotgrid-default-font-color;
849
+ font-size: 14px;
850
+ font-weight: 500;
851
+ height: 200px;
852
+ margin-top: 5px;
853
+ padding: 5px 10px;
854
+ resize: none;
855
+ width: 100%;
856
+ }
857
+
858
+ .e-pivotview-mdx-dialog {
859
+ max-width: 500px !important;
860
+ }
861
+ /* stylelint-enable */
862
+
863
+ .e-report-outer {
864
+ display: inline-block;
865
+ width: 100%;
866
+ @if ($skin-name == 'FluentUI') {
867
+ padding-top: 1px;
868
+ }
869
+ }
870
+
871
+ .e-pivotview-report-label {
872
+ float: left;
873
+ margin-top: $pivotgrid-report-label-margin-top;
874
+ width: 40%;
875
+ @if ($skin-name == 'bootstrap5') {
876
+ padding-left: 12px;
877
+ }
878
+ }
879
+
880
+ /* stylelint-disable */
881
+ .e-pivotview-report-input {
882
+ float: right;
883
+ width: 60% !important;
884
+ }
885
+
886
+ #{if(&, "&", "*")}.e-rtl {
887
+ .e-pivotview-report-input {
888
+ float: left;
889
+ }
890
+
891
+ .e-pivotview-report-label {
892
+ float: right;
893
+ }
894
+ }
895
+
896
+
897
+ .e-pivotview-pdf-export,
898
+ .e-pivotview-excel-export,
899
+ .e-pivotview-csv-export,
900
+ .e-pivotview-png-export,
901
+ .e-pivotview-jpeg-export,
902
+ .e-pivotview-svg-export {
903
+ font-size: 18px !important;
904
+ }
905
+ /* stylelint-enable */
906
+
907
+ .e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul {
908
+ .e-dialog-multiple-axis .e-label,
909
+ .e-dialog-multiple-axis .e-label {
910
+ white-space: nowrap;
911
+ }
912
+ }
913
+
914
+ .e-drillthrough-dialog {
915
+ .e-drillthrough-body-header-container {
916
+ margin-bottom: 20px;
917
+
918
+ @if ($skin-name == 'bootstrap5') {
919
+ margin-bottom: 18px;
920
+ }
921
+ }
922
+
923
+ .e-drillthrough-body-header {
924
+ color: $pivotgrid-drillthrough-header-font-color;
925
+ font-weight: $pivotgrid-drillthrough-header-font-weight;
926
+ }
927
+
928
+ .e-drillthrough-body-header-value {
929
+ color: $pivotgrid-drillthrough-header-value-font-color;
930
+ margin-right: 20px;
931
+ }
932
+
933
+ /* stylelint-disable */
934
+ .e-drillthrough-body-header-common {
935
+ -webkit-flex-wrap: wrap;
936
+ -moz-flex-wrap: wrap;
937
+ -ms-flex-wrap: wrap;
938
+ display: inline-block;
939
+ flex-wrap: wrap;
940
+ }
941
+ /* stylelint-enable */
942
+ }
943
+
944
+ .e-bigger .e-pivotview,
945
+ .e-bigger.e-pivotview {
946
+ .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
947
+ @if ($skin-name != 'tailwind') and ($skin-name != 'bootstrap5') {
948
+ /* stylelint-disable */
949
+ height: $pivotgrid-bigger-menubar-height !important;
950
+ /* stylelint-enable */
951
+ }
952
+
953
+ .e-menu-icon {
954
+ @if ($skin-name == 'tailwind') {
955
+ line-height: 50px;
956
+ }
957
+ }
958
+
959
+ .e-caret {
960
+ @if ($skin-name == 'tailwind') {
961
+ line-height: 50px;
962
+ }
963
+ }
964
+ }
965
+
966
+ /* stylelint-disable */
967
+ .e-member-editor-dialog {
968
+ .e-editor-search-container {
969
+ .e-filter-sort {
970
+ .e-member-sort {
971
+ .e-sort-ascend-icon,
972
+ .e-sort-descend-icon {
973
+ font-size: 18px;
974
+ }
975
+ }
976
+ }
977
+
978
+ .e-level-drop {
979
+ .e-caret {
980
+ font-size: $pivotgrid-bigger-button-icon-size !important;
981
+ }
982
+ }
983
+ }
984
+
985
+ .e-member-editor-outer-container ul {
986
+ @if ($pivotgrid-skin == 'bootstrap4') {
987
+ margin-left: -30px !important;
988
+ }
989
+ }
990
+
991
+ &.e-rtl {
992
+ .e-member-editor-outer-container ul {
993
+ @if ($pivotgrid-skin == 'bootstrap4') {
994
+ margin-right: -30px !important;
995
+ }
996
+ }
997
+ }
998
+
999
+ .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
1000
+ height: $pivotgrid-member-filter-list-bigger-height;
1001
+ }
1002
+ }
1003
+
1004
+ .e-member-editor-dialog {
1005
+ .e-filter-tab-container {
1006
+ .e-tab-header {
1007
+ .e-toolbar-item .e-icon-left + .e-tab-text {
1008
+ margin: 0 0 0 6px;
1009
+ }
1010
+ }
1011
+
1012
+ &.e-rtl {
1013
+ .e-tab-header {
1014
+ .e-toolbar-item .e-icon-left + .e-tab-text {
1015
+ margin: 0 6px 0 0;
1016
+ }
1017
+ }
1018
+ }
1019
+ }
1020
+
1021
+ &.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div {
1022
+ height: $pivotgrid-excelfilter-member-editor-node-limit-height !important;
1023
+ }
1024
+
1025
+ .e-excelfilter {
1026
+ .e-member-editor-container-outer-div {
1027
+ height: $pivotgrid-excel-member-filter-bigger-height !important;
1028
+ }
1029
+ @if ($skin-name == 'tailwind') {
1030
+ padding-top: 16px;
1031
+ }
1032
+ }
1033
+
1034
+ .e-label-filter,
1035
+ .e-value-filter {
1036
+ height: $pivotgrid-excel-filter-bigger-height;
1037
+
1038
+ .e-filter-text-div {
1039
+ font-size: 14px;
1040
+ }
1041
+
1042
+ .e-filter-option-container-1,
1043
+ .e-filter-option-container-2,
1044
+ .e-separator-div {
1045
+ padding-top: 24px;
1046
+ }
1047
+
1048
+ .e-between-text-div {
1049
+ padding: 10px 0;
1050
+ }
1051
+ }
1052
+
1053
+ &.e-excel-filter {
1054
+ min-width: $pivotgrid-bigger-excel-dialog-min-width !important;
1055
+ min-height: $pivotgrid-member-editor-bigger-height !important;
1056
+
1057
+ &.e-node-limit {
1058
+ min-height: $pivotgrid-member-editor-node-limit-bigger-height !important;
1059
+ }
1060
+ }
1061
+ }
1062
+
1063
+ .e-member-editor-dialog,
1064
+ .e-value-field-settings,
1065
+ .e-pivot-format-dialog {
1066
+ .e-dlg-header-content {
1067
+ .e-clear-filter-button.e-small {
1068
+ font-size: 14px;
1069
+ top: 0;
1070
+ }
1071
+ }
1072
+ }
1073
+
1074
+ .e-value-field-settings {
1075
+ max-height: 510px !important;
1076
+
1077
+ .e-dlg-content {
1078
+ padding: 0;
1079
+ }
1080
+ }
1081
+ /* stylelint-enable */
1082
+
1083
+ .e-pivot-format-dialog {
1084
+ .e-pivot-format-dialog-outer {
1085
+ padding: 0 20px 10px;
1086
+ }
1087
+ }
1088
+
1089
+ .e-group-field-settings {
1090
+ .e-caption-option-text,
1091
+ .e-checkbox-wrapper .e-label {
1092
+ font-size: 14px;
1093
+ }
1094
+
1095
+ .e-group-input-container,
1096
+ .e-group-end-option-container,
1097
+ .e-group-interval-option-container {
1098
+ padding-top: 24px;
1099
+ }
1100
+
1101
+ .e-caption-input-text,
1102
+ .e-input-option-text,
1103
+ .e-checkbox-wrapper .e-label,
1104
+ .e-group-inerval-option-text {
1105
+ font-size: 14px;
1106
+ }
1107
+
1108
+ .e-group-start-option-container .e-checkbox-wrapper {
1109
+ padding-top: $pivotgrid-grouping-bigger-padding-top;
1110
+ }
1111
+ }
1112
+
1113
+ .e-value-field-settings {
1114
+ .e-field-name-text-container {
1115
+ display: flex;
1116
+ }
1117
+
1118
+ .e-field-name-title,
1119
+ .e-field-name-content {
1120
+ font-size: 14px;
1121
+ // font-size: 13px;
1122
+ font-weight: 500;
1123
+ }
1124
+
1125
+ .e-caption-input-container,
1126
+ .e-type-option-container,
1127
+ .e-base-field-option-container,
1128
+ .e-base-item-option-container {
1129
+ padding-top: 24px;
1130
+ }
1131
+
1132
+ .e-base-field-option-text,
1133
+ .e-base-item-option-text,
1134
+ .e-type-option-text {
1135
+ font-size: 14px;
1136
+ }
1137
+ }
1138
+
1139
+ /* stylelint-disable */
1140
+ .e-value-field-settings,
1141
+ .e-group-field-settings {
1142
+ .e-value-field-div-content,
1143
+ .e-group-field-div-content {
1144
+ padding: 0 $pivotgrid-editor-search-padding-size 10px;
1145
+ }
1146
+ }
1147
+ /* stylelint-enable */
1148
+ }
1149
+
1150
+ .e-bigger .e-pivotview-report-dialog,
1151
+ .e-bigger.e-pivotview-report-dialog {
1152
+ .e-pivotview-report-label {
1153
+ margin-top: $pivotgrid-bigger-report-label-margin-top;
1154
+ }
1155
+ }
1156
+ }