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

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