@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.
- 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 +233 -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 +191 -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 +1852 -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 +1862 -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 +358 -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 +357 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_material.scss +357 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +356 -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 +131 -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 +131 -0
- package/styles/pivotview/_fusionnew-definition.scss +131 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +132 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +131 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +130 -0
- package/styles/pivotview/_theme.scss +1583 -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 -674
- 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
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: 550px !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 {
|
|
@@ -2719,9 +2834,11 @@
|
|
|
2719
2834
|
}
|
|
2720
2835
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2721
2836
|
color: #495057;
|
|
2837
|
+
/* stylelint-disable */
|
|
2722
2838
|
float: right !important;
|
|
2723
2839
|
margin: 0;
|
|
2724
2840
|
margin-right: 12px !important;
|
|
2841
|
+
/* stylelint-enable */
|
|
2725
2842
|
}
|
|
2726
2843
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2727
2844
|
cursor: default;
|
|
@@ -3005,8 +3122,11 @@
|
|
|
3005
3122
|
|
|
3006
3123
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
3007
3124
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3125
|
+
/* stylelint-disable */
|
|
3008
3126
|
max-height: 600px !important;
|
|
3009
3127
|
min-width: 401px !important;
|
|
3128
|
+
/* stylelint-enable */
|
|
3129
|
+
/* stylelint-disable */
|
|
3010
3130
|
}
|
|
3011
3131
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
3012
3132
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3086,6 +3206,9 @@
|
|
|
3086
3206
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3087
3207
|
max-width: 400px !important;
|
|
3088
3208
|
min-width: 320px !important;
|
|
3209
|
+
/* stylelint-enable */
|
|
3210
|
+
/* stylelint-disable */
|
|
3211
|
+
/* stylelint-enable */
|
|
3089
3212
|
}
|
|
3090
3213
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3091
3214
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3127,8 +3250,10 @@
|
|
|
3127
3250
|
}
|
|
3128
3251
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3129
3252
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3253
|
+
/* stylelint-disable */
|
|
3130
3254
|
margin-left: -25px;
|
|
3131
3255
|
overflow: auto !important;
|
|
3256
|
+
/* stylelint-enable */
|
|
3132
3257
|
}
|
|
3133
3258
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3134
3259
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3147,6 +3272,10 @@
|
|
|
3147
3272
|
margin-left: 0;
|
|
3148
3273
|
margin-right: -25px;
|
|
3149
3274
|
}
|
|
3275
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3276
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3277
|
+
/* stylelint-disable */
|
|
3278
|
+
}
|
|
3150
3279
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3151
3280
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3152
3281
|
margin-left: 0;
|
|
@@ -3235,6 +3364,7 @@
|
|
|
3235
3364
|
}
|
|
3236
3365
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3237
3366
|
border: 0;
|
|
3367
|
+
/* stylelint-enable */
|
|
3238
3368
|
}
|
|
3239
3369
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3240
3370
|
margin: 0 0 0 6px;
|
|
@@ -3263,6 +3393,8 @@
|
|
|
3263
3393
|
overflow: auto;
|
|
3264
3394
|
padding: 20px;
|
|
3265
3395
|
padding-bottom: 0;
|
|
3396
|
+
/* stylelint-disable */
|
|
3397
|
+
/* stylelint-enable */
|
|
3266
3398
|
}
|
|
3267
3399
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3268
3400
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3301,6 +3433,9 @@
|
|
|
3301
3433
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3302
3434
|
float: right;
|
|
3303
3435
|
}
|
|
3436
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3437
|
+
/* stylelint-disable */
|
|
3438
|
+
}
|
|
3304
3439
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3305
3440
|
margin-left: 0;
|
|
3306
3441
|
}
|
|
@@ -3438,6 +3573,7 @@
|
|
|
3438
3573
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3439
3574
|
overflow: hidden;
|
|
3440
3575
|
padding: 0 !important;
|
|
3576
|
+
/* stylelint-enable */
|
|
3441
3577
|
}
|
|
3442
3578
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3443
3579
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3507,6 +3643,11 @@
|
|
|
3507
3643
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3508
3644
|
padding-right: 0;
|
|
3509
3645
|
}
|
|
3646
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3647
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3648
|
+
/* stylelint-disable */
|
|
3649
|
+
/* stylelint-enable */
|
|
3650
|
+
}
|
|
3510
3651
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3511
3652
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3512
3653
|
padding-left: 24px;
|
|
@@ -3559,6 +3700,7 @@
|
|
|
3559
3700
|
padding: 4px;
|
|
3560
3701
|
}
|
|
3561
3702
|
|
|
3703
|
+
/* stylelint-disable */
|
|
3562
3704
|
.e-button-drag-clone {
|
|
3563
3705
|
background-color: rgba(0, 0, 0, 0.7) !important;
|
|
3564
3706
|
border: 1px solid #dee2e6;
|
|
@@ -3596,6 +3738,12 @@
|
|
|
3596
3738
|
width: auto !important;
|
|
3597
3739
|
}
|
|
3598
3740
|
|
|
3741
|
+
/* stylelint-enable */
|
|
3742
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3743
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3744
|
+
/* stylelint-disable */
|
|
3745
|
+
/* stylelint-enable */
|
|
3746
|
+
}
|
|
3599
3747
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3600
3748
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3601
3749
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3668,6 +3816,10 @@
|
|
|
3668
3816
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3669
3817
|
margin-left: 10px;
|
|
3670
3818
|
}
|
|
3819
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3820
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3821
|
+
/* stylelint-disable */
|
|
3822
|
+
}
|
|
3671
3823
|
.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,
|
|
3672
3824
|
.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 {
|
|
3673
3825
|
margin: 0 0 0 6px;
|
|
@@ -3816,6 +3968,7 @@
|
|
|
3816
3968
|
background-color: #999;
|
|
3817
3969
|
}
|
|
3818
3970
|
|
|
3971
|
+
/* stylelint-disable */
|
|
3819
3972
|
*.e-rtl .e-select-table {
|
|
3820
3973
|
padding: 8px 5px;
|
|
3821
3974
|
}
|
|
@@ -3854,6 +4007,8 @@
|
|
|
3854
4007
|
font-size: 14px;
|
|
3855
4008
|
max-width: 700px;
|
|
3856
4009
|
min-width: 300px;
|
|
4010
|
+
/* stylelint-enable */
|
|
4011
|
+
/* stylelint-enable */
|
|
3857
4012
|
}
|
|
3858
4013
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3859
4014
|
display: -ms-flexbox;
|
|
@@ -3974,6 +4129,8 @@
|
|
|
3974
4129
|
display: -ms-flexbox;
|
|
3975
4130
|
display: flex;
|
|
3976
4131
|
padding-right: 8px;
|
|
4132
|
+
/* stylelint-disable */
|
|
4133
|
+
/* stylelint-enable */
|
|
3977
4134
|
}
|
|
3978
4135
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3979
4136
|
-ms-flex: auto;
|
|
@@ -3985,7 +4142,9 @@
|
|
|
3985
4142
|
color: #555;
|
|
3986
4143
|
cursor: pointer;
|
|
3987
4144
|
font-size: 14px;
|
|
4145
|
+
/* stylelint-disable */
|
|
3988
4146
|
height: 20px !important;
|
|
4147
|
+
/* stylelint-enable */
|
|
3989
4148
|
padding: 7px 0 0 8px;
|
|
3990
4149
|
width: 20px;
|
|
3991
4150
|
}
|
|
@@ -4018,9 +4177,13 @@
|
|
|
4018
4177
|
}
|
|
4019
4178
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
4020
4179
|
overflow: hidden;
|
|
4180
|
+
/* stylelint-disable */
|
|
4181
|
+
/* stylelint-enable */
|
|
4021
4182
|
}
|
|
4022
4183
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
4023
4184
|
margin-left: -40px;
|
|
4185
|
+
/* stylelint-disable */
|
|
4186
|
+
/* stylelint-enable */
|
|
4024
4187
|
}
|
|
4025
4188
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
4026
4189
|
cursor: default;
|
|
@@ -4530,6 +4693,8 @@
|
|
|
4530
4693
|
}
|
|
4531
4694
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4532
4695
|
height: 369px;
|
|
4696
|
+
/* stylelint-disable */
|
|
4697
|
+
/* stylelint-enable */
|
|
4533
4698
|
}
|
|
4534
4699
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4535
4700
|
height: 394px !important;
|
|
@@ -4553,6 +4718,7 @@
|
|
|
4553
4718
|
display: -ms-flexbox;
|
|
4554
4719
|
display: flex;
|
|
4555
4720
|
padding: 10px 20px;
|
|
4721
|
+
/* stylelint-disable */
|
|
4556
4722
|
}
|
|
4557
4723
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4558
4724
|
float: right;
|
|
@@ -4589,6 +4755,8 @@
|
|
|
4589
4755
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4590
4756
|
margin-left: 0;
|
|
4591
4757
|
margin-right: -40px;
|
|
4758
|
+
/* stylelint-disable */
|
|
4759
|
+
/* stylelint-enable */
|
|
4592
4760
|
}
|
|
4593
4761
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4594
4762
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
@@ -4620,6 +4788,8 @@
|
|
|
4620
4788
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4621
4789
|
padding-left: 8px;
|
|
4622
4790
|
padding-right: 0;
|
|
4791
|
+
/* stylelint-disable */
|
|
4792
|
+
/* stylelint-enable */
|
|
4623
4793
|
}
|
|
4624
4794
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4625
4795
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4701,8 +4871,10 @@
|
|
|
4701
4871
|
}
|
|
4702
4872
|
.e-pivotfieldlist-container.e-device {
|
|
4703
4873
|
height: 100%;
|
|
4874
|
+
/* stylelint-disable */
|
|
4704
4875
|
max-height: 100% !important;
|
|
4705
4876
|
max-width: 100% !important;
|
|
4877
|
+
/* stylelint-enable */
|
|
4706
4878
|
min-height: 500px;
|
|
4707
4879
|
width: 100%;
|
|
4708
4880
|
}
|
|
@@ -4807,6 +4979,8 @@
|
|
|
4807
4979
|
padding: 9px 16px;
|
|
4808
4980
|
text-transform: none;
|
|
4809
4981
|
width: 100%;
|
|
4982
|
+
/* stylelint-disable */
|
|
4983
|
+
/* stylelint-enable */
|
|
4810
4984
|
}
|
|
4811
4985
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4812
4986
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4997,6 +5171,10 @@
|
|
|
4997
5171
|
vertical-align: middle;
|
|
4998
5172
|
width: 70%;
|
|
4999
5173
|
}
|
|
5174
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5175
|
+
/* stylelint-disable */
|
|
5176
|
+
/* stylelint-enable */
|
|
5177
|
+
}
|
|
5000
5178
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
5001
5179
|
background-color: #fff;
|
|
5002
5180
|
border: 1px solid #ced4da;
|
|
@@ -5044,6 +5222,10 @@
|
|
|
5044
5222
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
5045
5223
|
margin-right: 12px;
|
|
5046
5224
|
}
|
|
5225
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5226
|
+
/* stylelint-disable */
|
|
5227
|
+
/* stylelint-enable */
|
|
5228
|
+
}
|
|
5047
5229
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
5048
5230
|
left: 16px;
|
|
5049
5231
|
right: auto;
|
|
@@ -5193,6 +5375,10 @@
|
|
|
5193
5375
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5194
5376
|
max-height: 600px;
|
|
5195
5377
|
}
|
|
5378
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5379
|
+
/* stylelint-disable */
|
|
5380
|
+
/* stylelint-enable */
|
|
5381
|
+
}
|
|
5196
5382
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5197
5383
|
margin-left: 12px;
|
|
5198
5384
|
margin-right: 0;
|
|
@@ -5213,6 +5399,11 @@
|
|
|
5213
5399
|
margin-left: 20px;
|
|
5214
5400
|
}
|
|
5215
5401
|
|
|
5402
|
+
/* stylelint-disable */
|
|
5403
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5404
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5405
|
+
/* stylelint-enable */
|
|
5406
|
+
}
|
|
5216
5407
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5217
5408
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5218
5409
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5377,6 +5568,7 @@
|
|
|
5377
5568
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5378
5569
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5379
5570
|
height: 126px;
|
|
5571
|
+
/* stylelint-disable */
|
|
5380
5572
|
}
|
|
5381
5573
|
.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,
|
|
5382
5574
|
.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,
|
|
@@ -5389,6 +5581,7 @@
|
|
|
5389
5581
|
font-size: 16px;
|
|
5390
5582
|
height: 36px !important;
|
|
5391
5583
|
padding: 9px 12px !important;
|
|
5584
|
+
/* stylelint-enable */
|
|
5392
5585
|
}
|
|
5393
5586
|
.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,
|
|
5394
5587
|
.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,
|
|
@@ -5523,6 +5716,10 @@
|
|
|
5523
5716
|
.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 {
|
|
5524
5717
|
padding-top: 9px;
|
|
5525
5718
|
}
|
|
5719
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5720
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5721
|
+
/* stylelint-disable */
|
|
5722
|
+
}
|
|
5526
5723
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5527
5724
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5528
5725
|
padding-left: 16px;
|
|
@@ -5535,6 +5732,7 @@
|
|
|
5535
5732
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5536
5733
|
padding-left: 0;
|
|
5537
5734
|
padding-right: 5px;
|
|
5735
|
+
/* stylelint-enable */
|
|
5538
5736
|
}
|
|
5539
5737
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5540
5738
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5573,6 +5771,8 @@
|
|
|
5573
5771
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5574
5772
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5575
5773
|
padding-left: 12px;
|
|
5774
|
+
/* stylelint-disable */
|
|
5775
|
+
/* stylelint-enable */
|
|
5576
5776
|
}
|
|
5577
5777
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5578
5778
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5640,6 +5840,10 @@
|
|
|
5640
5840
|
padding-left: 0;
|
|
5641
5841
|
padding-right: 8px;
|
|
5642
5842
|
}
|
|
5843
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5844
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5845
|
+
/* stylelint-disable */
|
|
5846
|
+
}
|
|
5643
5847
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5644
5848
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5645
5849
|
max-height: 750px;
|
|
@@ -5676,4 +5880,6 @@
|
|
|
5676
5880
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5677
5881
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5678
5882
|
max-height: 177px;
|
|
5679
|
-
}
|
|
5883
|
+
}
|
|
5884
|
+
|
|
5885
|
+
/* stylelint-enable */
|