@syncfusion/ej2-angular-pivotview 20.2.43-ngcc → 20.2.43
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 -1
- 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 +1848 -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 +1857 -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 -696
- package/dist/ej2-angular-pivotview.umd.js +0 -667
- 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
package/styles/bootstrap4.css
CHANGED
|
@@ -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;
|
|
@@ -245,6 +252,7 @@
|
|
|
245
252
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
246
253
|
box-shadow: none;
|
|
247
254
|
margin-left: 10px;
|
|
255
|
+
/* stylelint-disable */
|
|
248
256
|
}
|
|
249
257
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort {
|
|
250
258
|
background-color: #fff;
|
|
@@ -363,6 +371,7 @@
|
|
|
363
371
|
}
|
|
364
372
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
365
373
|
border: none;
|
|
374
|
+
/* stylelint-enable */
|
|
366
375
|
}
|
|
367
376
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
368
377
|
margin: 0 0 0 6px;
|
|
@@ -615,13 +624,16 @@
|
|
|
615
624
|
}
|
|
616
625
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
617
626
|
margin-left: 18px !important;
|
|
627
|
+
/* stylelint-enable */
|
|
618
628
|
}
|
|
619
629
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
630
|
+
/* stylelint-disable */
|
|
620
631
|
padding: 0 !important;
|
|
621
632
|
}
|
|
622
633
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
623
634
|
float: left;
|
|
624
635
|
font-weight: 500;
|
|
636
|
+
/* stylelint-enable */
|
|
625
637
|
}
|
|
626
638
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
627
639
|
float: right;
|
|
@@ -650,6 +662,7 @@
|
|
|
650
662
|
}
|
|
651
663
|
|
|
652
664
|
.e-pivotview-report-dialog {
|
|
665
|
+
/* stylelint-disable */
|
|
653
666
|
max-width: 350px !important;
|
|
654
667
|
}
|
|
655
668
|
|
|
@@ -669,6 +682,7 @@
|
|
|
669
682
|
max-width: 500px !important;
|
|
670
683
|
}
|
|
671
684
|
|
|
685
|
+
/* stylelint-enable */
|
|
672
686
|
.e-report-outer {
|
|
673
687
|
display: inline-block;
|
|
674
688
|
width: 100%;
|
|
@@ -680,6 +694,7 @@
|
|
|
680
694
|
width: 40%;
|
|
681
695
|
}
|
|
682
696
|
|
|
697
|
+
/* stylelint-disable */
|
|
683
698
|
.e-pivotview-report-input {
|
|
684
699
|
float: right;
|
|
685
700
|
width: 60% !important;
|
|
@@ -701,11 +716,16 @@
|
|
|
701
716
|
font-size: 18px !important;
|
|
702
717
|
}
|
|
703
718
|
|
|
719
|
+
/* stylelint-enable */
|
|
704
720
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
705
721
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
706
722
|
white-space: nowrap;
|
|
707
723
|
}
|
|
708
724
|
|
|
725
|
+
.e-drillthrough-dialog {
|
|
726
|
+
/* stylelint-disable */
|
|
727
|
+
/* stylelint-enable */
|
|
728
|
+
}
|
|
709
729
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
710
730
|
margin-bottom: 20px;
|
|
711
731
|
}
|
|
@@ -726,9 +746,18 @@
|
|
|
726
746
|
flex-wrap: wrap;
|
|
727
747
|
}
|
|
728
748
|
|
|
749
|
+
.e-bigger .e-pivotview,
|
|
750
|
+
.e-bigger.e-pivotview {
|
|
751
|
+
/* stylelint-disable */
|
|
752
|
+
/* stylelint-enable */
|
|
753
|
+
/* stylelint-disable */
|
|
754
|
+
/* stylelint-enable */
|
|
755
|
+
}
|
|
729
756
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
730
757
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
758
|
+
/* stylelint-disable */
|
|
731
759
|
height: 38px !important;
|
|
760
|
+
/* stylelint-enable */
|
|
732
761
|
}
|
|
733
762
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
734
763
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -892,6 +921,18 @@
|
|
|
892
921
|
}
|
|
893
922
|
|
|
894
923
|
/*! PivotView theme */
|
|
924
|
+
.e-pivotview {
|
|
925
|
+
/* stylelint-enable */
|
|
926
|
+
/* stylelint-disable */
|
|
927
|
+
/* stylelint-enable */
|
|
928
|
+
/* stylelint-disable */
|
|
929
|
+
/* stylelint-enable */
|
|
930
|
+
/* stylelint-disable */
|
|
931
|
+
/* stylelint-enable */
|
|
932
|
+
/* stylelint-disable */
|
|
933
|
+
/* stylelint-enable */
|
|
934
|
+
/* stylelint-enable */
|
|
935
|
+
}
|
|
895
936
|
.e-pivotview .e-nextspan {
|
|
896
937
|
display: inline-block;
|
|
897
938
|
width: 18px;
|
|
@@ -912,6 +953,7 @@
|
|
|
912
953
|
text-align: right;
|
|
913
954
|
}
|
|
914
955
|
.e-pivotview .e-grid .e-rowcell {
|
|
956
|
+
/* stylelint-disable */
|
|
915
957
|
font-size: 13px !important;
|
|
916
958
|
padding-left: 8px;
|
|
917
959
|
-webkit-user-select: none;
|
|
@@ -1123,12 +1165,18 @@
|
|
|
1123
1165
|
}
|
|
1124
1166
|
.e-pivotview .e-rowcell {
|
|
1125
1167
|
opacity: 1;
|
|
1168
|
+
/* stylelint-disable */
|
|
1169
|
+
/* stylelint-enable */
|
|
1126
1170
|
}
|
|
1127
1171
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1128
1172
|
-webkit-user-select: none;
|
|
1129
1173
|
-ms-user-select: none;
|
|
1130
1174
|
user-select: none;
|
|
1131
1175
|
}
|
|
1176
|
+
.e-pivotview .e-grouping-bar {
|
|
1177
|
+
/* stylelint-disable */
|
|
1178
|
+
/* stylelint-enable */
|
|
1179
|
+
}
|
|
1132
1180
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1133
1181
|
-ms-flex: auto;
|
|
1134
1182
|
flex: auto;
|
|
@@ -1256,7 +1304,9 @@
|
|
|
1256
1304
|
border: 1px solid #6c757d;
|
|
1257
1305
|
border-radius: 4px;
|
|
1258
1306
|
box-shadow: none;
|
|
1307
|
+
/* stylelint-disable */
|
|
1259
1308
|
color: #fff !important;
|
|
1309
|
+
/* stylelint-enable */
|
|
1260
1310
|
cursor: default;
|
|
1261
1311
|
display: -ms-flexbox;
|
|
1262
1312
|
display: flex;
|
|
@@ -1267,7 +1317,9 @@
|
|
|
1267
1317
|
text-transform: none;
|
|
1268
1318
|
vertical-align: bottom;
|
|
1269
1319
|
z-index: 1;
|
|
1270
|
-
font-weight:
|
|
1320
|
+
font-weight: normal;
|
|
1321
|
+
/* stylelint-disable */
|
|
1322
|
+
/* stylelint-enable */
|
|
1271
1323
|
}
|
|
1272
1324
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1273
1325
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1624,6 +1676,12 @@
|
|
|
1624
1676
|
.e-pivotview .e-expand::before {
|
|
1625
1677
|
font-size: 10px;
|
|
1626
1678
|
}
|
|
1679
|
+
.e-pivotview.e-rtl {
|
|
1680
|
+
/* stylelint-disable */
|
|
1681
|
+
/* stylelint-enable */
|
|
1682
|
+
/* stylelint-disable */
|
|
1683
|
+
/* stylelint-enable */
|
|
1684
|
+
}
|
|
1627
1685
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1628
1686
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1629
1687
|
margin-left: 0;
|
|
@@ -1695,8 +1753,10 @@
|
|
|
1695
1753
|
padding-right: 8px;
|
|
1696
1754
|
}
|
|
1697
1755
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1756
|
+
/* stylelint-disable */
|
|
1698
1757
|
padding-left: 8px;
|
|
1699
1758
|
padding-right: 0;
|
|
1759
|
+
/* stylelint-enable */
|
|
1700
1760
|
}
|
|
1701
1761
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1702
1762
|
margin-left: 4px;
|
|
@@ -1719,6 +1779,9 @@
|
|
|
1719
1779
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1720
1780
|
float: left;
|
|
1721
1781
|
}
|
|
1782
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1783
|
+
/* stylelint-disable */
|
|
1784
|
+
}
|
|
1722
1785
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1723
1786
|
line-height: 1em !important;
|
|
1724
1787
|
}
|
|
@@ -1830,6 +1893,13 @@
|
|
|
1830
1893
|
margin-right: 5px;
|
|
1831
1894
|
}
|
|
1832
1895
|
|
|
1896
|
+
.e-bigger .e-pivotview,
|
|
1897
|
+
.e-bigger.e-pivotview {
|
|
1898
|
+
/* stylelint-disable */
|
|
1899
|
+
/* stylelint-enable */
|
|
1900
|
+
/* stylelint-disable */
|
|
1901
|
+
/* stylelint-enable */
|
|
1902
|
+
}
|
|
1833
1903
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1834
1904
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1835
1905
|
margin: 6px;
|
|
@@ -1893,6 +1963,10 @@
|
|
|
1893
1963
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1894
1964
|
margin-top: 4px;
|
|
1895
1965
|
}
|
|
1966
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1967
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1968
|
+
/* stylelint-enable */
|
|
1969
|
+
}
|
|
1896
1970
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1897
1971
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1898
1972
|
height: 36px !important;
|
|
@@ -1934,6 +2008,7 @@
|
|
|
1934
2008
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1935
2009
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1936
2010
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2011
|
+
/* stylelint-disable */
|
|
1937
2012
|
font-size: 12px !important;
|
|
1938
2013
|
height: 20px;
|
|
1939
2014
|
margin-top: 2px;
|
|
@@ -2079,8 +2154,15 @@
|
|
|
2079
2154
|
}
|
|
2080
2155
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2081
2156
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2157
|
+
/* stylelint-disable */
|
|
2082
2158
|
font-size: 13px !important;
|
|
2083
2159
|
}
|
|
2160
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2161
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2162
|
+
/* stylelint-enable */
|
|
2163
|
+
/* stylelint-disable */
|
|
2164
|
+
/* stylelint-enable */
|
|
2165
|
+
}
|
|
2084
2166
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
2085
2167
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
2086
2168
|
padding-right: 10px !important;
|
|
@@ -2151,6 +2233,10 @@
|
|
|
2151
2233
|
content: "\e718";
|
|
2152
2234
|
}
|
|
2153
2235
|
|
|
2236
|
+
.e-pivot-calc-dialog-div {
|
|
2237
|
+
/* stylelint-disable */
|
|
2238
|
+
/* stylelint-enable */
|
|
2239
|
+
}
|
|
2154
2240
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2155
2241
|
content: "\e7d6";
|
|
2156
2242
|
}
|
|
@@ -2249,6 +2335,11 @@
|
|
|
2249
2335
|
content: "\e665" !important;
|
|
2250
2336
|
}
|
|
2251
2337
|
|
|
2338
|
+
.e-pivotfieldlist-wrapper,
|
|
2339
|
+
.e-pivotfieldlist-container {
|
|
2340
|
+
/* stylelint-disable */
|
|
2341
|
+
/* stylelint-enable */
|
|
2342
|
+
}
|
|
2252
2343
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2253
2344
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2254
2345
|
content: "\e7c1";
|
|
@@ -2444,15 +2535,19 @@
|
|
|
2444
2535
|
}
|
|
2445
2536
|
|
|
2446
2537
|
.e-pivot-formatting-dialog {
|
|
2538
|
+
/* stylelint-disable */
|
|
2447
2539
|
max-height: 480px !important;
|
|
2448
2540
|
width: 625px !important;
|
|
2541
|
+
/* stylelint-enable */
|
|
2449
2542
|
}
|
|
2450
2543
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2451
2544
|
padding-bottom: 4px;
|
|
2452
2545
|
}
|
|
2453
2546
|
.e-pivot-formatting-dialog .e-format-delete-icon {
|
|
2454
2547
|
font-weight: normal;
|
|
2548
|
+
/* stylelint-disable */
|
|
2455
2549
|
color: #000;
|
|
2550
|
+
/* stylelint-enable */
|
|
2456
2551
|
opacity: 0.5;
|
|
2457
2552
|
}
|
|
2458
2553
|
.e-pivot-formatting-dialog .e-format-delete-icon:hover {
|
|
@@ -2491,8 +2586,10 @@
|
|
|
2491
2586
|
float: left;
|
|
2492
2587
|
}
|
|
2493
2588
|
.e-pivot-formatting-dialog .e-split-colorpicker {
|
|
2589
|
+
/* stylelint-disable */
|
|
2494
2590
|
background-color: #6c757d !important;
|
|
2495
2591
|
color: #fff !important;
|
|
2592
|
+
/* stylelint-enable */
|
|
2496
2593
|
}
|
|
2497
2594
|
.e-pivot-formatting-dialog .e-format-delete-button {
|
|
2498
2595
|
background-color: transparent;
|
|
@@ -2528,7 +2625,9 @@
|
|
|
2528
2625
|
border: 1px solid #dee2e6;
|
|
2529
2626
|
border-radius: 4px;
|
|
2530
2627
|
height: 28px;
|
|
2628
|
+
/* stylelint-disable */
|
|
2531
2629
|
margin: 0 !important;
|
|
2630
|
+
/* stylelint-enable */
|
|
2532
2631
|
padding-left: 6px;
|
|
2533
2632
|
padding-top: 6px;
|
|
2534
2633
|
width: 80px;
|
|
@@ -2552,7 +2651,9 @@
|
|
|
2552
2651
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2553
2652
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2554
2653
|
border: 1px solid #dee2e6;
|
|
2654
|
+
/* stylelint-disable */
|
|
2555
2655
|
border-radius: 0 !important;
|
|
2656
|
+
/* stylelint-enable */
|
|
2556
2657
|
height: 40%;
|
|
2557
2658
|
left: -3px;
|
|
2558
2659
|
position: absolute;
|
|
@@ -2560,8 +2661,10 @@
|
|
|
2560
2661
|
width: 150%;
|
|
2561
2662
|
}
|
|
2562
2663
|
.e-pivot-formatting-dialog.e-device {
|
|
2664
|
+
/* stylelint-disable */
|
|
2563
2665
|
min-width: 320px !important;
|
|
2564
2666
|
width: 100% !important;
|
|
2667
|
+
/* stylelint-enable */
|
|
2565
2668
|
}
|
|
2566
2669
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2567
2670
|
width: 100% !important;
|
|
@@ -2610,7 +2713,11 @@
|
|
|
2610
2713
|
|
|
2611
2714
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2612
2715
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2716
|
+
/* stylelint-disable */
|
|
2613
2717
|
width: 670px !important;
|
|
2718
|
+
/* stylelint-enable */
|
|
2719
|
+
/* stylelint-disable */
|
|
2720
|
+
/* stylelint-enable */
|
|
2614
2721
|
}
|
|
2615
2722
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2616
2723
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2653,8 +2760,10 @@
|
|
|
2653
2760
|
}
|
|
2654
2761
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2655
2762
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2763
|
+
/* stylelint-disable */
|
|
2656
2764
|
min-width: 320px !important;
|
|
2657
2765
|
width: 100% !important;
|
|
2766
|
+
/* stylelint-enable */
|
|
2658
2767
|
}
|
|
2659
2768
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2660
2769
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2673,8 +2782,14 @@
|
|
|
2673
2782
|
}
|
|
2674
2783
|
|
|
2675
2784
|
.e-pivot-calc-dialog-div {
|
|
2785
|
+
/* stylelint-disable */
|
|
2676
2786
|
max-height: 600px !important;
|
|
2787
|
+
/* stylelint-enable */
|
|
2677
2788
|
min-width: 290px;
|
|
2789
|
+
/* stylelint-disable */
|
|
2790
|
+
/* stylelint-enable */
|
|
2791
|
+
/* stylelint-disable */
|
|
2792
|
+
/* stylelint-enable */
|
|
2678
2793
|
}
|
|
2679
2794
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2680
2795
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2722,9 +2837,11 @@
|
|
|
2722
2837
|
}
|
|
2723
2838
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2724
2839
|
color: #495057;
|
|
2840
|
+
/* stylelint-disable */
|
|
2725
2841
|
float: right !important;
|
|
2726
2842
|
margin: 0;
|
|
2727
2843
|
margin-right: 12px !important;
|
|
2844
|
+
/* stylelint-enable */
|
|
2728
2845
|
}
|
|
2729
2846
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2730
2847
|
cursor: default;
|
|
@@ -3008,8 +3125,11 @@
|
|
|
3008
3125
|
|
|
3009
3126
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
3010
3127
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3128
|
+
/* stylelint-disable */
|
|
3011
3129
|
max-height: 600px !important;
|
|
3012
3130
|
min-width: 401px !important;
|
|
3131
|
+
/* stylelint-enable */
|
|
3132
|
+
/* stylelint-disable */
|
|
3013
3133
|
}
|
|
3014
3134
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
3015
3135
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3089,6 +3209,9 @@
|
|
|
3089
3209
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3090
3210
|
max-width: 400px !important;
|
|
3091
3211
|
min-width: 320px !important;
|
|
3212
|
+
/* stylelint-enable */
|
|
3213
|
+
/* stylelint-disable */
|
|
3214
|
+
/* stylelint-enable */
|
|
3092
3215
|
}
|
|
3093
3216
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3094
3217
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3130,8 +3253,10 @@
|
|
|
3130
3253
|
}
|
|
3131
3254
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3132
3255
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3256
|
+
/* stylelint-disable */
|
|
3133
3257
|
margin-left: -25px;
|
|
3134
3258
|
overflow: auto !important;
|
|
3259
|
+
/* stylelint-enable */
|
|
3135
3260
|
}
|
|
3136
3261
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3137
3262
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3150,6 +3275,10 @@
|
|
|
3150
3275
|
margin-left: 0;
|
|
3151
3276
|
margin-right: -25px;
|
|
3152
3277
|
}
|
|
3278
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3279
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3280
|
+
/* stylelint-disable */
|
|
3281
|
+
}
|
|
3153
3282
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3154
3283
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3155
3284
|
margin-left: 0;
|
|
@@ -3238,6 +3367,7 @@
|
|
|
3238
3367
|
}
|
|
3239
3368
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3240
3369
|
border: 0;
|
|
3370
|
+
/* stylelint-enable */
|
|
3241
3371
|
}
|
|
3242
3372
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3243
3373
|
margin: 0 0 0 6px;
|
|
@@ -3266,6 +3396,8 @@
|
|
|
3266
3396
|
overflow: auto;
|
|
3267
3397
|
padding: 20px;
|
|
3268
3398
|
padding-bottom: 0;
|
|
3399
|
+
/* stylelint-disable */
|
|
3400
|
+
/* stylelint-enable */
|
|
3269
3401
|
}
|
|
3270
3402
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3271
3403
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3304,6 +3436,9 @@
|
|
|
3304
3436
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3305
3437
|
float: right;
|
|
3306
3438
|
}
|
|
3439
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3440
|
+
/* stylelint-disable */
|
|
3441
|
+
}
|
|
3307
3442
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3308
3443
|
margin-left: 0;
|
|
3309
3444
|
}
|
|
@@ -3441,6 +3576,7 @@
|
|
|
3441
3576
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3442
3577
|
overflow: hidden;
|
|
3443
3578
|
padding: 0 !important;
|
|
3579
|
+
/* stylelint-enable */
|
|
3444
3580
|
}
|
|
3445
3581
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3446
3582
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3510,6 +3646,11 @@
|
|
|
3510
3646
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3511
3647
|
padding-right: 0;
|
|
3512
3648
|
}
|
|
3649
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3650
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3651
|
+
/* stylelint-disable */
|
|
3652
|
+
/* stylelint-enable */
|
|
3653
|
+
}
|
|
3513
3654
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3514
3655
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3515
3656
|
padding-left: 24px;
|
|
@@ -3562,6 +3703,7 @@
|
|
|
3562
3703
|
padding: 4px;
|
|
3563
3704
|
}
|
|
3564
3705
|
|
|
3706
|
+
/* stylelint-disable */
|
|
3565
3707
|
.e-button-drag-clone {
|
|
3566
3708
|
background-color: rgba(0, 0, 0, 0.7) !important;
|
|
3567
3709
|
border: 1px solid #dee2e6;
|
|
@@ -3599,6 +3741,12 @@
|
|
|
3599
3741
|
width: auto !important;
|
|
3600
3742
|
}
|
|
3601
3743
|
|
|
3744
|
+
/* stylelint-enable */
|
|
3745
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3746
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3747
|
+
/* stylelint-disable */
|
|
3748
|
+
/* stylelint-enable */
|
|
3749
|
+
}
|
|
3602
3750
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3603
3751
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3604
3752
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3671,6 +3819,10 @@
|
|
|
3671
3819
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3672
3820
|
margin-left: 10px;
|
|
3673
3821
|
}
|
|
3822
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3823
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3824
|
+
/* stylelint-disable */
|
|
3825
|
+
}
|
|
3674
3826
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text,
|
|
3675
3827
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3676
3828
|
margin: 0 0 0 6px;
|
|
@@ -3819,6 +3971,7 @@
|
|
|
3819
3971
|
background-color: #999;
|
|
3820
3972
|
}
|
|
3821
3973
|
|
|
3974
|
+
/* stylelint-disable */
|
|
3822
3975
|
*.e-rtl .e-select-table {
|
|
3823
3976
|
padding: 8px 5px;
|
|
3824
3977
|
}
|
|
@@ -3857,6 +4010,8 @@
|
|
|
3857
4010
|
font-size: 14px;
|
|
3858
4011
|
max-width: 700px;
|
|
3859
4012
|
min-width: 300px;
|
|
4013
|
+
/* stylelint-enable */
|
|
4014
|
+
/* stylelint-enable */
|
|
3860
4015
|
}
|
|
3861
4016
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3862
4017
|
display: -ms-flexbox;
|
|
@@ -3977,6 +4132,8 @@
|
|
|
3977
4132
|
display: -ms-flexbox;
|
|
3978
4133
|
display: flex;
|
|
3979
4134
|
padding-right: 8px;
|
|
4135
|
+
/* stylelint-disable */
|
|
4136
|
+
/* stylelint-enable */
|
|
3980
4137
|
}
|
|
3981
4138
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3982
4139
|
-ms-flex: auto;
|
|
@@ -3988,7 +4145,9 @@
|
|
|
3988
4145
|
color: #555;
|
|
3989
4146
|
cursor: pointer;
|
|
3990
4147
|
font-size: 14px;
|
|
4148
|
+
/* stylelint-disable */
|
|
3991
4149
|
height: 20px !important;
|
|
4150
|
+
/* stylelint-enable */
|
|
3992
4151
|
padding: 7px 0 0 8px;
|
|
3993
4152
|
width: 20px;
|
|
3994
4153
|
}
|
|
@@ -4021,9 +4180,13 @@
|
|
|
4021
4180
|
}
|
|
4022
4181
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
4023
4182
|
overflow: hidden;
|
|
4183
|
+
/* stylelint-disable */
|
|
4184
|
+
/* stylelint-enable */
|
|
4024
4185
|
}
|
|
4025
4186
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
4026
4187
|
margin-left: -40px;
|
|
4188
|
+
/* stylelint-disable */
|
|
4189
|
+
/* stylelint-enable */
|
|
4027
4190
|
}
|
|
4028
4191
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
4029
4192
|
cursor: default;
|
|
@@ -4533,6 +4696,8 @@
|
|
|
4533
4696
|
}
|
|
4534
4697
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4535
4698
|
height: 369px;
|
|
4699
|
+
/* stylelint-disable */
|
|
4700
|
+
/* stylelint-enable */
|
|
4536
4701
|
}
|
|
4537
4702
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4538
4703
|
height: 394px !important;
|
|
@@ -4556,6 +4721,7 @@
|
|
|
4556
4721
|
display: -ms-flexbox;
|
|
4557
4722
|
display: flex;
|
|
4558
4723
|
padding: 10px 20px;
|
|
4724
|
+
/* stylelint-disable */
|
|
4559
4725
|
}
|
|
4560
4726
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4561
4727
|
float: right;
|
|
@@ -4592,6 +4758,8 @@
|
|
|
4592
4758
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4593
4759
|
margin-left: 0;
|
|
4594
4760
|
margin-right: -40px;
|
|
4761
|
+
/* stylelint-disable */
|
|
4762
|
+
/* stylelint-enable */
|
|
4595
4763
|
}
|
|
4596
4764
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4597
4765
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -4623,6 +4791,8 @@
|
|
|
4623
4791
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4624
4792
|
padding-left: 8px;
|
|
4625
4793
|
padding-right: 0;
|
|
4794
|
+
/* stylelint-disable */
|
|
4795
|
+
/* stylelint-enable */
|
|
4626
4796
|
}
|
|
4627
4797
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4628
4798
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4704,8 +4874,10 @@
|
|
|
4704
4874
|
}
|
|
4705
4875
|
.e-pivotfieldlist-container.e-device {
|
|
4706
4876
|
height: 100%;
|
|
4877
|
+
/* stylelint-disable */
|
|
4707
4878
|
max-height: 100% !important;
|
|
4708
4879
|
max-width: 100% !important;
|
|
4880
|
+
/* stylelint-enable */
|
|
4709
4881
|
min-height: 500px;
|
|
4710
4882
|
width: 100%;
|
|
4711
4883
|
}
|
|
@@ -4810,6 +4982,8 @@
|
|
|
4810
4982
|
padding: 9px 16px;
|
|
4811
4983
|
text-transform: none;
|
|
4812
4984
|
width: 100%;
|
|
4985
|
+
/* stylelint-disable */
|
|
4986
|
+
/* stylelint-enable */
|
|
4813
4987
|
}
|
|
4814
4988
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4815
4989
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -5000,6 +5174,10 @@
|
|
|
5000
5174
|
vertical-align: middle;
|
|
5001
5175
|
width: 70%;
|
|
5002
5176
|
}
|
|
5177
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5178
|
+
/* stylelint-disable */
|
|
5179
|
+
/* stylelint-enable */
|
|
5180
|
+
}
|
|
5003
5181
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
5004
5182
|
background-color: #fff;
|
|
5005
5183
|
border: 1px solid #ced4da;
|
|
@@ -5046,6 +5224,10 @@
|
|
|
5046
5224
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
5047
5225
|
margin-right: 12px;
|
|
5048
5226
|
}
|
|
5227
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5228
|
+
/* stylelint-disable */
|
|
5229
|
+
/* stylelint-enable */
|
|
5230
|
+
}
|
|
5049
5231
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
5050
5232
|
left: 16px;
|
|
5051
5233
|
right: auto;
|
|
@@ -5195,6 +5377,10 @@
|
|
|
5195
5377
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5196
5378
|
max-height: 600px;
|
|
5197
5379
|
}
|
|
5380
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5381
|
+
/* stylelint-disable */
|
|
5382
|
+
/* stylelint-enable */
|
|
5383
|
+
}
|
|
5198
5384
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5199
5385
|
margin-left: 12px;
|
|
5200
5386
|
margin-right: 0;
|
|
@@ -5215,6 +5401,11 @@
|
|
|
5215
5401
|
margin-left: 20px;
|
|
5216
5402
|
}
|
|
5217
5403
|
|
|
5404
|
+
/* stylelint-disable */
|
|
5405
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5406
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5407
|
+
/* stylelint-enable */
|
|
5408
|
+
}
|
|
5218
5409
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5219
5410
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5220
5411
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5379,6 +5570,7 @@
|
|
|
5379
5570
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5380
5571
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5381
5572
|
height: 126px;
|
|
5573
|
+
/* stylelint-disable */
|
|
5382
5574
|
}
|
|
5383
5575
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
5384
5576
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
@@ -5391,6 +5583,7 @@
|
|
|
5391
5583
|
font-size: 16px;
|
|
5392
5584
|
height: 36px !important;
|
|
5393
5585
|
padding: 9px 12px !important;
|
|
5586
|
+
/* stylelint-enable */
|
|
5394
5587
|
}
|
|
5395
5588
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button .e-content,
|
|
5396
5589
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -5525,6 +5718,10 @@
|
|
|
5525
5718
|
.e-bigger.e-pivotfieldlist-container.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container .e-axis-icon-container {
|
|
5526
5719
|
padding-top: 9px;
|
|
5527
5720
|
}
|
|
5721
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5722
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5723
|
+
/* stylelint-disable */
|
|
5724
|
+
}
|
|
5528
5725
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5529
5726
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5530
5727
|
padding-left: 16px;
|
|
@@ -5537,6 +5734,7 @@
|
|
|
5537
5734
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5538
5735
|
padding-left: 0;
|
|
5539
5736
|
padding-right: 5px;
|
|
5737
|
+
/* stylelint-enable */
|
|
5540
5738
|
}
|
|
5541
5739
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5542
5740
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5575,6 +5773,8 @@
|
|
|
5575
5773
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5576
5774
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5577
5775
|
padding-left: 12px;
|
|
5776
|
+
/* stylelint-disable */
|
|
5777
|
+
/* stylelint-enable */
|
|
5578
5778
|
}
|
|
5579
5779
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5580
5780
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5642,6 +5842,10 @@
|
|
|
5642
5842
|
padding-left: 0;
|
|
5643
5843
|
padding-right: 8px;
|
|
5644
5844
|
}
|
|
5845
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5846
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5847
|
+
/* stylelint-disable */
|
|
5848
|
+
}
|
|
5645
5849
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5646
5850
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5647
5851
|
max-height: 750px;
|
|
@@ -5678,4 +5882,6 @@
|
|
|
5678
5882
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5679
5883
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5680
5884
|
max-height: 177px;
|
|
5681
|
-
}
|
|
5885
|
+
}
|
|
5886
|
+
|
|
5887
|
+
/* stylelint-enable */
|