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

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