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

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