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

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