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

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 (210) 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 +62 -0
  7. package/esm2020/src/pivotview/pivotview.component.mjs +150 -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 +337 -0
  11. package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  12. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
  13. package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
  14. package/package.json +26 -12
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
  17. package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
  18. package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
  19. package/src/pivotview/pivotview-all.module.d.ts +6 -0
  20. package/src/pivotview/pivotview.component.d.ts +3 -0
  21. package/src/pivotview/pivotview.module.d.ts +6 -0
  22. package/styles/bootstrap-dark.css +212 -1
  23. package/styles/bootstrap.css +212 -1
  24. package/styles/bootstrap4.css +208 -2
  25. package/styles/bootstrap5-dark.css +214 -1
  26. package/styles/bootstrap5.css +214 -1
  27. package/styles/fabric-dark.css +212 -1
  28. package/styles/fabric.css +212 -1
  29. package/styles/fluent-dark.css +214 -1
  30. package/styles/fluent.css +214 -1
  31. package/styles/highcontrast-light.css +212 -1
  32. package/styles/highcontrast.css +212 -1
  33. package/styles/material-dark.css +212 -1
  34. package/styles/material.css +212 -1
  35. package/styles/pivotfieldlist/_all.scss +2 -0
  36. package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
  37. package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
  38. package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
  39. package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
  40. package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
  41. package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
  42. package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
  43. package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
  44. package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
  45. package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
  46. package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
  47. package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
  48. package/styles/pivotfieldlist/_layout.scss +1848 -0
  49. package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
  50. package/styles/pivotfieldlist/_material-definition.scss +187 -0
  51. package/styles/pivotfieldlist/_material3-definition.scss +190 -0
  52. package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
  53. package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
  54. package/styles/pivotfieldlist/_theme.scss +1857 -0
  55. package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
  56. package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
  57. package/styles/pivotfieldlist/bootstrap.css +130 -1
  58. package/styles/pivotfieldlist/bootstrap.scss +4 -1
  59. package/styles/pivotfieldlist/bootstrap4.css +125 -1
  60. package/styles/pivotfieldlist/bootstrap4.scss +4 -1
  61. package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
  62. package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
  63. package/styles/pivotfieldlist/bootstrap5.css +134 -1
  64. package/styles/pivotfieldlist/bootstrap5.scss +4 -1
  65. package/styles/pivotfieldlist/fabric-dark.css +130 -1
  66. package/styles/pivotfieldlist/fabric-dark.scss +4 -1
  67. package/styles/pivotfieldlist/fabric.css +130 -1
  68. package/styles/pivotfieldlist/fabric.scss +4 -1
  69. package/styles/pivotfieldlist/fluent-dark.css +132 -1
  70. package/styles/pivotfieldlist/fluent-dark.scss +4 -1
  71. package/styles/pivotfieldlist/fluent.css +132 -1
  72. package/styles/pivotfieldlist/fluent.scss +4 -1
  73. package/styles/pivotfieldlist/highcontrast-light.css +130 -1
  74. package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
  75. package/styles/pivotfieldlist/highcontrast.css +130 -1
  76. package/styles/pivotfieldlist/highcontrast.scss +4 -1
  77. package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
  78. package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
  79. package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
  80. package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
  81. package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
  82. package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
  83. package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
  84. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  85. package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
  86. package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
  87. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
  88. package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
  89. package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
  90. package/styles/pivotfieldlist/icons/_material.scss +358 -0
  91. package/styles/pivotfieldlist/icons/_material3.scss +353 -0
  92. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
  93. package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
  94. package/styles/pivotfieldlist/material-dark.css +130 -1
  95. package/styles/pivotfieldlist/material-dark.scss +4 -1
  96. package/styles/pivotfieldlist/material.css +130 -1
  97. package/styles/pivotfieldlist/material.scss +4 -1
  98. package/styles/pivotfieldlist/tailwind-dark.css +132 -1
  99. package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
  100. package/styles/pivotfieldlist/tailwind.css +132 -1
  101. package/styles/pivotfieldlist/tailwind.scss +4 -1
  102. package/styles/pivotview/_all.scss +2 -0
  103. package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
  104. package/styles/pivotview/_bootstrap-definition.scss +128 -0
  105. package/styles/pivotview/_bootstrap4-definition.scss +128 -0
  106. package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
  107. package/styles/pivotview/_bootstrap5-definition.scss +133 -0
  108. package/styles/pivotview/_fabric-dark-definition.scss +130 -0
  109. package/styles/pivotview/_fabric-definition.scss +127 -0
  110. package/styles/pivotview/_fluent-dark-definition.scss +1 -0
  111. package/styles/pivotview/_fluent-definition.scss +133 -0
  112. package/styles/pivotview/_fusionnew-definition.scss +133 -0
  113. package/styles/pivotview/_highcontrast-definition.scss +126 -0
  114. package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
  115. package/styles/pivotview/_layout.scss +1072 -0
  116. package/styles/pivotview/_material-dark-definition.scss +134 -0
  117. package/styles/pivotview/_material-definition.scss +130 -0
  118. package/styles/pivotview/_material3-definition.scss +133 -0
  119. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  120. package/styles/pivotview/_tailwind-definition.scss +133 -0
  121. package/styles/pivotview/_theme.scss +1581 -0
  122. package/styles/pivotview/bootstrap-dark.css +82 -0
  123. package/styles/pivotview/bootstrap-dark.scss +5 -1
  124. package/styles/pivotview/bootstrap.css +82 -0
  125. package/styles/pivotview/bootstrap.scss +5 -1
  126. package/styles/pivotview/bootstrap4.css +83 -1
  127. package/styles/pivotview/bootstrap4.scss +5 -1
  128. package/styles/pivotview/bootstrap5-dark.css +80 -0
  129. package/styles/pivotview/bootstrap5-dark.scss +4 -1
  130. package/styles/pivotview/bootstrap5.css +80 -0
  131. package/styles/pivotview/bootstrap5.scss +5 -1
  132. package/styles/pivotview/fabric-dark.css +82 -0
  133. package/styles/pivotview/fabric-dark.scss +5 -1
  134. package/styles/pivotview/fabric.css +82 -0
  135. package/styles/pivotview/fabric.scss +5 -1
  136. package/styles/pivotview/fluent-dark.css +82 -0
  137. package/styles/pivotview/fluent-dark.scss +4 -1
  138. package/styles/pivotview/fluent.css +82 -0
  139. package/styles/pivotview/fluent.scss +5 -1
  140. package/styles/pivotview/highcontrast-light.css +82 -0
  141. package/styles/pivotview/highcontrast-light.scss +5 -1
  142. package/styles/pivotview/highcontrast.css +82 -0
  143. package/styles/pivotview/highcontrast.scss +5 -1
  144. package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
  145. package/styles/pivotview/icons/_bootstrap.scss +184 -0
  146. package/styles/pivotview/icons/_bootstrap4.scss +184 -0
  147. package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
  148. package/styles/pivotview/icons/_bootstrap5.scss +183 -0
  149. package/styles/pivotview/icons/_fabric-dark.scss +184 -0
  150. package/styles/pivotview/icons/_fabric.scss +184 -0
  151. package/styles/pivotview/icons/_fluent-dark.scss +1 -0
  152. package/styles/pivotview/icons/_fluent.scss +183 -0
  153. package/styles/pivotview/icons/_fusionnew.scss +183 -0
  154. package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
  155. package/styles/pivotview/icons/_highcontrast.scss +183 -0
  156. package/styles/pivotview/icons/_material-dark.scss +184 -0
  157. package/styles/pivotview/icons/_material.scss +184 -0
  158. package/styles/pivotview/icons/_material3.scss +183 -0
  159. package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
  160. package/styles/pivotview/icons/_tailwind.scss +183 -0
  161. package/styles/pivotview/material-dark.css +82 -0
  162. package/styles/pivotview/material-dark.scss +5 -1
  163. package/styles/pivotview/material.css +82 -0
  164. package/styles/pivotview/material.scss +5 -1
  165. package/styles/pivotview/tailwind-dark.css +80 -0
  166. package/styles/pivotview/tailwind-dark.scss +4 -1
  167. package/styles/pivotview/tailwind.css +80 -0
  168. package/styles/pivotview/tailwind.scss +5 -1
  169. package/styles/tailwind-dark.css +212 -1
  170. package/styles/tailwind.css +212 -1
  171. package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
  172. package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
  173. package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
  174. package/@syncfusion/ej2-angular-pivotview.js +0 -395
  175. package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
  176. package/CHANGELOG.md +0 -704
  177. package/dist/ej2-angular-pivotview.umd.js +0 -667
  178. package/dist/ej2-angular-pivotview.umd.js.map +0 -1
  179. package/dist/ej2-angular-pivotview.umd.min.js +0 -11
  180. package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
  181. package/ej2-angular-pivotview.d.ts +0 -6
  182. package/ej2-angular-pivotview.metadata.json +0 -1
  183. package/postinstall/tagchange.js +0 -18
  184. package/schematics/collection.json +0 -20
  185. package/schematics/generators/pivotview-default/index.d.ts +0 -3
  186. package/schematics/generators/pivotview-default/index.js +0 -8
  187. package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
  188. package/schematics/generators/pivotview-default/sample-details.js +0 -7
  189. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  190. package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  191. package/schematics/generators/pivotview-default/schema.d.ts +0 -3
  192. package/schematics/generators/pivotview-default/schema.js +0 -2
  193. package/schematics/generators/pivotview-default/schema.json +0 -125
  194. package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
  195. package/schematics/generators/pivotview-fieldlist/index.js +0 -8
  196. package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
  197. package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
  198. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
  199. package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
  200. package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
  201. package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
  202. package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
  203. package/schematics/ng-add/index.d.ts +0 -3
  204. package/schematics/ng-add/index.js +0 -9
  205. package/schematics/ng-add/schema.d.ts +0 -13
  206. package/schematics/ng-add/schema.js +0 -2
  207. package/schematics/ng-add/schema.json +0 -34
  208. package/schematics/tsconfig.json +0 -25
  209. package/schematics/utils/lib-details.d.ts +0 -4
  210. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,1581 @@
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
+ float: right;
172
+ margin: $pivotgrid-vsort-mouse-margin !important;
173
+ @if ($pivotgrid-skin == 'bootstrap4') {
174
+ font-size: 10px !important;
175
+ padding: 15px;
176
+ }
177
+ @if ($skin-name == 'bootstrap5') {
178
+ font-size: 12px !important;
179
+ padding: 15px;
180
+ }
181
+ @if ($skin-name == 'FluentUI') {
182
+ font-size: 14px !important;
183
+ }
184
+
185
+ &.e-value-sort-icon {
186
+ font-size: $pivotgrid-value-sort-icon-font-size !important;
187
+ @if ($skin-name == 'tailwind') {
188
+ padding-top: 14px !important;
189
+ }
190
+ @if ($skin-name == 'bootstrap5') {
191
+ padding-right: 5px !important;
192
+ }
193
+ }
194
+ }
195
+
196
+ .e-rowsheader .e-sortfilterdiv {
197
+ margin: -10px 0 !important;
198
+ }
199
+
200
+ .e-rowsheader .e-sortfilterdiv.e-value-sort-align {
201
+ margin: $pivotgrid-vsort-row-margin !important;
202
+ }
203
+
204
+ .e-pivotchart > svg, .e-pivotchart-inner > svg {
205
+ border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
206
+ }
207
+
208
+ .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
209
+ .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
210
+ margin: $pivotgrid-vsort-mouse-wrap-margin !important;
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: inline;
313
+ }
314
+
315
+ .e-stackedheadertext.e-cellvalue,
316
+ .e-stackedheadercelldiv.e-cellvalue {
317
+ display: inline;
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
+ @if ($pivotgrid-skin == 'bootstrap4') {
782
+ background-color: $pivotgrid-border-color;
783
+ border-color: $pivotgrid-active-border-color;
784
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
785
+ }
786
+
787
+ .e-sort,
788
+ .e-dropdown-icon,
789
+ .e-pv-filter,
790
+ .e-pv-filtered,
791
+ .e-remove,
792
+ .e-edit {
793
+ color: $pivotgrid-icon-focus-color !important;
794
+ }
795
+ }
796
+
797
+ &:focus,
798
+ &:active {
799
+ background-color: $pivotgrid-focus-color;
800
+ color: $pivotgrid-button-acitve-font-color;
801
+ @if ($pivotgrid-skin == 'bootstrap4') {
802
+ background-color: $pivotgrid-border-color;
803
+ border-color: $pivotgrid-active-border-color;
804
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
805
+ }
806
+
807
+ .e-sort,
808
+ .e-dropdown-icon,
809
+ .e-pv-filter,
810
+ .e-pv-filtered,
811
+ .e-remove,
812
+ .e-edit {
813
+ color: $pivotgrid-icon-focus-color !important;
814
+ }
815
+ }
816
+
817
+ .e-sort,
818
+ .e-dropdown-icon,
819
+ .e-pv-filter,
820
+ .e-pv-filtered,
821
+ .e-remove,
822
+ .e-edit {
823
+ color: $pivotgrid-button-icon-color !important;
824
+ font-size: $pivotgrid-button-icon-size;
825
+ height: $pivotgrid-button-icon-wrapper-size;
826
+ margin-left: 4px !important;
827
+ width: $pivotgrid-button-icon-wrapper-size;
828
+ padding-top: 2px;
829
+
830
+ &:hover {
831
+ color: $pivotgrid-icon-hover-color;
832
+ }
833
+
834
+ &.e-disable {
835
+ display: none;
836
+ }
837
+ }
838
+
839
+ .e-sort {
840
+ height: $pivotgrid-button-icon-size;
841
+ width: 18px;
842
+
843
+ &.e-descend {
844
+ margin-top: 3px;
845
+ transform: rotateX(180deg);
846
+ }
847
+ }
848
+
849
+ .e-dropdown-icon {
850
+ margin-top: 1px;
851
+ }
852
+ }
853
+ }
854
+ }
855
+ }
856
+
857
+ /* stylelint-enable */
858
+
859
+ .e-axis-value {
860
+ display: inline-block;
861
+ height: 100%;
862
+
863
+ .e-group-values {
864
+ height: 100%;
865
+ padding-bottom: 0;
866
+ }
867
+
868
+ .e-group-chart-values {
869
+ display: inline-block;
870
+ height: 28px;
871
+ }
872
+
873
+ .e-group-chart-values-drodown {
874
+ font-size: 13px;
875
+ height: 25px;
876
+ }
877
+ }
878
+
879
+ .e-axis-column .e-group-chart-columns-dropdown {
880
+ font-size: 13px;
881
+ height: 25px;
882
+ margin: $pivotgrid-group-chart-values-dropdown-margin;
883
+
884
+ .e-input-group-icon {
885
+ min-height: initial;
886
+ }
887
+
888
+ input.e-input {
889
+ padding-bottom: 7px;
890
+ }
891
+ }
892
+
893
+ /* stylelint-disable */
894
+ .e-chart-grouping-bar .e-axis-value {
895
+ height: auto !important;
896
+ padding-left: 6px;
897
+ border-bottom: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
898
+
899
+ .e-group-chart-multi-values {
900
+ padding-left: 2px;
901
+ }
902
+
903
+ .e-group-chart-values-drodown {
904
+ margin: $pivotgrid-group-chart-values-dropdown-margin;
905
+
906
+ .e-input-group-icon {
907
+ min-height: initial;
908
+ }
909
+
910
+ input.e-input {
911
+ padding-bottom: 7px;
912
+ }
913
+ }
914
+ }
915
+ /* stylelint-enable */
916
+
917
+ .e-icons:not(.e-frame):not(.e-btn-icon):not(.e-sort):not(.e-dropdown-icon):not(.e-pv-filter):not(.e-pv-filtered):not(.e-remove):not(.e-edit):not(.e-drag) {
918
+ height: auto;
919
+ width: auto;
920
+ }
921
+
922
+ .e-collapse::before {
923
+ font-size: $pivotgrid-collapse-icon-fonsize;
924
+ }
925
+
926
+ .e-expand,
927
+ .e-collapse {
928
+ cursor: pointer;
929
+ display: inline;
930
+ height: 18px;
931
+ margin-top: 5px;
932
+ text-align: center;
933
+ width: 18px;
934
+
935
+ @if ($pivotgrid-skin == 'highcontrast') {
936
+ margin-top: 0;
937
+ }
938
+
939
+ @if ($pivotgrid-skin == 'highcontrast-light') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
940
+ margin-top: 0;
941
+ }
942
+
943
+ @if ($skin-name == 'tailwind') {
944
+ margin-top: 0;
945
+ vertical-align: middle;
946
+ }
947
+
948
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
949
+ margin-bottom: 2px;
950
+ vertical-align: middle;
951
+ }
952
+ }
953
+
954
+ /* stylelint-disable */
955
+ th .e-expand,
956
+ th .e-collapse {
957
+ font-size: $pivotgrid-expcoldiv-fontsize !important;
958
+ margin-left: 0px;
959
+ margin-top: $pivotgrid-drill-margintop;
960
+ }
961
+
962
+ /* stylelint-enable */
963
+
964
+ .e-expand::before {
965
+ font-size: $pivotgrid-expand-icon-fontsize;
966
+ }
967
+
968
+ &.e-rtl {
969
+
970
+ .e-expand::before,
971
+ .e-collapse::before {
972
+ margin-left: 0;
973
+ }
974
+
975
+ /* stylelint-disable */
976
+ .e-grid .e-rowsheader {
977
+ padding-right: 8px !important;
978
+ }
979
+
980
+ .e-grid .e-columnsheader {
981
+ padding-right: 8px !important;
982
+ }
983
+
984
+ .e-grid .e-headercelldiv,
985
+ .e-grid .e-columnsheader {
986
+ padding-left: $pivotview-value-sort-rtl-padding !important;
987
+ padding-right: 8px !important;
988
+ }
989
+
990
+ .e-frozenheader>.e-table,
991
+ .e-frozencontent>.e-table {
992
+ border-left-width: 1px;
993
+ border-right: 0;
994
+ }
995
+
996
+ /* stylelint-enable */
997
+
998
+ .e-rowsheader .e-cellvalue {
999
+ margin-left: 0;
1000
+ margin-right: 7px;
1001
+ }
1002
+
1003
+ .e-valuescontent {
1004
+ text-align: left;
1005
+ }
1006
+
1007
+ .e-group-values,
1008
+ .e-group-columns,
1009
+ .e-group-filters,
1010
+ .e-group-all-fields {
1011
+ padding-left: 0;
1012
+ padding-right: $pivotview-axis-indent-padding;
1013
+ }
1014
+
1015
+ .e-group-rows,
1016
+ .e-grouping-bar {
1017
+
1018
+ .e-pvt-btn-div {
1019
+ padding-left: $pivotgrid-horizontal-button-padding;
1020
+ padding-right: 0;
1021
+
1022
+ .e-pivot-button {
1023
+ .e-content {
1024
+ margin-left: 4px;
1025
+ text-align: right;
1026
+ }
1027
+
1028
+ .e-sort,
1029
+ .e-dropdown-icon,
1030
+ .e-pv-filter,
1031
+ .e-pv-filtered,
1032
+ .e-remove,
1033
+ .e-edit {
1034
+ padding-left: 0;
1035
+ padding-right: 4px;
1036
+ }
1037
+ }
1038
+ }
1039
+ }
1040
+
1041
+ .e-grouping-bar {
1042
+ .e-left-axis-fields {
1043
+ border-left-width: 0;
1044
+ border-right-width: $pivotgrid-border-size;
1045
+ }
1046
+
1047
+ .e-right-axis-fields {
1048
+ border-left-width: $pivotgrid-border-size;
1049
+ }
1050
+ }
1051
+
1052
+ .e-group-row {
1053
+ .e-group-rows {
1054
+ padding-left: 0;
1055
+ padding-right: $pivotview-axis-indent-padding;
1056
+
1057
+ .e-pvt-btn-div {
1058
+ /* stylelint-disable */
1059
+ padding-left: $pivotgrid-horizontal-button-padding;
1060
+ padding-right: 0;
1061
+
1062
+ .e-pivot-button {
1063
+ .e-content {
1064
+ margin-left: 4px;
1065
+ margin-right: 0;
1066
+ text-align: right;
1067
+ }
1068
+
1069
+ .e-sort,
1070
+ .e-dropdown-icon,
1071
+ .e-pv-filter,
1072
+ .e-pv-filtered,
1073
+ .e-remove,
1074
+ .e-edit {
1075
+ padding-left: 0;
1076
+ padding-right: 7px;
1077
+ }
1078
+ }
1079
+
1080
+ /* stylelint-enable */
1081
+ }
1082
+ }
1083
+ }
1084
+
1085
+ /* stylelint-disable */
1086
+ .e-stackedheadertext.e-cellvalue,
1087
+ .e-stackedheadercelldiv.e-cellvalue {
1088
+ padding-right: 12px !important;
1089
+ }
1090
+
1091
+ .e-sortfilterdiv {
1092
+ float: left;
1093
+ }
1094
+ /* stylelint-enable */
1095
+ }
1096
+
1097
+ &.e-device {
1098
+ .e-grouping-bar {
1099
+
1100
+ /* stylelint-disable */
1101
+ .e-pivot-button {
1102
+ line-height: 1em !important;
1103
+
1104
+ .e-dropdown-icon,
1105
+ .e-pv-filtered,
1106
+ .e-remove,
1107
+ .e-sort {
1108
+ margin-top: 2px !important;
1109
+ }
1110
+ }
1111
+
1112
+ .e-group-all-fields {
1113
+ .e-pvt-btn-div {
1114
+ .e-pivot-button {
1115
+ max-width: 155px;
1116
+ @if ($pivotgrid-skin == 'bootstrap4') {
1117
+ padding: 3px 10px;
1118
+ }
1119
+ }
1120
+ }
1121
+ }
1122
+
1123
+ .e-group-filters,
1124
+ .e-group-values {
1125
+ .e-pvt-btn-div {
1126
+ .e-pivot-button {
1127
+ max-width: 155px;
1128
+ @if ($pivotgrid-skin == 'bootstrap4') {
1129
+ padding: 3px 10px;
1130
+ }
1131
+
1132
+ .e-sort,
1133
+ .e-dropdown-icon,
1134
+ .e-pv-filter,
1135
+ .e-pv-filtered,
1136
+ .e-remove,
1137
+ .e-edit {
1138
+ @if ($pivotgrid-skin == 'bootstrap4') {
1139
+ margin-top: 2px;
1140
+ }
1141
+ }
1142
+ }
1143
+ }
1144
+ }
1145
+
1146
+ .e-group-columns {
1147
+ .e-pvt-btn-div {
1148
+ .e-pivot-button {
1149
+ max-width: 200px;
1150
+ @if ($pivotgrid-skin == 'bootstrap4') {
1151
+ padding: 3px 10px;
1152
+ }
1153
+
1154
+ .e-sort,
1155
+ .e-dropdown-icon,
1156
+ .e-pv-filter,
1157
+ .e-pv-filtered,
1158
+ .e-remove,
1159
+ .e-edit {
1160
+ @if ($pivotgrid-skin == 'bootstrap4') {
1161
+ margin-top: 2px;
1162
+ }
1163
+ }
1164
+ }
1165
+ }
1166
+ }
1167
+ }
1168
+
1169
+ .e-drillthrough-dialog {
1170
+ width: 100% !important;
1171
+ }
1172
+
1173
+ .e-group-row {
1174
+ .e-group-rows {
1175
+ .e-pvt-btn-div {
1176
+ .e-indent-div {
1177
+ width: 0 !important;
1178
+ }
1179
+
1180
+ .e-pivot-button {
1181
+ width: 155px;
1182
+ @if ($pivotgrid-skin == 'bootstrap4') {
1183
+ padding: 4px 8px;
1184
+ }
1185
+
1186
+ .e-sort,
1187
+ .e-dropdown-icon,
1188
+ .e-pv-filter,
1189
+ .e-pv-filtered,
1190
+ .e-remove,
1191
+ .e-edit {
1192
+ @if ($pivotgrid-skin == 'bootstrap4') {
1193
+ margin-top: 1px;
1194
+ }
1195
+ }
1196
+ }
1197
+ }
1198
+ }
1199
+ }
1200
+ }
1201
+
1202
+ .e-component-disable {
1203
+ display: none !important;
1204
+ }
1205
+ /* stylelint-enable */
1206
+ }
1207
+
1208
+ .e-pivottooltipwrap,
1209
+ .e-pivottooltip-container {
1210
+ opacity: 1;
1211
+ }
1212
+
1213
+ .e-drillthrough-dialog {
1214
+ visibility: hidden;
1215
+ }
1216
+
1217
+ .e-pivottooltip {
1218
+ border-radius: $pivotgrid-default-border-radius;
1219
+ padding: $pivotgrid-tooltip-padding;
1220
+ }
1221
+
1222
+ .e-pivottooltip p {
1223
+ color: $pivotgrid-tooltip-fontcolor;
1224
+ display: inline-block;
1225
+ font-family: $pivotgrid-tooltip-fontfamily;
1226
+ font-size: $pivotgrid-tooltip-fontsize;
1227
+ line-height: 21px;
1228
+ margin: 0;
1229
+ }
1230
+
1231
+ .e-pivottooltip p.e-tooltipcontent {
1232
+ margin-left: 5px;
1233
+ }
1234
+
1235
+ .e-pivottooltiptemplate.e-tooltip-wrap {
1236
+ border: medium none transparent;
1237
+ max-width: none;
1238
+ min-width: 0;
1239
+ opacity: 1;
1240
+ }
1241
+
1242
+ .e-pivottooltiptemplate .e-tip-content {
1243
+ overflow-x: visible;
1244
+ padding: unset;
1245
+ word-break: normal;
1246
+ }
1247
+
1248
+ .e-rtl .e-pivottooltip p.e-tooltipcontent {
1249
+ margin-left: 0;
1250
+ margin-right: 5px;
1251
+ }
1252
+
1253
+ .e-bigger .e-pivotview,
1254
+ .e-bigger.e-pivotview {
1255
+
1256
+ .e-chart-grouping-bar .e-axis-value {
1257
+ .e-group-chart-values-drodown {
1258
+ margin: $pivotgrid-group-chart-values-dropdown-margin-bigger;
1259
+
1260
+ .e-input-group-icon {
1261
+ min-height: initial;
1262
+ }
1263
+
1264
+ input.e-input {
1265
+ padding-bottom: 10px;
1266
+ padding-top: 0;
1267
+ }
1268
+ }
1269
+ }
1270
+
1271
+ .e-chart-grouping-bar .e-axis-column {
1272
+ .e-group-chart-columns-dropdown {
1273
+ margin: $pivotgrid-group-chart-values-dropdown-margin-bigger;
1274
+
1275
+ .e-input-group-icon {
1276
+ min-height: initial;
1277
+ }
1278
+
1279
+ input.e-input {
1280
+ padding-bottom: 10px;
1281
+ padding-top: 0;
1282
+ }
1283
+ }
1284
+ }
1285
+
1286
+ /* stylelint-disable */
1287
+ .e-grid .e-rowsheader {
1288
+ padding-left: 8px !important;
1289
+ @if ($skin-name == 'tailwind') {
1290
+ padding-left: 16px !important;
1291
+ padding-right: 12px !important;
1292
+ }
1293
+ }
1294
+
1295
+ .e-grid .e-headercelldiv {
1296
+ padding-left: 8px !important;
1297
+ }
1298
+
1299
+ .e-grid .e-columnsheader {
1300
+ padding-left: 8px !important;
1301
+ }
1302
+
1303
+ .e-grid .e-gridheader .e-headercell .e-rhandler {
1304
+ height: 100% !important;
1305
+ }
1306
+
1307
+ .e-stackedheadercelldiv,
1308
+ .e-stackedheadertext,
1309
+ .e-headertext,
1310
+ .e-rowsheader .e-cellvalue {
1311
+ font-size: $pivotview-bigger-grid-header-font-size !important;
1312
+ @if ($pivotgrid-skin == 'bootstrap4') {
1313
+ font-size: $pivotview-bigger-grid-header-font-size !important;
1314
+ }
1315
+ }
1316
+ .e-bigger .e-stackedheadercelldiv
1317
+ {
1318
+ padding-left: 16px !important;
1319
+ }
1320
+
1321
+ th .e-expand,
1322
+ th .e-collapse {
1323
+ margin-top: $pivotgrid-bigger-drill-margintop;
1324
+ }
1325
+
1326
+ .e-grouping-bar {
1327
+ .e-all-fields-axis {
1328
+ height: 36px !important;
1329
+ min-height: 36px !important;
1330
+
1331
+ .e-hscroll .e-scroll-nav,
1332
+ .e-toolbar-items,
1333
+ .e-toolbar-item {
1334
+ min-height: 36px !important;
1335
+ }
1336
+ }
1337
+ /* stylelint-enable */
1338
+
1339
+ .e-pvt-btn-div {
1340
+ height: 30px;
1341
+
1342
+ .e-pivot-button {
1343
+ height: 30px;
1344
+ line-height: $pivotgrid-bigger-button-line-height;
1345
+ padding: $pivotgrid-bigger-button-inner-padding 12px;
1346
+
1347
+ .e-content {
1348
+ font-size: $pivotgrid-bigger-button-font-size;
1349
+ margin-right: 8px;
1350
+ @if ($pivotgrid-skin == 'bootstrap4') {
1351
+ margin-right: 0;
1352
+ }
1353
+ }
1354
+
1355
+ .e-sort,
1356
+ .e-dropdown-icon,
1357
+ .e-pv-filter,
1358
+ .e-pv-filtered,
1359
+ .e-remove,
1360
+ .e-edit {
1361
+ /* stylelint-disable */
1362
+ font-size: $pivotgrid-bigger-button-icon-size !important;
1363
+ height: $pivotgrid-bigger-button-icon-wrapper-size;
1364
+ margin-top: $pivotgrid-bigger-button-icon-touch-margin-size;
1365
+ width: $pivotgrid-bigger-button-icon-wrapper-size;
1366
+ @if ($pivotgrid-skin == 'bootstrap4') {
1367
+ padding-left: 12px;
1368
+ }
1369
+ }
1370
+
1371
+ .e-sort {
1372
+ height: $pivotgrid-bigger-button-icon-size;
1373
+ }
1374
+
1375
+ .e-dropdown-icon {
1376
+ margin-top: 1px;
1377
+ }
1378
+ }
1379
+ }
1380
+
1381
+ .e-group-filters,
1382
+ .e-group-values,
1383
+ .e-group-columns,
1384
+ .e-group-rows,
1385
+ .e-group-all-fields {
1386
+ height: 36px;
1387
+ min-height: 36px;
1388
+ padding-left: $pivotview-axis-bigger-indent-padding;
1389
+
1390
+ .e-pvt-btn-div .e-pivot-button.e-btn {
1391
+ @if ($pivotgrid-skin == 'bootstrap4') {
1392
+ padding: 7px 10px;
1393
+ }
1394
+ }
1395
+
1396
+ .e-draggable-prompt {
1397
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
1398
+ font-size: $pivotgrid-bigger-content-font-size;
1399
+ }
1400
+
1401
+ @if ($pivotgrid-skin == 'bootstrap4') {
1402
+ font-size: 16px;
1403
+ }
1404
+ }
1405
+ }
1406
+
1407
+ .e-group-values {
1408
+ height: 100%;
1409
+ }
1410
+
1411
+ .e-left-axis-fields,
1412
+ .e-right-axis-fields {
1413
+ .e-axis-nav-div {
1414
+
1415
+ .e-left-nav-container,
1416
+ .e-right-nav-container {
1417
+ width: 24px;
1418
+ }
1419
+ }
1420
+ }
1421
+ }
1422
+
1423
+ .e-group-rows {
1424
+ padding-left: $pivotview-axis-bigger-indent-padding;
1425
+
1426
+ .e-pvt-btn-div {
1427
+ height: 30px;
1428
+
1429
+ .e-pivot-button {
1430
+ height: 30px;
1431
+ line-height: $pivotgrid-bigger-button-line-height;
1432
+ padding: $pivotgrid-bigger-button-inner-padding 12px;
1433
+ @if ($pivotgrid-skin == 'bootstrap4') {
1434
+ padding: 7px 10px;
1435
+ }
1436
+
1437
+ .e-content {
1438
+ font-size: $pivotgrid-bigger-button-font-size;
1439
+ margin-right: 8px;
1440
+ @if ($pivotgrid-skin == 'bootstrap4') {
1441
+ margin-right: 0;
1442
+ }
1443
+ }
1444
+
1445
+ .e-sort,
1446
+ .e-dropdown-icon,
1447
+ .e-pv-filter,
1448
+ .e-pv-filtered,
1449
+ .e-remove,
1450
+ .e-edit {
1451
+ font-size: $pivotgrid-bigger-button-icon-size !important;
1452
+ height: $pivotgrid-bigger-button-icon-wrapper-size;
1453
+ width: $pivotgrid-bigger-button-icon-wrapper-size;
1454
+ @if ($pivotgrid-skin == 'bootstrap4') {
1455
+ padding-left: 12px;
1456
+ }
1457
+ }
1458
+
1459
+ .e-sort {
1460
+ height: $pivotgrid-bigger-button-icon-size;
1461
+ }
1462
+
1463
+ .e-dropdown-icon {
1464
+ margin-top: 1px;
1465
+ }
1466
+ }
1467
+ }
1468
+ }
1469
+
1470
+ .e-sortfilterdiv {
1471
+ margin: $pivotgrid-vsort-touch-margin !important;
1472
+ @if ($pivotgrid-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') {
1473
+ font-size: 12px !important;
1474
+ }
1475
+
1476
+ @if ($pivotgrid-skin == 'tailwind') {
1477
+ font-size: 16px !important;
1478
+ }
1479
+
1480
+ @if ($pivotgrid-skin == 'bootstrap5') or ($skin-name == 'FluentUI') {
1481
+ padding-top: 28px;
1482
+ }
1483
+ }
1484
+
1485
+ .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
1486
+ .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
1487
+ margin: $pivotgrid-vsort-touch-wrap-margin !important;
1488
+ }
1489
+
1490
+ /* stylelint-enable */
1491
+
1492
+ .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
1493
+ height: $pivotgrid-member-filter-list-bigger-height;
1494
+ }
1495
+
1496
+ /* stylelint-disable */
1497
+
1498
+
1499
+ .e-stackedheadercelldiv,
1500
+ .e-stackedheadertext,
1501
+ .e-headertext,
1502
+ .e-rowsheader .e-cellvalue {
1503
+ color: $pivotview-grid-header-font-color !important;
1504
+ font-size: $pivotview-bigger-grid-header-font-size;
1505
+ font-weight: $pivotview-grid-header-font-weight !important;
1506
+ }
1507
+
1508
+ .e-grid .e-columnsheader {
1509
+ padding-right: 16px !important;
1510
+ }
1511
+ /* stylelint-enable */
1512
+
1513
+ .e-rowcell {
1514
+ /* stylelint-disable */
1515
+ font-size: $pivotgrid-bigger-content-font-size !important;
1516
+ @if($skin-name == 'tailwind') {
1517
+ padding: 0 12px;
1518
+ }
1519
+ }
1520
+
1521
+ &.e-rtl {
1522
+
1523
+ .e-grid .e-rowsheader {
1524
+ padding-right: 10px !important;
1525
+ }
1526
+
1527
+ .e-grid .e-columnsheader {
1528
+ padding-right: 16px !important;
1529
+ }
1530
+
1531
+ .e-grid .e-headercelldiv,
1532
+ .e-grid .e-columnsheader {
1533
+ padding-left: $pivotview-value-sort-rtl-padding !important;
1534
+ padding-right: 8px !important;
1535
+ }
1536
+
1537
+ /* stylelint-enable */
1538
+
1539
+ .e-grouping-bar {
1540
+
1541
+ .e-group-rows,
1542
+ .e-group-columns,
1543
+ .e-group-values,
1544
+ .e-group-filters,
1545
+ .e-group-all-fields {
1546
+ padding-left: 0;
1547
+ padding-right: $pivotview-axis-bigger-indent-padding;
1548
+ }
1549
+ }
1550
+
1551
+ .e-group-row {
1552
+ .e-group-rows {
1553
+ padding-left: 0;
1554
+ padding-right: $pivotview-axis-bigger-indent-padding;
1555
+ }
1556
+ }
1557
+
1558
+ /* stylelint-disable */
1559
+ .e-stackedheadertext.e-cellvalue,
1560
+ .e-stackedheadercelldiv.e-cellvalue {
1561
+ padding-right: 16px !important;
1562
+ }
1563
+
1564
+ /* stylelint-enable */
1565
+ }
1566
+
1567
+ @if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') or ($skin-name == 'bootstrap5') {
1568
+ .e-expand::before {
1569
+ font-size: $pivotgrid-expand-bigger-icon-fontsize;
1570
+ }
1571
+
1572
+ .e-collapse::before {
1573
+ font-size: $pivotgrid-collapse-bigger-icon-fontsize;
1574
+ }
1575
+ }
1576
+ }
1577
+
1578
+ .e-content-placeholder.e-pivotview.e-placeholder-pivotview {
1579
+ background-size: 100% 200px;
1580
+ }
1581
+ }