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

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 +27 -13
  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 +233 -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 +191 -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 +1852 -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 +1862 -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 +358 -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 +357 -0
  82. package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
  83. package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
  84. package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
  85. package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
  86. package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
  87. package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
  88. package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
  89. package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
  90. package/styles/pivotfieldlist/icons/_material.scss +357 -0
  91. package/styles/pivotfieldlist/icons/_material3.scss +352 -0
  92. package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
  93. package/styles/pivotfieldlist/icons/_tailwind.scss +356 -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 +131 -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 +131 -0
  112. package/styles/pivotview/_fusionnew-definition.scss +131 -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 +1073 -0
  116. package/styles/pivotview/_material-dark-definition.scss +132 -0
  117. package/styles/pivotview/_material-definition.scss +128 -0
  118. package/styles/pivotview/_material3-definition.scss +131 -0
  119. package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
  120. package/styles/pivotview/_tailwind-definition.scss +130 -0
  121. package/styles/pivotview/_theme.scss +1583 -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 -674
  177. package/dist/ej2-angular-pivotview.umd.js +0 -666
  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,1583 @@
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
30
+ .e-rowcell {
31
+ /* stylelint-disable */
32
+ font-size: $pivotgrid-content-font-size !important;
33
+ padding-left: 8px;
34
+ -webkit-user-select: none;
35
+ -moz-user-select: none;
36
+ -ms-user-select: none;
37
+ user-select: none;
38
+ }
39
+
40
+ .e-gtot,
41
+ .e-gtot.e-rowsheader,
42
+ .e-gtot.e-columnsheader,
43
+ .e-grid .e-content,
44
+ .e-grid .e-gridheader,
45
+ .e-headercell {
46
+ background-color: $pivotgrid-gtot-background-color;
47
+ }
48
+
49
+ .e-grid .e-gridheader {
50
+ border-bottom-width: 1px;
51
+ @if($skin-name == 'bootstrap5') {
52
+ border-bottom-color: $border-light;
53
+ }
54
+ }
55
+
56
+ .e-gtot {
57
+ font-weight: $pivotgrid-summary-font-weight;
58
+ }
59
+
60
+ .e-gtot
61
+ .e-cellvalue {
62
+ color: $pivotgrid-gtot-font-color;
63
+ }
64
+
65
+ .e-rowsheader,
66
+ .e-columnsheader {
67
+ background-color: $pivotgrid-header-background-color;
68
+ }
69
+
70
+ .e-rowsheader {
71
+ .e-cellvalue {
72
+ margin-left: 8px;
73
+ margin-top: 5px;
74
+
75
+ @if ($pivotgrid-skin == 'highcontrast-light') or ($pivotgrid-skin == 'highcontrast') {
76
+ margin-top: 0;
77
+ }
78
+
79
+ @if ($skin-name == 'tailwind') {
80
+ vertical-align: middle;
81
+ margin-left: 4px
82
+ }
83
+ }
84
+ }
85
+
86
+ .e-pivot-conditional-empty-format {
87
+ margin: 10px;
88
+ }
89
+
90
+ .e-member-editor-dialog,
91
+ .e-olap-editor-dialog {
92
+ // sass-lint:disable-all
93
+ min-height: 385px !important;
94
+ min-width: 350px !important;
95
+ visibility: hidden;
96
+ // sass-lint:enable-all
97
+ }
98
+
99
+ .e-member-editor-dialog .e-toolbar .e-toolbar-items {
100
+ margin-left: $pivotview-filter-toolbar-items-margin-left;
101
+ }
102
+
103
+ .e-member-editor-dialog .e-rtl.e-toolbar .e-toolbar-items {
104
+ margin-left: 0;
105
+ margin-right: $pivotview-filter-toolbar-items-margin-right;
106
+ }
107
+
108
+ .e-pivot-format-dialog {
109
+ .e-pivot-format-table {
110
+ width: 100%;
111
+ }
112
+ }
113
+
114
+ .e-toolbar .e-tbar-btn {
115
+ @if ($skin-name == 'tailwind') {
116
+ background-color: transparent;
117
+ }
118
+
119
+ &:hover {
120
+ @if ($skin-name == 'tailwind') {
121
+ background-color: $pivot-toolbar-icon-hover-color;
122
+ }
123
+ }
124
+ }
125
+
126
+
127
+ .e-grid .e-rowsheader.e-active,
128
+ .e-grid .e-rowsheader.e-cellselectionbackground,
129
+ .e-grid .e-columnsheader.e-active,
130
+ .e-grid .e-columnsheader.e-cellselectionbackground,
131
+ .e-grid .e-rowsheader.e-active,
132
+ .e-grid .e-rowsheader.e-selectionbackground,
133
+ .e-grid .e-columnsheader.e-active,
134
+ .e-grid .e-columnsheader.e-selectionbackground {
135
+ background: $pivotgrid-header-selection-bg-color !important;
136
+ color: $pivotgrid-header-selection-color !important;
137
+
138
+ .e-stackedheadercelldiv,.e-cellvalue,
139
+ .e-icons {
140
+ color: $pivotgrid-header-selection-color !important;
141
+ }
142
+
143
+ .e-headertext {
144
+ color: $pivotgrid-header-selection-color !important;
145
+ }
146
+ }
147
+ /* stylelint-enable */
148
+
149
+ .e-drop-indicator {
150
+ display: block;
151
+ }
152
+
153
+ div.e-cellvalue {
154
+ margin-top: 5px;
155
+
156
+ @if ($pivotgrid-skin == 'highcontrast-light') or ($pivotgrid-skin == 'highcontrast') {
157
+ margin-top: 0;
158
+ }
159
+
160
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') {
161
+ margin-top: 2px;
162
+ }
163
+
164
+ @if ($skin-name == 'FluentUI') {
165
+ margin-top: 1px;
166
+ }
167
+ }
168
+
169
+ /* stylelint-disable */
170
+
171
+ .e-sortfilterdiv {
172
+ float: right;
173
+ margin: $pivotgrid-vsort-mouse-margin !important;
174
+ @if ($pivotgrid-skin == 'bootstrap4') {
175
+ font-size: 10px !important;
176
+ padding: 15px;
177
+ }
178
+ @if ($skin-name == 'bootstrap5') {
179
+ font-size: 12px !important;
180
+ padding: 15px;
181
+ }
182
+ @if ($skin-name == 'FluentUI') {
183
+ font-size: 14px !important;
184
+ }
185
+
186
+ &.e-value-sort-icon {
187
+ font-size: $pivotgrid-value-sort-icon-font-size !important;
188
+ @if ($skin-name == 'tailwind') {
189
+ padding-top: 14px !important;
190
+ }
191
+ @if ($skin-name == 'bootstrap5') {
192
+ padding-right: 5px !important;
193
+ }
194
+ }
195
+ }
196
+
197
+ .e-rowsheader .e-sortfilterdiv {
198
+ margin: -10px 0 !important;
199
+ }
200
+
201
+ .e-rowsheader .e-sortfilterdiv.e-value-sort-align {
202
+ margin: $pivotgrid-vsort-row-margin !important;
203
+ }
204
+
205
+ .e-pivotchart > svg, .e-pivotchart-inner > svg {
206
+ border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
207
+ }
208
+
209
+ .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
210
+ .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
211
+ margin: $pivotgrid-vsort-mouse-wrap-margin !important;
212
+ }
213
+
214
+ .e-grid .e-icons {
215
+ color: $pivotgrid-button-icon-color !important;
216
+ @if ($pivotgrid-skin == 'bootstrap4') {
217
+ color: $gray-700 !important;
218
+ }
219
+
220
+ @if ($skin-name == 'bootstrap5') {
221
+ color: $pivotview-grid-header-font-color !important;
222
+ }
223
+
224
+ &:hover {
225
+ color: $pivotgrid-icon-hover-color !important;
226
+ @if ($pivotgrid-skin == 'bootstrap4') {
227
+ color: $gray-700 !important;
228
+ }
229
+
230
+ @if ($skin-name == 'bootstrap5') {
231
+ color: $pivotview-grid-header-font-color !important;
232
+ }
233
+ }
234
+ }
235
+
236
+ .e-grid {
237
+ border-color: $pivotgrid-default-border-color;
238
+ }
239
+
240
+ .e-grid .e-rowsheader {
241
+ padding-left: 8px;
242
+ -webkit-user-select: none;
243
+ -moz-user-select: none;
244
+ -ms-user-select: none;
245
+ user-select: none;
246
+ -webkit-touch-callout: none;
247
+
248
+ @if ($skin-name == 'tailwind') {
249
+ padding-left: 12px;
250
+ }
251
+
252
+ &.e-active {
253
+ .e-icons {
254
+ color: $pivotgrid-button-active-icon-color !important;
255
+ @if ($pivotgrid-skin == 'bootstrap4') {
256
+ color: $gray-700 !important;
257
+ }
258
+
259
+ @if ($skin-name == 'bootstrap5') {
260
+ color: $pivotview-grid-header-font-color !important;
261
+ }
262
+ }
263
+ }
264
+ }
265
+
266
+ &.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner {
267
+ z-index: 1 !important;
268
+ }
269
+
270
+ &.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
271
+ visibility: hidden !important;
272
+ }
273
+
274
+ .e-grid .e-headercelldiv,
275
+ .e-grid .e-columnsheader {
276
+ padding-left: 8px !important;
277
+
278
+ @if($skin-name == 'tailwind') or ($skin-name == 'tailwind-dark') {
279
+ text-transform: none;
280
+ padding-left: 12px !important;
281
+
282
+ }
283
+
284
+ @if($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') or ($skin-name == 'tailwind') {
285
+ padding-top: 0px !important;
286
+ padding-bottom: 0px !important;
287
+ }
288
+ }
289
+
290
+ .sf-grid .e-spinner-pane {
291
+ z-index: 1 !important;
292
+ }
293
+
294
+ .e-grid .e-headercelldiv,
295
+ .e-grid .e-columnsheader {
296
+ padding-right: 8px !important;
297
+ }
298
+
299
+ .e-grid .e-headercelldiv,
300
+ .e-grid .e-stackedheadercelldiv {
301
+ line-height: normal;
302
+ }
303
+
304
+ .e-frozenheader>.e-table,
305
+ .e-frozencontent>.e-table {
306
+ border-left-color: $pivotgrid-default-border-color !important;
307
+ border-right-color: $pivotgrid-default-border-color !important;
308
+ border-left: 0;
309
+ border-right-width: 1px;
310
+ }
311
+
312
+ .e-stackedheadercelldiv {
313
+ display: block;
314
+ }
315
+
316
+ .e-stackedheadertext.e-cellvalue,
317
+ .e-stackedheadercelldiv.e-cellvalue {
318
+ display: inline-block;
319
+ padding-left: 12px !important;
320
+ margin-top: 5px;
321
+
322
+ @if ($pivotgrid-skin == 'highcontrast-light') or ($pivotgrid-skin == 'highcontrast') {
323
+ margin-top: 0;
324
+ }
325
+
326
+ @if ($skin-name == 'tailwind') or ($skin-name == 'bootstrap5') or ($pivotgrid-skin == 'fabric-dark') {
327
+ margin-top: 2px;
328
+ padding-left: 8px !important;
329
+ }
330
+
331
+ @if ($skin-name == 'FluentUI') {
332
+ margin-top: 1px;
333
+ }
334
+ }
335
+
336
+ .e-headercelldiv.e-cellvalue {
337
+ @if($pivotgrid-skin == 'bootstrap4') or ($pivotgrid-skin == 'bootstrap') or ($pivotgrid-skin == 'bootstrap-dark') or ($pivotgrid-skin == 'material-dark') or ($pivotgrid-skin == 'material') {
338
+ margin-left: 0px;
339
+ }
340
+ }
341
+
342
+ .e-stackedheadercelldiv {
343
+ padding: 0 0 0 1px !important;
344
+ }
345
+
346
+ .e-stackedheadercelldiv,
347
+ .e-stackedheadertext,
348
+ .e-headertext,
349
+ .e-rowsheader .e-cellvalue {
350
+ color: $pivotview-grid-header-font-color;
351
+ font-size: $pivotview-grid-header-font-size;
352
+ font-weight: $pivotview-grid-header-font-weight;
353
+
354
+ .e-hyperlinkcell {
355
+ // color: $pivotview-grid-header-font-color;
356
+ cursor: pointer;
357
+
358
+ // &:hover {
359
+ // color: $pivotgrid-active-color;
360
+ // }
361
+ }
362
+ }
363
+
364
+ .e-valuescontent .e-cellvalue {
365
+ .e-hyperlinkcell {
366
+ // color: $pivotgrid-default-font-color;
367
+ cursor: pointer;
368
+
369
+ // &:hover {
370
+ // color: $pivotgrid-active-color;
371
+ // }
372
+ }
373
+ }
374
+
375
+ .e-valuescontent {
376
+ opacity: $pivotview-grid-content-opacity !important;
377
+ }
378
+
379
+ /* stylelint-enable */
380
+
381
+ .e-rowcell {
382
+ opacity: 1;
383
+
384
+ /* stylelint-disable */
385
+ .e-cellvalue {
386
+ -webkit-user-select: none;
387
+ -moz-user-select: none;
388
+ -ms-user-select: none;
389
+ user-select: none;
390
+ }
391
+
392
+ /* stylelint-enable */
393
+ }
394
+
395
+ .e-grouping-bar {
396
+ .e-right-axis-fields {
397
+ flex: auto;
398
+ }
399
+
400
+ .e-left-axis-fields,
401
+ .e-right-axis-fields {
402
+ height: auto;
403
+ }
404
+
405
+ .e-left-axis-fields {
406
+ min-width: 250px;
407
+ }
408
+
409
+ .e-axis-row,
410
+ .e-axis-column,
411
+ .e-axis-value,
412
+ .e-axis-filter,
413
+ .e-group-all-fields {
414
+ background: $pivotgrid-grp-bg-color;
415
+ display: flex;
416
+ }
417
+
418
+ .e-left-axis-fields {
419
+ border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
420
+ border-bottom-width: 0;
421
+ border-right-width: 0;
422
+
423
+ }
424
+
425
+ /* stylelint-disable */
426
+ .e-all-fields-axis {
427
+ background: $pivotgrid-grp-bg-color;
428
+ border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
429
+ border-bottom-width: 0;
430
+ height: $pivotgrid-grouping-height !important;
431
+ min-height: $pivotgrid-grouping-height !important;
432
+
433
+ @if($skin-name == 'FluentUI') {
434
+ box-shadow: none;
435
+ }
436
+
437
+ .e-hscroll .e-scroll-nav {
438
+ background: $pivotgrid-grp-bg-color;
439
+ min-height: $pivotgrid-grouping-height !important;
440
+
441
+ &:hover {
442
+ background-color: $pivotgrid-hover-color;
443
+ @if ($pivotgrid-skin == 'bootstrap4') {
444
+ background-color: $pivotgrid-bg-color;
445
+ }
446
+
447
+ .e-nav-arrow {
448
+ color: $pivotgrid-icon-hover-color !important;
449
+ }
450
+ }
451
+ }
452
+
453
+ .e-toolbar-items {
454
+ background: $pivotgrid-grp-bg-color;
455
+ min-height: $pivotgrid-grouping-height !important;
456
+
457
+ .e-toolbar-item {
458
+ margin: 0 !important;
459
+ min-height: $pivotgrid-grouping-height !important;
460
+ padding: 0 !important;
461
+ }
462
+ }
463
+ }
464
+ /* stylelint-enable */
465
+
466
+ .e-right-axis-fields {
467
+ border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
468
+ border-bottom-width: 0;
469
+
470
+ .e-axis-filter {
471
+ border-bottom: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
472
+ }
473
+ }
474
+ }
475
+
476
+ .e-group-values,
477
+ .e-group-columns,
478
+ .e-group-filters,
479
+ .e-group-rows,
480
+ .e-group-all-fields {
481
+ background: $pivotgrid-grp-bg-color;
482
+ display: inline-table;
483
+ flex: auto;
484
+ height: $pivotgrid-grouping-height;
485
+ min-height: $pivotgrid-grouping-height;
486
+ overflow: hidden;
487
+ padding-left: $pivotview-axis-indent-padding;
488
+ scroll-behavior: smooth;
489
+ vertical-align: top;
490
+
491
+ &.e-drag-restrict {
492
+ cursor: no-drop;
493
+ }
494
+
495
+ .e-draggable-prompt {
496
+ color: $pivotgrid-prompt-default-font-color;
497
+ display: inline-block;
498
+ line-height: $pivotgrid-prompt-line-height;
499
+ margin-top: 4px;
500
+ padding-left: $pivotgrid-horizontal-button-padding;
501
+ pointer-events: none;
502
+ position: relative;
503
+ text-align: center;
504
+ vertical-align: middle;
505
+ @if ($pivotgrid-skin == 'bootstrap4') {
506
+ font-size: 12px;
507
+ }
508
+
509
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
510
+ font-size: $pivotgrid-content-font-size;
511
+ font-weight: normal;
512
+ }
513
+ }
514
+
515
+ .e-pivot-button {
516
+ .e-sort,
517
+ .e-dropdown-icon,
518
+ .e-pv-filter,
519
+ .e-pv-filtered,
520
+ .e-remove,
521
+ .e-edit {
522
+ @if ($pivotgrid-skin == 'bootstrap5') {
523
+ margin-top: 1px;
524
+ }
525
+ }
526
+ }
527
+ }
528
+
529
+ .e-grouping-bar,
530
+ .e-group-rows {
531
+
532
+ .e-pvt-btn-div {
533
+ display: inline-flex;
534
+ height: 24px;
535
+ padding: $pivotgrid-vertical-button-padding;
536
+ padding-bottom: 0;
537
+ padding-left: 0;
538
+ padding-right: $pivotgrid-horizontal-button-padding;
539
+
540
+ .e-indent-div {
541
+ pointer-events: none;
542
+ }
543
+
544
+ .e-drop-indicator {
545
+ pointer-events: none;
546
+ width: 2px;
547
+
548
+ &.e-drop-hover {
549
+ border-left: 1px dashed $pivotgrid-drop-hover-color;
550
+ @if ($skin-name == 'tailwind') {
551
+ border-left: 1px solid $pivotgrid-drop-hover-color;
552
+ }
553
+
554
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
555
+ border-left: 1px solid $pivotgrid-drop-hover-color;
556
+ }
557
+ }
558
+ }
559
+ }
560
+
561
+ .e-pivot-button {
562
+ background-color: $pivotgrid-button-background-color;
563
+ border: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-button-border-color;
564
+ border-radius: $pivotgrid-button-border-radius;
565
+ box-shadow: none;
566
+ /* stylelint-disable */
567
+ color: $pivotgrid-button-font-color !important;
568
+ /* stylelint-enable */
569
+ cursor: default;
570
+ display: flex;
571
+ font-weight: normal;
572
+ height: 24px;
573
+ line-height: .9em;
574
+ padding: $pivotgrid-button-inner-padding 8px;
575
+ text-transform: none;
576
+ vertical-align: bottom;
577
+ z-index: 1;
578
+ @if ($pivotgrid-skin == 'bootstrap4') {
579
+ font-weight: normal;
580
+ }
581
+
582
+ &.e-list-selected {
583
+ opacity: .5;
584
+ @if ($pivotgrid-skin == 'bootstrap4') {
585
+ opacity: .7;
586
+ }
587
+ }
588
+
589
+ &:hover {
590
+ background-color: $pivotgrid-hover-color;
591
+ border-color: $pivotgrid-hover-color;
592
+ @if ($pivotgrid-skin == 'bootstrap4') {
593
+ background-color: $pivotgrid-bg-color;
594
+ border-color: $pivotgrid-border-color;
595
+ }
596
+
597
+ .e-sort,
598
+ .e-dropdown-icon,
599
+ .e-pv-filter,
600
+ .e-pv-filtered,
601
+ .e-remove,
602
+ .e-edit {
603
+ color: $pivotgrid-icon-hover-color;
604
+ }
605
+ }
606
+
607
+ &.e-btn-focused {
608
+ background-color: $pivotgrid-focus-color;
609
+ color: $pivotgrid-button-acitve-font-color;
610
+ @if ($pivotgrid-skin == 'bootstrap4') {
611
+ background-color: $pivotgrid-border-color;
612
+ border-color: $pivotgrid-active-border-color;
613
+ box-shadow: 0 0 0 .2rem $pivotgrid-box-shadow-color;
614
+ }
615
+
616
+ .e-sort,
617
+ .e-dropdown-icon,
618
+ .e-pv-filter,
619
+ .e-pv-filtered,
620
+ .e-remove,
621
+ .e-edit {
622
+ color: $pivotgrid-icon-focus-color;
623
+ }
624
+ }
625
+
626
+ &:focus,
627
+ &:active {
628
+ background-color: $pivotgrid-focus-color;
629
+ color: $pivotgrid-button-acitve-font-color;
630
+ @if ($pivotgrid-skin == 'bootstrap4') {
631
+ background-color: $pivotgrid-border-color;
632
+ border-color: $pivotgrid-active-border-color;
633
+ box-shadow: 0 0 0 .2rem $pivotgrid-box-shadow-color;
634
+ }
635
+
636
+ .e-sort,
637
+ .e-dropdown-icon,
638
+ .e-pv-filter,
639
+ .e-pv-filtered,
640
+ .e-remove,
641
+ .e-edit {
642
+ color: $pivotgrid-icon-focus-color;
643
+ }
644
+ }
645
+
646
+ .e-content {
647
+ background-color: transparent;
648
+ cursor: move;
649
+ flex: auto;
650
+ font-size: $pivotgrid-button-font-size;
651
+ margin-right: 4px;
652
+ overflow: hidden;
653
+ text-align: left;
654
+ text-overflow: ellipsis;
655
+ @if ($pivotgrid-skin == 'bootstrap4') {
656
+ margin-right: 4px;
657
+ }
658
+
659
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
660
+ color: $pivotgrid-button-icon-color;
661
+ }
662
+
663
+ &.e-disable-drag {
664
+ cursor: auto;
665
+ }
666
+ }
667
+
668
+ /* stylelint-disable */
669
+ .e-draggable {
670
+ height: initial !important;
671
+ }
672
+
673
+ .e-drag {
674
+ display: none;
675
+ }
676
+
677
+ .e-sort,
678
+ .e-dropdown-icon,
679
+ .e-pv-filter,
680
+ .e-pv-filtered,
681
+ .e-remove,
682
+ .e-edit {
683
+ color: $pivotgrid-button-icon-color;
684
+ cursor: pointer;
685
+ display: inline-block;
686
+ font-size: $pivotgrid-button-icon-size;
687
+ height: $pivotgrid-button-icon-wrapper-size;
688
+ margin-left: 4px;
689
+ width: $pivotgrid-button-icon-wrapper-size;
690
+ @if ($pivotgrid-skin == 'bootstrap4') {
691
+ margin-left: 4px;
692
+ }
693
+
694
+ &:hover {
695
+ color: $pivotgrid-icon-hover-color;
696
+ }
697
+
698
+ &.e-disable {
699
+ display: none;
700
+ }
701
+ }
702
+ /* stylelint-enable */
703
+
704
+ .e-sort {
705
+ height: $pivotgrid-button-icon-size;
706
+ transform: rotateX(0deg);
707
+ transition: transform 200ms ease-in-out;
708
+
709
+ &.e-descend {
710
+ transform: rotateX(180deg);
711
+ }
712
+ }
713
+
714
+ .e-dropdown-icon {
715
+ margin-top: 1px;
716
+ }
717
+ }
718
+ }
719
+
720
+ .e-group-values {
721
+ .e-pvt-btn-div {
722
+ .e-pivot-button {
723
+ max-width: 230px;
724
+ }
725
+ }
726
+ }
727
+
728
+ .e-group-filters,
729
+ .e-group-columns {
730
+ width: 100%;
731
+ }
732
+
733
+ /* stylelint-disable */
734
+ .e-group-row {
735
+ padding: 0 !important;
736
+
737
+ .e-group-rows {
738
+ display: table;
739
+ flex: none;
740
+ width: 100%;
741
+
742
+ .e-pvt-btn-div {
743
+ max-width: unset;
744
+ width: 100%;
745
+
746
+ .e-indent-div {
747
+ pointer-events: none;
748
+ }
749
+ }
750
+ }
751
+ }
752
+
753
+ .e-group-row {
754
+ .e-group-rows {
755
+ .e-pvt-btn-div {
756
+ .e-pivot-button {
757
+ padding: $pivotgrid-button-inner-padding 8px;
758
+ width: 180px;
759
+ @if ($pivotgrid-skin == 'bootstrap4') {
760
+ font-weight: 400;
761
+ }
762
+
763
+ &:hover {
764
+ background-color: $pivotgrid-hover-color;
765
+ @if ($pivotgrid-skin == 'bootstrap4') {
766
+ background-color: $pivotgrid-bg-color;
767
+ border-color: $pivotgrid-border-color;
768
+ }
769
+
770
+ .e-sort,
771
+ .e-dropdown-icon,
772
+ .e-pv-filter,
773
+ .e-pv-filtered,
774
+ .e-remove,
775
+ .e-edit {
776
+ color: $pivotgrid-icon-hover-color !important;
777
+ }
778
+ }
779
+
780
+ &.e-btn-focused {
781
+ background-color: $pivotgrid-focus-color;
782
+ color: $pivotgrid-button-acitve-font-color;
783
+ @if ($pivotgrid-skin == 'bootstrap4') {
784
+ background-color: $pivotgrid-border-color;
785
+ border-color: $pivotgrid-active-border-color;
786
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
787
+ }
788
+
789
+ .e-sort,
790
+ .e-dropdown-icon,
791
+ .e-pv-filter,
792
+ .e-pv-filtered,
793
+ .e-remove,
794
+ .e-edit {
795
+ color: $pivotgrid-icon-focus-color !important;
796
+ }
797
+ }
798
+
799
+ &:focus,
800
+ &:active {
801
+ background-color: $pivotgrid-focus-color;
802
+ color: $pivotgrid-button-acitve-font-color;
803
+ @if ($pivotgrid-skin == 'bootstrap4') {
804
+ background-color: $pivotgrid-border-color;
805
+ border-color: $pivotgrid-active-border-color;
806
+ box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
807
+ }
808
+
809
+ .e-sort,
810
+ .e-dropdown-icon,
811
+ .e-pv-filter,
812
+ .e-pv-filtered,
813
+ .e-remove,
814
+ .e-edit {
815
+ color: $pivotgrid-icon-focus-color !important;
816
+ }
817
+ }
818
+
819
+ .e-sort,
820
+ .e-dropdown-icon,
821
+ .e-pv-filter,
822
+ .e-pv-filtered,
823
+ .e-remove,
824
+ .e-edit {
825
+ color: $pivotgrid-button-icon-color !important;
826
+ font-size: $pivotgrid-button-icon-size;
827
+ height: $pivotgrid-button-icon-wrapper-size;
828
+ margin-left: 4px !important;
829
+ width: $pivotgrid-button-icon-wrapper-size;
830
+ padding-top: 2px;
831
+
832
+ &:hover {
833
+ color: $pivotgrid-icon-hover-color;
834
+ }
835
+
836
+ &.e-disable {
837
+ display: none;
838
+ }
839
+ }
840
+
841
+ .e-sort {
842
+ height: $pivotgrid-button-icon-size;
843
+ width: 18px;
844
+
845
+ &.e-descend {
846
+ margin-top: 3px;
847
+ transform: rotateX(180deg);
848
+ }
849
+ }
850
+
851
+ .e-dropdown-icon {
852
+ margin-top: 1px;
853
+ }
854
+ }
855
+ }
856
+ }
857
+ }
858
+
859
+ /* stylelint-enable */
860
+
861
+ .e-axis-value {
862
+ display: inline-block;
863
+ height: 100%;
864
+
865
+ .e-group-values {
866
+ height: 100%;
867
+ padding-bottom: 0;
868
+ }
869
+
870
+ .e-group-chart-values {
871
+ display: inline-block;
872
+ height: 28px;
873
+ }
874
+
875
+ .e-group-chart-values-drodown {
876
+ font-size: 13px;
877
+ height: 25px;
878
+ }
879
+ }
880
+
881
+ .e-axis-column .e-group-chart-columns-dropdown {
882
+ font-size: 13px;
883
+ height: 25px;
884
+ margin: $pivotgrid-group-chart-values-dropdown-margin;
885
+
886
+ .e-input-group-icon {
887
+ min-height: initial;
888
+ }
889
+
890
+ input.e-input {
891
+ padding-bottom: 7px;
892
+ }
893
+ }
894
+
895
+ /* stylelint-disable */
896
+ .e-chart-grouping-bar .e-axis-value {
897
+ height: auto !important;
898
+ padding-left: 6px;
899
+ border-bottom: $pivotgrid-border-size $pivotgrid-border-type $pivotgrid-default-border-color;
900
+
901
+ .e-group-chart-multi-values {
902
+ padding-left: 2px;
903
+ }
904
+
905
+ .e-group-chart-values-drodown {
906
+ margin: $pivotgrid-group-chart-values-dropdown-margin;
907
+
908
+ .e-input-group-icon {
909
+ min-height: initial;
910
+ }
911
+
912
+ input.e-input {
913
+ padding-bottom: 7px;
914
+ }
915
+ }
916
+ }
917
+ /* stylelint-enable */
918
+
919
+ .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) {
920
+ height: auto;
921
+ width: auto;
922
+ }
923
+
924
+ .e-collapse::before {
925
+ font-size: $pivotgrid-collapse-icon-fonsize;
926
+ }
927
+
928
+ .e-expand,
929
+ .e-collapse {
930
+ cursor: pointer;
931
+ display: inline-block;
932
+ height: 18px;
933
+ margin-top: 5px;
934
+ text-align: center;
935
+ width: 18px;
936
+
937
+ @if ($pivotgrid-skin == 'highcontrast') {
938
+ margin-top: 0;
939
+ }
940
+
941
+ @if ($pivotgrid-skin == 'highcontrast-light') or ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
942
+ margin-top: 0;
943
+ }
944
+
945
+ @if ($skin-name == 'tailwind') {
946
+ margin-top: 0;
947
+ vertical-align: middle;
948
+ }
949
+
950
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'FluentUI') {
951
+ margin-bottom: 2px;
952
+ vertical-align: middle;
953
+ }
954
+ }
955
+
956
+ /* stylelint-disable */
957
+ th .e-expand,
958
+ th .e-collapse {
959
+ font-size: $pivotgrid-expcoldiv-fontsize !important;
960
+ margin-left: 0px;
961
+ margin-top: $pivotgrid-drill-margintop;
962
+ }
963
+
964
+ /* stylelint-enable */
965
+
966
+ .e-expand::before {
967
+ font-size: $pivotgrid-expand-icon-fontsize;
968
+ }
969
+
970
+ &.e-rtl {
971
+
972
+ .e-expand::before,
973
+ .e-collapse::before {
974
+ margin-left: 0;
975
+ }
976
+
977
+ /* stylelint-disable */
978
+ .e-grid .e-rowsheader {
979
+ padding-right: 8px !important;
980
+ }
981
+
982
+ .e-grid .e-columnsheader {
983
+ padding-right: 8px !important;
984
+ }
985
+
986
+ .e-grid .e-headercelldiv,
987
+ .e-grid .e-columnsheader {
988
+ padding-left: $pivotview-value-sort-rtl-padding !important;
989
+ padding-right: 8px !important;
990
+ }
991
+
992
+ .e-frozenheader>.e-table,
993
+ .e-frozencontent>.e-table {
994
+ border-left-width: 1px;
995
+ border-right: 0;
996
+ }
997
+
998
+ /* stylelint-enable */
999
+
1000
+ .e-rowsheader .e-cellvalue {
1001
+ margin-left: 0;
1002
+ margin-right: 7px;
1003
+ }
1004
+
1005
+ .e-valuescontent {
1006
+ text-align: left;
1007
+ }
1008
+
1009
+ .e-group-values,
1010
+ .e-group-columns,
1011
+ .e-group-filters,
1012
+ .e-group-all-fields {
1013
+ padding-left: 0;
1014
+ padding-right: $pivotview-axis-indent-padding;
1015
+ }
1016
+
1017
+ .e-group-rows,
1018
+ .e-grouping-bar {
1019
+
1020
+ .e-pvt-btn-div {
1021
+ padding-left: $pivotgrid-horizontal-button-padding;
1022
+ padding-right: 0;
1023
+
1024
+ .e-pivot-button {
1025
+ .e-content {
1026
+ margin-left: 4px;
1027
+ text-align: right;
1028
+ }
1029
+
1030
+ .e-sort,
1031
+ .e-dropdown-icon,
1032
+ .e-pv-filter,
1033
+ .e-pv-filtered,
1034
+ .e-remove,
1035
+ .e-edit {
1036
+ padding-left: 0;
1037
+ padding-right: 4px;
1038
+ }
1039
+ }
1040
+ }
1041
+ }
1042
+
1043
+ .e-grouping-bar {
1044
+ .e-left-axis-fields {
1045
+ border-left-width: 0;
1046
+ border-right-width: $pivotgrid-border-size;
1047
+ }
1048
+
1049
+ .e-right-axis-fields {
1050
+ border-left-width: $pivotgrid-border-size;
1051
+ }
1052
+ }
1053
+
1054
+ .e-group-row {
1055
+ .e-group-rows {
1056
+ padding-left: 0;
1057
+ padding-right: $pivotview-axis-indent-padding;
1058
+
1059
+ .e-pvt-btn-div {
1060
+ /* stylelint-disable */
1061
+ padding-left: $pivotgrid-horizontal-button-padding;
1062
+ padding-right: 0;
1063
+
1064
+ .e-pivot-button {
1065
+ .e-content {
1066
+ margin-left: 4px;
1067
+ margin-right: 0;
1068
+ text-align: right;
1069
+ }
1070
+
1071
+ .e-sort,
1072
+ .e-dropdown-icon,
1073
+ .e-pv-filter,
1074
+ .e-pv-filtered,
1075
+ .e-remove,
1076
+ .e-edit {
1077
+ padding-left: 0;
1078
+ padding-right: 7px;
1079
+ }
1080
+ }
1081
+
1082
+ /* stylelint-enable */
1083
+ }
1084
+ }
1085
+ }
1086
+
1087
+ /* stylelint-disable */
1088
+ .e-stackedheadertext.e-cellvalue,
1089
+ .e-stackedheadercelldiv.e-cellvalue {
1090
+ padding-right: 12px !important;
1091
+ }
1092
+
1093
+ .e-sortfilterdiv {
1094
+ float: left;
1095
+ }
1096
+ /* stylelint-enable */
1097
+ }
1098
+
1099
+ &.e-device {
1100
+ .e-grouping-bar {
1101
+
1102
+ /* stylelint-disable */
1103
+ .e-pivot-button {
1104
+ line-height: 1em !important;
1105
+
1106
+ .e-dropdown-icon,
1107
+ .e-pv-filtered,
1108
+ .e-remove,
1109
+ .e-sort {
1110
+ margin-top: 2px !important;
1111
+ }
1112
+ }
1113
+
1114
+ .e-group-all-fields {
1115
+ .e-pvt-btn-div {
1116
+ .e-pivot-button {
1117
+ max-width: 155px;
1118
+ @if ($pivotgrid-skin == 'bootstrap4') {
1119
+ padding: 3px 10px;
1120
+ }
1121
+ }
1122
+ }
1123
+ }
1124
+
1125
+ .e-group-filters,
1126
+ .e-group-values {
1127
+ .e-pvt-btn-div {
1128
+ .e-pivot-button {
1129
+ max-width: 155px;
1130
+ @if ($pivotgrid-skin == 'bootstrap4') {
1131
+ padding: 3px 10px;
1132
+ }
1133
+
1134
+ .e-sort,
1135
+ .e-dropdown-icon,
1136
+ .e-pv-filter,
1137
+ .e-pv-filtered,
1138
+ .e-remove,
1139
+ .e-edit {
1140
+ @if ($pivotgrid-skin == 'bootstrap4') {
1141
+ margin-top: 2px;
1142
+ }
1143
+ }
1144
+ }
1145
+ }
1146
+ }
1147
+
1148
+ .e-group-columns {
1149
+ .e-pvt-btn-div {
1150
+ .e-pivot-button {
1151
+ max-width: 200px;
1152
+ @if ($pivotgrid-skin == 'bootstrap4') {
1153
+ padding: 3px 10px;
1154
+ }
1155
+
1156
+ .e-sort,
1157
+ .e-dropdown-icon,
1158
+ .e-pv-filter,
1159
+ .e-pv-filtered,
1160
+ .e-remove,
1161
+ .e-edit {
1162
+ @if ($pivotgrid-skin == 'bootstrap4') {
1163
+ margin-top: 2px;
1164
+ }
1165
+ }
1166
+ }
1167
+ }
1168
+ }
1169
+ }
1170
+
1171
+ .e-drillthrough-dialog {
1172
+ width: 100% !important;
1173
+ }
1174
+
1175
+ .e-group-row {
1176
+ .e-group-rows {
1177
+ .e-pvt-btn-div {
1178
+ .e-indent-div {
1179
+ width: 0 !important;
1180
+ }
1181
+
1182
+ .e-pivot-button {
1183
+ width: 155px;
1184
+ @if ($pivotgrid-skin == 'bootstrap4') {
1185
+ padding: 4px 8px;
1186
+ }
1187
+
1188
+ .e-sort,
1189
+ .e-dropdown-icon,
1190
+ .e-pv-filter,
1191
+ .e-pv-filtered,
1192
+ .e-remove,
1193
+ .e-edit {
1194
+ @if ($pivotgrid-skin == 'bootstrap4') {
1195
+ margin-top: 1px;
1196
+ }
1197
+ }
1198
+ }
1199
+ }
1200
+ }
1201
+ }
1202
+ }
1203
+
1204
+ .e-component-disable {
1205
+ display: none !important;
1206
+ }
1207
+ /* stylelint-enable */
1208
+ }
1209
+
1210
+ .e-pivottooltipwrap,
1211
+ .e-pivottooltip-container {
1212
+ opacity: 1;
1213
+ }
1214
+
1215
+ .e-drillthrough-dialog {
1216
+ visibility: hidden;
1217
+ }
1218
+
1219
+ .e-pivottooltip {
1220
+ border-radius: $pivotgrid-default-border-radius;
1221
+ padding: $pivotgrid-tooltip-padding;
1222
+ }
1223
+
1224
+ .e-pivottooltip p {
1225
+ color: $pivotgrid-tooltip-fontcolor;
1226
+ display: inline-block;
1227
+ font-family: $pivotgrid-tooltip-fontfamily;
1228
+ font-size: $pivotgrid-tooltip-fontsize;
1229
+ line-height: 21px;
1230
+ margin: 0;
1231
+ }
1232
+
1233
+ .e-pivottooltip p.e-tooltipcontent {
1234
+ margin-left: 5px;
1235
+ }
1236
+
1237
+ .e-pivottooltiptemplate.e-tooltip-wrap {
1238
+ border: medium none transparent;
1239
+ max-width: none;
1240
+ min-width: 0;
1241
+ opacity: 1;
1242
+ }
1243
+
1244
+ .e-pivottooltiptemplate .e-tip-content {
1245
+ overflow-x: visible;
1246
+ padding: unset;
1247
+ word-break: normal;
1248
+ }
1249
+
1250
+ .e-rtl .e-pivottooltip p.e-tooltipcontent {
1251
+ margin-left: 0;
1252
+ margin-right: 5px;
1253
+ }
1254
+
1255
+ .e-bigger .e-pivotview,
1256
+ .e-bigger.e-pivotview {
1257
+
1258
+ .e-chart-grouping-bar .e-axis-value {
1259
+ .e-group-chart-values-drodown {
1260
+ margin: $pivotgrid-group-chart-values-dropdown-margin-bigger;
1261
+
1262
+ .e-input-group-icon {
1263
+ min-height: initial;
1264
+ }
1265
+
1266
+ input.e-input {
1267
+ padding-bottom: 10px;
1268
+ padding-top: 0;
1269
+ }
1270
+ }
1271
+ }
1272
+
1273
+ .e-chart-grouping-bar .e-axis-column {
1274
+ .e-group-chart-columns-dropdown {
1275
+ margin: $pivotgrid-group-chart-values-dropdown-margin-bigger;
1276
+
1277
+ .e-input-group-icon {
1278
+ min-height: initial;
1279
+ }
1280
+
1281
+ input.e-input {
1282
+ padding-bottom: 10px;
1283
+ padding-top: 0;
1284
+ }
1285
+ }
1286
+ }
1287
+
1288
+ /* stylelint-disable */
1289
+ .e-grid .e-rowsheader {
1290
+ padding-left: 8px !important;
1291
+ @if ($skin-name == 'tailwind') {
1292
+ padding-left: 16px !important;
1293
+ padding-right: 12px !important;
1294
+ }
1295
+ }
1296
+
1297
+ .e-grid .e-headercelldiv {
1298
+ padding-left: 8px !important;
1299
+ }
1300
+
1301
+ .e-grid .e-columnsheader {
1302
+ padding-left: 8px !important;
1303
+ }
1304
+
1305
+ .e-grid .e-gridheader .e-headercell .e-rhandler {
1306
+ height: 100% !important;
1307
+ }
1308
+
1309
+ .e-stackedheadercelldiv,
1310
+ .e-stackedheadertext,
1311
+ .e-headertext,
1312
+ .e-rowsheader .e-cellvalue {
1313
+ font-size: $pivotview-bigger-grid-header-font-size !important;
1314
+ @if ($pivotgrid-skin == 'bootstrap4') {
1315
+ font-size: $pivotview-bigger-grid-header-font-size !important;
1316
+ }
1317
+ }
1318
+ .e-bigger .e-stackedheadercelldiv
1319
+ {
1320
+ padding-left: 16px !important;
1321
+ }
1322
+
1323
+ th .e-expand,
1324
+ th .e-collapse {
1325
+ margin-top: $pivotgrid-bigger-drill-margintop;
1326
+ }
1327
+
1328
+ .e-grouping-bar {
1329
+ .e-all-fields-axis {
1330
+ height: 36px !important;
1331
+ min-height: 36px !important;
1332
+
1333
+ .e-hscroll .e-scroll-nav,
1334
+ .e-toolbar-items,
1335
+ .e-toolbar-item {
1336
+ min-height: 36px !important;
1337
+ }
1338
+ }
1339
+ /* stylelint-enable */
1340
+
1341
+ .e-pvt-btn-div {
1342
+ height: 30px;
1343
+
1344
+ .e-pivot-button {
1345
+ height: 30px;
1346
+ line-height: $pivotgrid-bigger-button-line-height;
1347
+ padding: $pivotgrid-bigger-button-inner-padding 12px;
1348
+
1349
+ .e-content {
1350
+ font-size: $pivotgrid-bigger-button-font-size;
1351
+ margin-right: 8px;
1352
+ @if ($pivotgrid-skin == 'bootstrap4') {
1353
+ margin-right: 0;
1354
+ }
1355
+ }
1356
+
1357
+ .e-sort,
1358
+ .e-dropdown-icon,
1359
+ .e-pv-filter,
1360
+ .e-pv-filtered,
1361
+ .e-remove,
1362
+ .e-edit {
1363
+ /* stylelint-disable */
1364
+ font-size: $pivotgrid-bigger-button-icon-size !important;
1365
+ height: $pivotgrid-bigger-button-icon-wrapper-size;
1366
+ margin-top: $pivotgrid-bigger-button-icon-touch-margin-size;
1367
+ width: $pivotgrid-bigger-button-icon-wrapper-size;
1368
+ @if ($pivotgrid-skin == 'bootstrap4') {
1369
+ padding-left: 12px;
1370
+ }
1371
+ }
1372
+
1373
+ .e-sort {
1374
+ height: $pivotgrid-bigger-button-icon-size;
1375
+ }
1376
+
1377
+ .e-dropdown-icon {
1378
+ margin-top: 1px;
1379
+ }
1380
+ }
1381
+ }
1382
+
1383
+ .e-group-filters,
1384
+ .e-group-values,
1385
+ .e-group-columns,
1386
+ .e-group-rows,
1387
+ .e-group-all-fields {
1388
+ height: 36px;
1389
+ min-height: 36px;
1390
+ padding-left: $pivotview-axis-bigger-indent-padding;
1391
+
1392
+ .e-pvt-btn-div .e-pivot-button.e-btn {
1393
+ @if ($pivotgrid-skin == 'bootstrap4') {
1394
+ padding: 7px 10px;
1395
+ }
1396
+ }
1397
+
1398
+ .e-draggable-prompt {
1399
+ @if ($skin-name == 'bootstrap5') or ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') {
1400
+ font-size: $pivotgrid-bigger-content-font-size;
1401
+ }
1402
+
1403
+ @if ($pivotgrid-skin == 'bootstrap4') {
1404
+ font-size: 16px;
1405
+ }
1406
+ }
1407
+ }
1408
+
1409
+ .e-group-values {
1410
+ height: 100%;
1411
+ }
1412
+
1413
+ .e-left-axis-fields,
1414
+ .e-right-axis-fields {
1415
+ .e-axis-nav-div {
1416
+
1417
+ .e-left-nav-container,
1418
+ .e-right-nav-container {
1419
+ width: 24px;
1420
+ }
1421
+ }
1422
+ }
1423
+ }
1424
+
1425
+ .e-group-rows {
1426
+ padding-left: $pivotview-axis-bigger-indent-padding;
1427
+
1428
+ .e-pvt-btn-div {
1429
+ height: 30px;
1430
+
1431
+ .e-pivot-button {
1432
+ height: 30px;
1433
+ line-height: $pivotgrid-bigger-button-line-height;
1434
+ padding: $pivotgrid-bigger-button-inner-padding 12px;
1435
+ @if ($pivotgrid-skin == 'bootstrap4') {
1436
+ padding: 7px 10px;
1437
+ }
1438
+
1439
+ .e-content {
1440
+ font-size: $pivotgrid-bigger-button-font-size;
1441
+ margin-right: 8px;
1442
+ @if ($pivotgrid-skin == 'bootstrap4') {
1443
+ margin-right: 0;
1444
+ }
1445
+ }
1446
+
1447
+ .e-sort,
1448
+ .e-dropdown-icon,
1449
+ .e-pv-filter,
1450
+ .e-pv-filtered,
1451
+ .e-remove,
1452
+ .e-edit {
1453
+ font-size: $pivotgrid-bigger-button-icon-size !important;
1454
+ height: $pivotgrid-bigger-button-icon-wrapper-size;
1455
+ width: $pivotgrid-bigger-button-icon-wrapper-size;
1456
+ @if ($pivotgrid-skin == 'bootstrap4') {
1457
+ padding-left: 12px;
1458
+ }
1459
+ }
1460
+
1461
+ .e-sort {
1462
+ height: $pivotgrid-bigger-button-icon-size;
1463
+ }
1464
+
1465
+ .e-dropdown-icon {
1466
+ margin-top: 1px;
1467
+ }
1468
+ }
1469
+ }
1470
+ }
1471
+
1472
+ .e-sortfilterdiv {
1473
+ margin: $pivotgrid-vsort-touch-margin !important;
1474
+ @if ($pivotgrid-skin == 'bootstrap4') or ($skin-name == 'bootstrap5') {
1475
+ font-size: 12px !important;
1476
+ }
1477
+
1478
+ @if ($pivotgrid-skin == 'tailwind') {
1479
+ font-size: 16px !important;
1480
+ }
1481
+
1482
+ @if ($pivotgrid-skin == 'bootstrap5') or ($skin-name == 'FluentUI') {
1483
+ padding-top: 28px;
1484
+ }
1485
+ }
1486
+
1487
+ .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
1488
+ .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
1489
+ margin: $pivotgrid-vsort-touch-wrap-margin !important;
1490
+ }
1491
+
1492
+ /* stylelint-enable */
1493
+
1494
+ .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container {
1495
+ height: $pivotgrid-member-filter-list-bigger-height;
1496
+ }
1497
+
1498
+ /* stylelint-disable */
1499
+
1500
+
1501
+ .e-stackedheadercelldiv,
1502
+ .e-stackedheadertext,
1503
+ .e-headertext,
1504
+ .e-rowsheader .e-cellvalue {
1505
+ color: $pivotview-grid-header-font-color !important;
1506
+ font-size: $pivotview-bigger-grid-header-font-size;
1507
+ font-weight: $pivotview-grid-header-font-weight !important;
1508
+ }
1509
+
1510
+ .e-grid .e-columnsheader {
1511
+ padding-right: 16px !important;
1512
+ }
1513
+ /* stylelint-enable */
1514
+
1515
+ .e-rowcell {
1516
+ /* stylelint-disable */
1517
+ font-size: $pivotgrid-bigger-content-font-size !important;
1518
+ @if($skin-name == 'tailwind') {
1519
+ padding: 0 12px;
1520
+ }
1521
+ }
1522
+
1523
+ &.e-rtl {
1524
+
1525
+ .e-grid .e-rowsheader {
1526
+ padding-right: 10px !important;
1527
+ }
1528
+
1529
+ .e-grid .e-columnsheader {
1530
+ padding-right: 16px !important;
1531
+ }
1532
+
1533
+ .e-grid .e-headercelldiv,
1534
+ .e-grid .e-columnsheader {
1535
+ padding-left: $pivotview-value-sort-rtl-padding !important;
1536
+ padding-right: 8px !important;
1537
+ }
1538
+
1539
+ /* stylelint-enable */
1540
+
1541
+ .e-grouping-bar {
1542
+
1543
+ .e-group-rows,
1544
+ .e-group-columns,
1545
+ .e-group-values,
1546
+ .e-group-filters,
1547
+ .e-group-all-fields {
1548
+ padding-left: 0;
1549
+ padding-right: $pivotview-axis-bigger-indent-padding;
1550
+ }
1551
+ }
1552
+
1553
+ .e-group-row {
1554
+ .e-group-rows {
1555
+ padding-left: 0;
1556
+ padding-right: $pivotview-axis-bigger-indent-padding;
1557
+ }
1558
+ }
1559
+
1560
+ /* stylelint-disable */
1561
+ .e-stackedheadertext.e-cellvalue,
1562
+ .e-stackedheadercelldiv.e-cellvalue {
1563
+ padding-right: 16px !important;
1564
+ }
1565
+
1566
+ /* stylelint-enable */
1567
+ }
1568
+
1569
+ @if ($skin-name == 'tailwind') or ($skin-name == 'FluentUI') or ($skin-name == 'bootstrap5') {
1570
+ .e-expand::before {
1571
+ font-size: $pivotgrid-expand-bigger-icon-fontsize;
1572
+ }
1573
+
1574
+ .e-collapse::before {
1575
+ font-size: $pivotgrid-collapse-bigger-icon-fontsize;
1576
+ }
1577
+ }
1578
+ }
1579
+
1580
+ .e-content-placeholder.e-pivotview.e-placeholder-pivotview {
1581
+ background-size: 100% 200px;
1582
+ }
1583
+ }