@syncfusion/ej2-angular-pivotview 20.2.39-ngcc → 20.2.39
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.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +212 -1
- package/styles/bootstrap.css +212 -1
- package/styles/bootstrap4.css +208 -2
- package/styles/bootstrap5-dark.css +214 -1
- package/styles/bootstrap5.css +214 -1
- package/styles/fabric-dark.css +212 -1
- package/styles/fabric.css +212 -1
- package/styles/fluent-dark.css +214 -1
- package/styles/fluent.css +214 -1
- package/styles/highcontrast-light.css +212 -1
- package/styles/highcontrast.css +212 -1
- package/styles/material-dark.css +212 -1
- package/styles/material.css +212 -1
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
- package/styles/pivotfieldlist/_layout.scss +1844 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
- package/styles/pivotfieldlist/_material-definition.scss +187 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
- package/styles/pivotfieldlist/_theme.scss +1858 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +130 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +125 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +134 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +130 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +130 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +132 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +132 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +130 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +130 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3.scss +353 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.css +130 -1
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +130 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +132 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +132 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
- package/styles/pivotview/_bootstrap-definition.scss +128 -0
- package/styles/pivotview/_bootstrap4-definition.scss +128 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +133 -0
- package/styles/pivotview/_fabric-dark-definition.scss +130 -0
- package/styles/pivotview/_fabric-definition.scss +127 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +133 -0
- package/styles/pivotview/_fusionnew-definition.scss +133 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1072 -0
- package/styles/pivotview/_material-dark-definition.scss +134 -0
- package/styles/pivotview/_material-definition.scss +130 -0
- package/styles/pivotview/_material3-definition.scss +133 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +133 -0
- package/styles/pivotview/_theme.scss +1581 -0
- package/styles/pivotview/bootstrap-dark.css +82 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +82 -0
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +83 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +80 -0
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +80 -0
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +82 -0
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +82 -0
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +82 -0
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +82 -0
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +82 -0
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +82 -0
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +82 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +82 -0
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +80 -0
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +80 -0
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +212 -1
- package/styles/tailwind.css +212 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -683
- package/dist/ej2-angular-pivotview.umd.js +0 -666
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
@include export-module('pivotview-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e75c';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e734';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e738';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\e7df';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\e7f7';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
content: '\e735';
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.e-remove::before {
|
|
30
|
+
content: '\e7e7';
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
.e-selected-option-icon::before {
|
|
34
|
+
content: '\e72b';
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
.e-clear-filter-icon::before {
|
|
38
|
+
content: '\e72c';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.e-dropdown-icon::before {
|
|
42
|
+
content: '\e729';
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.e-export::before {
|
|
46
|
+
content: '\e72e';
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
.e-new-report::before {
|
|
50
|
+
content: '\e7dc';
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.e-save-report::before {
|
|
54
|
+
content: '\e7c8';
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-saveas-report::before {
|
|
58
|
+
content: '\e7ae';
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
.e-rename-report::before {
|
|
62
|
+
content: '\e76d';
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.e-remove-report::before {
|
|
66
|
+
content: '\e820';
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.e-sub-total::before {
|
|
70
|
+
content: '\e702';
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
.e-grand-total::before {
|
|
74
|
+
content: '\e74d';
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
.e-toolbar-fieldlist::before {
|
|
78
|
+
content: '\e751';
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.e-toolbar-grid::before {
|
|
82
|
+
content: '\e7e9';
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.e-toolbar-chart::before {
|
|
86
|
+
content: '\e826';
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
.e-toolbar-formatting::before {
|
|
90
|
+
content: '\e71b';
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.e-pivot-button .e-edit::before {
|
|
94
|
+
content: '\e730';
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.e-sort-ascend-icon::before {
|
|
98
|
+
content: '\e7a3';
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
.e-sort-descend-icon::before {
|
|
102
|
+
content: '\e7b6';
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
.e-pivotview-pdf-export::before {
|
|
107
|
+
content: '\e700';
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
.e-pivotview-excel-export::before {
|
|
111
|
+
content: '\e7c1';
|
|
112
|
+
}
|
|
113
|
+
|
|
114
|
+
.e-pivotview-csv-export::before {
|
|
115
|
+
content: '\e7ba';
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.e-pivotview-png-export::before {
|
|
119
|
+
content: '\e7ee';
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
.e-pivotview-jpeg-export::before {
|
|
123
|
+
content: '\e786';
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
.e-pivotview-svg-export::before {
|
|
127
|
+
content: '\e7cf';
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.e-mdx::before {
|
|
131
|
+
content: '\e7ac';
|
|
132
|
+
}
|
|
133
|
+
|
|
134
|
+
.e-pivotview-select-icon::before {
|
|
135
|
+
content: '\e774';
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
.e-pivotview-export::before {
|
|
139
|
+
content: '\e72e';
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
.e-pivotview-grid::before {
|
|
143
|
+
content: '\e7e9';
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
.e-pivotview-expand::before {
|
|
147
|
+
content: '\e7c9';
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
.e-pivotview-collapse::before {
|
|
151
|
+
content: '\e80f';
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
.e-pivot-format-menu::before {
|
|
155
|
+
content: '\e76d';
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.e-pivot-number-format-menu::before {
|
|
159
|
+
content: '\e787';
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.e-pivot-conditional-format-menu::before {
|
|
163
|
+
content: '\e71b';
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.e-pivot-format-toolbar::before {
|
|
167
|
+
content: '\e787';
|
|
168
|
+
}
|
|
169
|
+
|
|
170
|
+
.e-pivotview-group::before {
|
|
171
|
+
content: '\e7a5';
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
.e-pivotview-ungroup::before {
|
|
175
|
+
content: '\e779';
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
.e-level-options {
|
|
179
|
+
.e-selected-level-icon::before {
|
|
180
|
+
content: '\e774';
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
@@ -156,6 +156,12 @@
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
/*! PivotView layout */
|
|
159
|
+
.e-pivotview {
|
|
160
|
+
/* stylelint-disable */
|
|
161
|
+
/* stylelint-enable */
|
|
162
|
+
/* stylelint-enable */
|
|
163
|
+
/* stylelint-disable */
|
|
164
|
+
}
|
|
159
165
|
.e-pivotview .e-value-field-settings,
|
|
160
166
|
.e-pivotview .e-member-editor-dialog,
|
|
161
167
|
.e-pivotview .e-group-field-settings {
|
|
@@ -229,6 +235,7 @@
|
|
|
229
235
|
}
|
|
230
236
|
.e-pivotview .e-member-editor-dialog {
|
|
231
237
|
min-width: 320px;
|
|
238
|
+
/* stylelint-disable */
|
|
232
239
|
}
|
|
233
240
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
234
241
|
display: -ms-flexbox;
|
|
@@ -242,6 +249,7 @@
|
|
|
242
249
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
243
250
|
box-shadow: none;
|
|
244
251
|
margin-left: 10px;
|
|
252
|
+
/* stylelint-disable */
|
|
245
253
|
}
|
|
246
254
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
247
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -333,6 +341,7 @@
|
|
|
333
341
|
}
|
|
334
342
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
335
343
|
border: none;
|
|
344
|
+
/* stylelint-enable */
|
|
336
345
|
}
|
|
337
346
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
338
347
|
margin: 0 0 0 6px;
|
|
@@ -568,13 +577,16 @@
|
|
|
568
577
|
}
|
|
569
578
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
570
579
|
margin-left: 18px !important;
|
|
580
|
+
/* stylelint-enable */
|
|
571
581
|
}
|
|
572
582
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
583
|
+
/* stylelint-disable */
|
|
573
584
|
padding: 0 !important;
|
|
574
585
|
}
|
|
575
586
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
576
587
|
float: left;
|
|
577
588
|
font-weight: 500;
|
|
589
|
+
/* stylelint-enable */
|
|
578
590
|
}
|
|
579
591
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
580
592
|
float: right;
|
|
@@ -603,6 +615,7 @@
|
|
|
603
615
|
}
|
|
604
616
|
|
|
605
617
|
.e-pivotview-report-dialog {
|
|
618
|
+
/* stylelint-disable */
|
|
606
619
|
max-width: 350px !important;
|
|
607
620
|
}
|
|
608
621
|
|
|
@@ -622,6 +635,7 @@
|
|
|
622
635
|
max-width: 500px !important;
|
|
623
636
|
}
|
|
624
637
|
|
|
638
|
+
/* stylelint-enable */
|
|
625
639
|
.e-report-outer {
|
|
626
640
|
display: inline-block;
|
|
627
641
|
width: 100%;
|
|
@@ -633,6 +647,7 @@
|
|
|
633
647
|
width: 40%;
|
|
634
648
|
}
|
|
635
649
|
|
|
650
|
+
/* stylelint-disable */
|
|
636
651
|
.e-pivotview-report-input {
|
|
637
652
|
float: right;
|
|
638
653
|
width: 60% !important;
|
|
@@ -654,11 +669,16 @@
|
|
|
654
669
|
font-size: 18px !important;
|
|
655
670
|
}
|
|
656
671
|
|
|
672
|
+
/* stylelint-enable */
|
|
657
673
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
658
674
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
659
675
|
white-space: nowrap;
|
|
660
676
|
}
|
|
661
677
|
|
|
678
|
+
.e-drillthrough-dialog {
|
|
679
|
+
/* stylelint-disable */
|
|
680
|
+
/* stylelint-enable */
|
|
681
|
+
}
|
|
662
682
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
663
683
|
margin-bottom: 20px;
|
|
664
684
|
}
|
|
@@ -679,9 +699,18 @@
|
|
|
679
699
|
flex-wrap: wrap;
|
|
680
700
|
}
|
|
681
701
|
|
|
702
|
+
.e-bigger .e-pivotview,
|
|
703
|
+
.e-bigger.e-pivotview {
|
|
704
|
+
/* stylelint-disable */
|
|
705
|
+
/* stylelint-enable */
|
|
706
|
+
/* stylelint-disable */
|
|
707
|
+
/* stylelint-enable */
|
|
708
|
+
}
|
|
682
709
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
683
710
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
711
|
+
/* stylelint-disable */
|
|
684
712
|
height: 52px !important;
|
|
713
|
+
/* stylelint-enable */
|
|
685
714
|
}
|
|
686
715
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
687
716
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -837,6 +866,18 @@
|
|
|
837
866
|
}
|
|
838
867
|
|
|
839
868
|
/*! PivotView theme */
|
|
869
|
+
.e-pivotview {
|
|
870
|
+
/* stylelint-enable */
|
|
871
|
+
/* stylelint-disable */
|
|
872
|
+
/* stylelint-enable */
|
|
873
|
+
/* stylelint-disable */
|
|
874
|
+
/* stylelint-enable */
|
|
875
|
+
/* stylelint-disable */
|
|
876
|
+
/* stylelint-enable */
|
|
877
|
+
/* stylelint-disable */
|
|
878
|
+
/* stylelint-enable */
|
|
879
|
+
/* stylelint-enable */
|
|
880
|
+
}
|
|
840
881
|
.e-pivotview .e-nextspan {
|
|
841
882
|
display: inline-block;
|
|
842
883
|
width: 18px;
|
|
@@ -857,6 +898,7 @@
|
|
|
857
898
|
text-align: right;
|
|
858
899
|
}
|
|
859
900
|
.e-pivotview .e-grid .e-rowcell {
|
|
901
|
+
/* stylelint-disable */
|
|
860
902
|
font-size: 13px !important;
|
|
861
903
|
padding-left: 8px;
|
|
862
904
|
-webkit-user-select: none;
|
|
@@ -1063,12 +1105,18 @@
|
|
|
1063
1105
|
}
|
|
1064
1106
|
.e-pivotview .e-rowcell {
|
|
1065
1107
|
opacity: 1;
|
|
1108
|
+
/* stylelint-disable */
|
|
1109
|
+
/* stylelint-enable */
|
|
1066
1110
|
}
|
|
1067
1111
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1068
1112
|
-webkit-user-select: none;
|
|
1069
1113
|
-ms-user-select: none;
|
|
1070
1114
|
user-select: none;
|
|
1071
1115
|
}
|
|
1116
|
+
.e-pivotview .e-grouping-bar {
|
|
1117
|
+
/* stylelint-disable */
|
|
1118
|
+
/* stylelint-enable */
|
|
1119
|
+
}
|
|
1072
1120
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1073
1121
|
-ms-flex: auto;
|
|
1074
1122
|
flex: auto;
|
|
@@ -1194,7 +1242,9 @@
|
|
|
1194
1242
|
border: 1px solid none;
|
|
1195
1243
|
border-radius: 25px;
|
|
1196
1244
|
box-shadow: none;
|
|
1245
|
+
/* stylelint-disable */
|
|
1197
1246
|
color: #fff !important;
|
|
1247
|
+
/* stylelint-enable */
|
|
1198
1248
|
cursor: default;
|
|
1199
1249
|
display: -ms-flexbox;
|
|
1200
1250
|
display: flex;
|
|
@@ -1205,6 +1255,8 @@
|
|
|
1205
1255
|
text-transform: none;
|
|
1206
1256
|
vertical-align: bottom;
|
|
1207
1257
|
z-index: 1;
|
|
1258
|
+
/* stylelint-disable */
|
|
1259
|
+
/* stylelint-enable */
|
|
1208
1260
|
}
|
|
1209
1261
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1210
1262
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1541,6 +1593,12 @@
|
|
|
1541
1593
|
.e-pivotview .e-expand::before {
|
|
1542
1594
|
font-size: 10px;
|
|
1543
1595
|
}
|
|
1596
|
+
.e-pivotview.e-rtl {
|
|
1597
|
+
/* stylelint-disable */
|
|
1598
|
+
/* stylelint-enable */
|
|
1599
|
+
/* stylelint-disable */
|
|
1600
|
+
/* stylelint-enable */
|
|
1601
|
+
}
|
|
1544
1602
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1545
1603
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1546
1604
|
margin-left: 0;
|
|
@@ -1612,8 +1670,10 @@
|
|
|
1612
1670
|
padding-right: 8px;
|
|
1613
1671
|
}
|
|
1614
1672
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1673
|
+
/* stylelint-disable */
|
|
1615
1674
|
padding-left: 8px;
|
|
1616
1675
|
padding-right: 0;
|
|
1676
|
+
/* stylelint-enable */
|
|
1617
1677
|
}
|
|
1618
1678
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1619
1679
|
margin-left: 4px;
|
|
@@ -1636,6 +1696,9 @@
|
|
|
1636
1696
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1637
1697
|
float: left;
|
|
1638
1698
|
}
|
|
1699
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1700
|
+
/* stylelint-disable */
|
|
1701
|
+
}
|
|
1639
1702
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1640
1703
|
line-height: 1em !important;
|
|
1641
1704
|
}
|
|
@@ -1713,6 +1776,13 @@
|
|
|
1713
1776
|
margin-right: 5px;
|
|
1714
1777
|
}
|
|
1715
1778
|
|
|
1779
|
+
.e-bigger .e-pivotview,
|
|
1780
|
+
.e-bigger.e-pivotview {
|
|
1781
|
+
/* stylelint-disable */
|
|
1782
|
+
/* stylelint-enable */
|
|
1783
|
+
/* stylelint-disable */
|
|
1784
|
+
/* stylelint-enable */
|
|
1785
|
+
}
|
|
1716
1786
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1717
1787
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1718
1788
|
margin: 0;
|
|
@@ -1775,6 +1845,10 @@
|
|
|
1775
1845
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1776
1846
|
margin-top: 8px;
|
|
1777
1847
|
}
|
|
1848
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1849
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1850
|
+
/* stylelint-enable */
|
|
1851
|
+
}
|
|
1778
1852
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1779
1853
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1780
1854
|
height: 36px !important;
|
|
@@ -1815,6 +1889,7 @@
|
|
|
1815
1889
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1816
1890
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1817
1891
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1892
|
+
/* stylelint-disable */
|
|
1818
1893
|
font-size: 14px !important;
|
|
1819
1894
|
height: 20px;
|
|
1820
1895
|
margin-top: 0;
|
|
@@ -1931,8 +2006,15 @@
|
|
|
1931
2006
|
}
|
|
1932
2007
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1933
2008
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2009
|
+
/* stylelint-disable */
|
|
1934
2010
|
font-size: 13px !important;
|
|
1935
2011
|
}
|
|
2012
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2013
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2014
|
+
/* stylelint-enable */
|
|
2015
|
+
/* stylelint-disable */
|
|
2016
|
+
/* stylelint-enable */
|
|
2017
|
+
}
|
|
1936
2018
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1937
2019
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1938
2020
|
padding-right: 10px !important;
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/material-dark-definition.scss';
|
|
3
|
+
@import 'material-dark-definition.scss';
|
|
4
|
+
@import 'icons/material-dark.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -157,6 +157,12 @@
|
|
|
157
157
|
}
|
|
158
158
|
|
|
159
159
|
/*! PivotView layout */
|
|
160
|
+
.e-pivotview {
|
|
161
|
+
/* stylelint-disable */
|
|
162
|
+
/* stylelint-enable */
|
|
163
|
+
/* stylelint-enable */
|
|
164
|
+
/* stylelint-disable */
|
|
165
|
+
}
|
|
160
166
|
.e-pivotview .e-value-field-settings,
|
|
161
167
|
.e-pivotview .e-member-editor-dialog,
|
|
162
168
|
.e-pivotview .e-group-field-settings {
|
|
@@ -230,6 +236,7 @@
|
|
|
230
236
|
}
|
|
231
237
|
.e-pivotview .e-member-editor-dialog {
|
|
232
238
|
min-width: 320px;
|
|
239
|
+
/* stylelint-disable */
|
|
233
240
|
}
|
|
234
241
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
235
242
|
display: -ms-flexbox;
|
|
@@ -243,6 +250,7 @@
|
|
|
243
250
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
244
251
|
box-shadow: none;
|
|
245
252
|
margin-left: 10px;
|
|
253
|
+
/* stylelint-disable */
|
|
246
254
|
}
|
|
247
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
248
256
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -334,6 +342,7 @@
|
|
|
334
342
|
}
|
|
335
343
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
336
344
|
border: none;
|
|
345
|
+
/* stylelint-enable */
|
|
337
346
|
}
|
|
338
347
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
339
348
|
margin: 0 0 0 6px;
|
|
@@ -569,13 +578,16 @@
|
|
|
569
578
|
}
|
|
570
579
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
571
580
|
margin-left: 18px !important;
|
|
581
|
+
/* stylelint-enable */
|
|
572
582
|
}
|
|
573
583
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
584
|
+
/* stylelint-disable */
|
|
574
585
|
padding: 0 !important;
|
|
575
586
|
}
|
|
576
587
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
577
588
|
float: left;
|
|
578
589
|
font-weight: 500;
|
|
590
|
+
/* stylelint-enable */
|
|
579
591
|
}
|
|
580
592
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
581
593
|
float: right;
|
|
@@ -604,6 +616,7 @@
|
|
|
604
616
|
}
|
|
605
617
|
|
|
606
618
|
.e-pivotview-report-dialog {
|
|
619
|
+
/* stylelint-disable */
|
|
607
620
|
max-width: 350px !important;
|
|
608
621
|
}
|
|
609
622
|
|
|
@@ -623,6 +636,7 @@
|
|
|
623
636
|
max-width: 500px !important;
|
|
624
637
|
}
|
|
625
638
|
|
|
639
|
+
/* stylelint-enable */
|
|
626
640
|
.e-report-outer {
|
|
627
641
|
display: inline-block;
|
|
628
642
|
width: 100%;
|
|
@@ -634,6 +648,7 @@
|
|
|
634
648
|
width: 40%;
|
|
635
649
|
}
|
|
636
650
|
|
|
651
|
+
/* stylelint-disable */
|
|
637
652
|
.e-pivotview-report-input {
|
|
638
653
|
float: right;
|
|
639
654
|
width: 60% !important;
|
|
@@ -655,11 +670,16 @@
|
|
|
655
670
|
font-size: 18px !important;
|
|
656
671
|
}
|
|
657
672
|
|
|
673
|
+
/* stylelint-enable */
|
|
658
674
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
659
675
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
660
676
|
white-space: nowrap;
|
|
661
677
|
}
|
|
662
678
|
|
|
679
|
+
.e-drillthrough-dialog {
|
|
680
|
+
/* stylelint-disable */
|
|
681
|
+
/* stylelint-enable */
|
|
682
|
+
}
|
|
663
683
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
664
684
|
margin-bottom: 20px;
|
|
665
685
|
}
|
|
@@ -680,9 +700,18 @@
|
|
|
680
700
|
flex-wrap: wrap;
|
|
681
701
|
}
|
|
682
702
|
|
|
703
|
+
.e-bigger .e-pivotview,
|
|
704
|
+
.e-bigger.e-pivotview {
|
|
705
|
+
/* stylelint-disable */
|
|
706
|
+
/* stylelint-enable */
|
|
707
|
+
/* stylelint-disable */
|
|
708
|
+
/* stylelint-enable */
|
|
709
|
+
}
|
|
683
710
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
684
711
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
712
|
+
/* stylelint-disable */
|
|
685
713
|
height: 52px !important;
|
|
714
|
+
/* stylelint-enable */
|
|
686
715
|
}
|
|
687
716
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
688
717
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -838,6 +867,18 @@
|
|
|
838
867
|
}
|
|
839
868
|
|
|
840
869
|
/*! PivotView theme */
|
|
870
|
+
.e-pivotview {
|
|
871
|
+
/* stylelint-enable */
|
|
872
|
+
/* stylelint-disable */
|
|
873
|
+
/* stylelint-enable */
|
|
874
|
+
/* stylelint-disable */
|
|
875
|
+
/* stylelint-enable */
|
|
876
|
+
/* stylelint-disable */
|
|
877
|
+
/* stylelint-enable */
|
|
878
|
+
/* stylelint-disable */
|
|
879
|
+
/* stylelint-enable */
|
|
880
|
+
/* stylelint-enable */
|
|
881
|
+
}
|
|
841
882
|
.e-pivotview .e-nextspan {
|
|
842
883
|
display: inline-block;
|
|
843
884
|
width: 18px;
|
|
@@ -858,6 +899,7 @@
|
|
|
858
899
|
text-align: right;
|
|
859
900
|
}
|
|
860
901
|
.e-pivotview .e-grid .e-rowcell {
|
|
902
|
+
/* stylelint-disable */
|
|
861
903
|
font-size: 13px !important;
|
|
862
904
|
padding-left: 8px;
|
|
863
905
|
-webkit-user-select: none;
|
|
@@ -1064,12 +1106,18 @@
|
|
|
1064
1106
|
}
|
|
1065
1107
|
.e-pivotview .e-rowcell {
|
|
1066
1108
|
opacity: 1;
|
|
1109
|
+
/* stylelint-disable */
|
|
1110
|
+
/* stylelint-enable */
|
|
1067
1111
|
}
|
|
1068
1112
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1069
1113
|
-webkit-user-select: none;
|
|
1070
1114
|
-ms-user-select: none;
|
|
1071
1115
|
user-select: none;
|
|
1072
1116
|
}
|
|
1117
|
+
.e-pivotview .e-grouping-bar {
|
|
1118
|
+
/* stylelint-disable */
|
|
1119
|
+
/* stylelint-enable */
|
|
1120
|
+
}
|
|
1073
1121
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1074
1122
|
-ms-flex: auto;
|
|
1075
1123
|
flex: auto;
|
|
@@ -1195,7 +1243,9 @@
|
|
|
1195
1243
|
border: 1px solid #e0e0e0;
|
|
1196
1244
|
border-radius: 25px;
|
|
1197
1245
|
box-shadow: none;
|
|
1246
|
+
/* stylelint-disable */
|
|
1198
1247
|
color: #000 !important;
|
|
1248
|
+
/* stylelint-enable */
|
|
1199
1249
|
cursor: default;
|
|
1200
1250
|
display: -ms-flexbox;
|
|
1201
1251
|
display: flex;
|
|
@@ -1206,6 +1256,8 @@
|
|
|
1206
1256
|
text-transform: none;
|
|
1207
1257
|
vertical-align: bottom;
|
|
1208
1258
|
z-index: 1;
|
|
1259
|
+
/* stylelint-disable */
|
|
1260
|
+
/* stylelint-enable */
|
|
1209
1261
|
}
|
|
1210
1262
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1211
1263
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1542,6 +1594,12 @@
|
|
|
1542
1594
|
.e-pivotview .e-expand::before {
|
|
1543
1595
|
font-size: 10px;
|
|
1544
1596
|
}
|
|
1597
|
+
.e-pivotview.e-rtl {
|
|
1598
|
+
/* stylelint-disable */
|
|
1599
|
+
/* stylelint-enable */
|
|
1600
|
+
/* stylelint-disable */
|
|
1601
|
+
/* stylelint-enable */
|
|
1602
|
+
}
|
|
1545
1603
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1546
1604
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1547
1605
|
margin-left: 0;
|
|
@@ -1613,8 +1671,10 @@
|
|
|
1613
1671
|
padding-right: 8px;
|
|
1614
1672
|
}
|
|
1615
1673
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1674
|
+
/* stylelint-disable */
|
|
1616
1675
|
padding-left: 8px;
|
|
1617
1676
|
padding-right: 0;
|
|
1677
|
+
/* stylelint-enable */
|
|
1618
1678
|
}
|
|
1619
1679
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1620
1680
|
margin-left: 4px;
|
|
@@ -1637,6 +1697,9 @@
|
|
|
1637
1697
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1638
1698
|
float: left;
|
|
1639
1699
|
}
|
|
1700
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1701
|
+
/* stylelint-disable */
|
|
1702
|
+
}
|
|
1640
1703
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1641
1704
|
line-height: 1em !important;
|
|
1642
1705
|
}
|
|
@@ -1714,6 +1777,13 @@
|
|
|
1714
1777
|
margin-right: 5px;
|
|
1715
1778
|
}
|
|
1716
1779
|
|
|
1780
|
+
.e-bigger .e-pivotview,
|
|
1781
|
+
.e-bigger.e-pivotview {
|
|
1782
|
+
/* stylelint-disable */
|
|
1783
|
+
/* stylelint-enable */
|
|
1784
|
+
/* stylelint-disable */
|
|
1785
|
+
/* stylelint-enable */
|
|
1786
|
+
}
|
|
1717
1787
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1718
1788
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1719
1789
|
margin: 0;
|
|
@@ -1776,6 +1846,10 @@
|
|
|
1776
1846
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1777
1847
|
margin-top: 8px;
|
|
1778
1848
|
}
|
|
1849
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1850
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1851
|
+
/* stylelint-enable */
|
|
1852
|
+
}
|
|
1779
1853
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1780
1854
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1781
1855
|
height: 36px !important;
|
|
@@ -1816,6 +1890,7 @@
|
|
|
1816
1890
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1817
1891
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1818
1892
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1893
|
+
/* stylelint-disable */
|
|
1819
1894
|
font-size: 14px !important;
|
|
1820
1895
|
height: 20px;
|
|
1821
1896
|
margin-top: 0;
|
|
@@ -1932,8 +2007,15 @@
|
|
|
1932
2007
|
}
|
|
1933
2008
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1934
2009
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2010
|
+
/* stylelint-disable */
|
|
1935
2011
|
font-size: 13px !important;
|
|
1936
2012
|
}
|
|
2013
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2014
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2015
|
+
/* stylelint-enable */
|
|
2016
|
+
/* stylelint-disable */
|
|
2017
|
+
/* stylelint-enable */
|
|
2018
|
+
}
|
|
1937
2019
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1938
2020
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1939
2021
|
padding-right: 10px !important;
|