@syncfusion/ej2-angular-pivotview 20.2.38-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 +213 -2
- package/styles/bootstrap.css +213 -2
- package/styles/bootstrap4.css +209 -3
- package/styles/bootstrap5-dark.css +215 -2
- package/styles/bootstrap5.css +215 -2
- package/styles/fabric-dark.css +213 -2
- package/styles/fabric.css +213 -2
- package/styles/fluent-dark.css +216 -3
- package/styles/fluent.css +216 -3
- package/styles/highcontrast-light.css +213 -2
- package/styles/highcontrast.css +213 -2
- package/styles/material-dark.css +213 -2
- package/styles/material.css +213 -2
- 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 +131 -2
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +131 -2
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +126 -2
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +135 -2
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +135 -2
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +131 -2
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +131 -2
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +134 -3
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +134 -3
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +131 -2
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +131 -2
- 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 +131 -2
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +131 -2
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +134 -3
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +134 -3
- 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 +214 -3
- package/styles/tailwind.css +214 -3
- 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/fluent.css
CHANGED
|
@@ -155,6 +155,12 @@
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
/*! PivotView layout */
|
|
158
|
+
.e-pivotview {
|
|
159
|
+
/* stylelint-disable */
|
|
160
|
+
/* stylelint-enable */
|
|
161
|
+
/* stylelint-enable */
|
|
162
|
+
/* stylelint-disable */
|
|
163
|
+
}
|
|
158
164
|
.e-pivotview .e-value-field-settings,
|
|
159
165
|
.e-pivotview .e-member-editor-dialog,
|
|
160
166
|
.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;
|
|
@@ -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;
|
|
@@ -591,13 +600,16 @@
|
|
|
591
600
|
}
|
|
592
601
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
593
602
|
margin-left: 18px !important;
|
|
603
|
+
/* stylelint-enable */
|
|
594
604
|
}
|
|
595
605
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
606
|
+
/* stylelint-disable */
|
|
596
607
|
padding: 0 !important;
|
|
597
608
|
}
|
|
598
609
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
599
610
|
float: left;
|
|
600
611
|
font-weight: 500;
|
|
612
|
+
/* stylelint-enable */
|
|
601
613
|
}
|
|
602
614
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
603
615
|
float: right;
|
|
@@ -626,6 +638,7 @@
|
|
|
626
638
|
}
|
|
627
639
|
|
|
628
640
|
.e-pivotview-report-dialog {
|
|
641
|
+
/* stylelint-disable */
|
|
629
642
|
max-width: 350px !important;
|
|
630
643
|
}
|
|
631
644
|
|
|
@@ -645,6 +658,7 @@
|
|
|
645
658
|
max-width: 500px !important;
|
|
646
659
|
}
|
|
647
660
|
|
|
661
|
+
/* stylelint-enable */
|
|
648
662
|
.e-report-outer {
|
|
649
663
|
display: inline-block;
|
|
650
664
|
width: 100%;
|
|
@@ -657,6 +671,7 @@
|
|
|
657
671
|
width: 40%;
|
|
658
672
|
}
|
|
659
673
|
|
|
674
|
+
/* stylelint-disable */
|
|
660
675
|
.e-pivotview-report-input {
|
|
661
676
|
float: right;
|
|
662
677
|
width: 60% !important;
|
|
@@ -678,11 +693,16 @@
|
|
|
678
693
|
font-size: 18px !important;
|
|
679
694
|
}
|
|
680
695
|
|
|
696
|
+
/* stylelint-enable */
|
|
681
697
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
682
698
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
683
699
|
white-space: nowrap;
|
|
684
700
|
}
|
|
685
701
|
|
|
702
|
+
.e-drillthrough-dialog {
|
|
703
|
+
/* stylelint-disable */
|
|
704
|
+
/* stylelint-enable */
|
|
705
|
+
}
|
|
686
706
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
687
707
|
margin-bottom: 20px;
|
|
688
708
|
}
|
|
@@ -703,9 +723,18 @@
|
|
|
703
723
|
flex-wrap: wrap;
|
|
704
724
|
}
|
|
705
725
|
|
|
726
|
+
.e-bigger .e-pivotview,
|
|
727
|
+
.e-bigger.e-pivotview {
|
|
728
|
+
/* stylelint-disable */
|
|
729
|
+
/* stylelint-enable */
|
|
730
|
+
/* stylelint-disable */
|
|
731
|
+
/* stylelint-enable */
|
|
732
|
+
}
|
|
706
733
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
707
734
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
735
|
+
/* stylelint-disable */
|
|
708
736
|
height: 26px !important;
|
|
737
|
+
/* stylelint-enable */
|
|
709
738
|
}
|
|
710
739
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
711
740
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -861,6 +890,18 @@
|
|
|
861
890
|
}
|
|
862
891
|
|
|
863
892
|
/*! PivotView theme */
|
|
893
|
+
.e-pivotview {
|
|
894
|
+
/* stylelint-enable */
|
|
895
|
+
/* stylelint-disable */
|
|
896
|
+
/* stylelint-enable */
|
|
897
|
+
/* stylelint-disable */
|
|
898
|
+
/* stylelint-enable */
|
|
899
|
+
/* stylelint-disable */
|
|
900
|
+
/* stylelint-enable */
|
|
901
|
+
/* stylelint-disable */
|
|
902
|
+
/* stylelint-enable */
|
|
903
|
+
/* stylelint-enable */
|
|
904
|
+
}
|
|
864
905
|
.e-pivotview .e-nextspan {
|
|
865
906
|
display: inline-block;
|
|
866
907
|
width: 18px;
|
|
@@ -881,6 +922,7 @@
|
|
|
881
922
|
text-align: right;
|
|
882
923
|
}
|
|
883
924
|
.e-pivotview .e-grid .e-rowcell {
|
|
925
|
+
/* stylelint-disable */
|
|
884
926
|
font-size: 14px !important;
|
|
885
927
|
padding-left: 8px;
|
|
886
928
|
-webkit-user-select: none;
|
|
@@ -1089,12 +1131,18 @@
|
|
|
1089
1131
|
}
|
|
1090
1132
|
.e-pivotview .e-rowcell {
|
|
1091
1133
|
opacity: 1;
|
|
1134
|
+
/* stylelint-disable */
|
|
1135
|
+
/* stylelint-enable */
|
|
1092
1136
|
}
|
|
1093
1137
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1094
1138
|
-webkit-user-select: none;
|
|
1095
1139
|
-ms-user-select: none;
|
|
1096
1140
|
user-select: none;
|
|
1097
1141
|
}
|
|
1142
|
+
.e-pivotview .e-grouping-bar {
|
|
1143
|
+
/* stylelint-disable */
|
|
1144
|
+
/* stylelint-enable */
|
|
1145
|
+
}
|
|
1098
1146
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1099
1147
|
-ms-flex: auto;
|
|
1100
1148
|
flex: auto;
|
|
@@ -1224,7 +1272,9 @@
|
|
|
1224
1272
|
border: 1px solid #f3f2f1;
|
|
1225
1273
|
border-radius: 2px;
|
|
1226
1274
|
box-shadow: none;
|
|
1275
|
+
/* stylelint-disable */
|
|
1227
1276
|
color: #323130 !important;
|
|
1277
|
+
/* stylelint-enable */
|
|
1228
1278
|
cursor: default;
|
|
1229
1279
|
display: -ms-flexbox;
|
|
1230
1280
|
display: flex;
|
|
@@ -1235,6 +1285,8 @@
|
|
|
1235
1285
|
text-transform: none;
|
|
1236
1286
|
vertical-align: bottom;
|
|
1237
1287
|
z-index: 1;
|
|
1288
|
+
/* stylelint-disable */
|
|
1289
|
+
/* stylelint-enable */
|
|
1238
1290
|
}
|
|
1239
1291
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1240
1292
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1575,6 +1627,12 @@
|
|
|
1575
1627
|
.e-pivotview .e-expand::before {
|
|
1576
1628
|
font-size: 18px;
|
|
1577
1629
|
}
|
|
1630
|
+
.e-pivotview.e-rtl {
|
|
1631
|
+
/* stylelint-disable */
|
|
1632
|
+
/* stylelint-enable */
|
|
1633
|
+
/* stylelint-disable */
|
|
1634
|
+
/* stylelint-enable */
|
|
1635
|
+
}
|
|
1578
1636
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1579
1637
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1580
1638
|
margin-left: 0;
|
|
@@ -1646,8 +1704,10 @@
|
|
|
1646
1704
|
padding-right: 8px;
|
|
1647
1705
|
}
|
|
1648
1706
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1707
|
+
/* stylelint-disable */
|
|
1649
1708
|
padding-left: 8px;
|
|
1650
1709
|
padding-right: 0;
|
|
1710
|
+
/* stylelint-enable */
|
|
1651
1711
|
}
|
|
1652
1712
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1653
1713
|
margin-left: 4px;
|
|
@@ -1670,6 +1730,9 @@
|
|
|
1670
1730
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1671
1731
|
float: left;
|
|
1672
1732
|
}
|
|
1733
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1734
|
+
/* stylelint-disable */
|
|
1735
|
+
}
|
|
1673
1736
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1674
1737
|
line-height: 1em !important;
|
|
1675
1738
|
}
|
|
@@ -1747,6 +1810,13 @@
|
|
|
1747
1810
|
margin-right: 5px;
|
|
1748
1811
|
}
|
|
1749
1812
|
|
|
1813
|
+
.e-bigger .e-pivotview,
|
|
1814
|
+
.e-bigger.e-pivotview {
|
|
1815
|
+
/* stylelint-disable */
|
|
1816
|
+
/* stylelint-enable */
|
|
1817
|
+
/* stylelint-disable */
|
|
1818
|
+
/* stylelint-enable */
|
|
1819
|
+
}
|
|
1750
1820
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1751
1821
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1752
1822
|
margin: 4px;
|
|
@@ -1809,6 +1879,10 @@
|
|
|
1809
1879
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1810
1880
|
margin-top: 0;
|
|
1811
1881
|
}
|
|
1882
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1883
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1884
|
+
/* stylelint-enable */
|
|
1885
|
+
}
|
|
1812
1886
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1813
1887
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1814
1888
|
height: 36px !important;
|
|
@@ -1849,6 +1923,7 @@
|
|
|
1849
1923
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1850
1924
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1851
1925
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1926
|
+
/* stylelint-disable */
|
|
1852
1927
|
font-size: 14px !important;
|
|
1853
1928
|
height: 20px;
|
|
1854
1929
|
margin-top: 2px;
|
|
@@ -1978,8 +2053,15 @@
|
|
|
1978
2053
|
}
|
|
1979
2054
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1980
2055
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2056
|
+
/* stylelint-disable */
|
|
1981
2057
|
font-size: 16px !important;
|
|
1982
2058
|
}
|
|
2059
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2060
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2061
|
+
/* stylelint-enable */
|
|
2062
|
+
/* stylelint-disable */
|
|
2063
|
+
/* stylelint-enable */
|
|
2064
|
+
}
|
|
1983
2065
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1984
2066
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1985
2067
|
padding-right: 10px !important;
|
|
@@ -2058,6 +2140,10 @@
|
|
|
2058
2140
|
content: "\e774";
|
|
2059
2141
|
}
|
|
2060
2142
|
|
|
2143
|
+
.e-pivot-calc-dialog-div {
|
|
2144
|
+
/* stylelint-disable */
|
|
2145
|
+
/* stylelint-enable */
|
|
2146
|
+
}
|
|
2061
2147
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2062
2148
|
content: "\e726";
|
|
2063
2149
|
}
|
|
@@ -2156,6 +2242,11 @@
|
|
|
2156
2242
|
content: "\e7d8" !important;
|
|
2157
2243
|
}
|
|
2158
2244
|
|
|
2245
|
+
.e-pivotfieldlist-wrapper,
|
|
2246
|
+
.e-pivotfieldlist-container {
|
|
2247
|
+
/* stylelint-disable */
|
|
2248
|
+
/* stylelint-enable */
|
|
2249
|
+
}
|
|
2159
2250
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2160
2251
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2161
2252
|
content: "\e773";
|
|
@@ -2350,8 +2441,10 @@
|
|
|
2350
2441
|
}
|
|
2351
2442
|
|
|
2352
2443
|
.e-pivot-formatting-dialog {
|
|
2444
|
+
/* stylelint-disable */
|
|
2353
2445
|
max-height: 480px !important;
|
|
2354
2446
|
width: 629px !important;
|
|
2447
|
+
/* stylelint-enable */
|
|
2355
2448
|
}
|
|
2356
2449
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2357
2450
|
padding-bottom: 4px;
|
|
@@ -2426,7 +2519,9 @@
|
|
|
2426
2519
|
border: 1px solid #605e5c;
|
|
2427
2520
|
border-radius: 2px;
|
|
2428
2521
|
height: 28px;
|
|
2522
|
+
/* stylelint-disable */
|
|
2429
2523
|
margin: 0 !important;
|
|
2524
|
+
/* stylelint-enable */
|
|
2430
2525
|
padding-left: 6px;
|
|
2431
2526
|
padding-top: 6px;
|
|
2432
2527
|
width: 80px;
|
|
@@ -2447,7 +2542,9 @@
|
|
|
2447
2542
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2448
2543
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2449
2544
|
border: 1px solid #605e5c;
|
|
2545
|
+
/* stylelint-disable */
|
|
2450
2546
|
border-radius: 0 !important;
|
|
2547
|
+
/* stylelint-enable */
|
|
2451
2548
|
height: 40%;
|
|
2452
2549
|
left: -3px;
|
|
2453
2550
|
position: absolute;
|
|
@@ -2455,8 +2552,10 @@
|
|
|
2455
2552
|
width: 150%;
|
|
2456
2553
|
}
|
|
2457
2554
|
.e-pivot-formatting-dialog.e-device {
|
|
2555
|
+
/* stylelint-disable */
|
|
2458
2556
|
min-width: 320px !important;
|
|
2459
2557
|
width: 100% !important;
|
|
2558
|
+
/* stylelint-enable */
|
|
2460
2559
|
}
|
|
2461
2560
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2462
2561
|
width: 100% !important;
|
|
@@ -2505,7 +2604,11 @@
|
|
|
2505
2604
|
|
|
2506
2605
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2507
2606
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2607
|
+
/* stylelint-disable */
|
|
2508
2608
|
width: 714px !important;
|
|
2609
|
+
/* stylelint-enable */
|
|
2610
|
+
/* stylelint-disable */
|
|
2611
|
+
/* stylelint-enable */
|
|
2509
2612
|
}
|
|
2510
2613
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2511
2614
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2544,8 +2647,10 @@
|
|
|
2544
2647
|
}
|
|
2545
2648
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2546
2649
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2650
|
+
/* stylelint-disable */
|
|
2547
2651
|
min-width: 320px !important;
|
|
2548
2652
|
width: 100% !important;
|
|
2653
|
+
/* stylelint-enable */
|
|
2549
2654
|
}
|
|
2550
2655
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2551
2656
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2564,8 +2669,14 @@
|
|
|
2564
2669
|
}
|
|
2565
2670
|
|
|
2566
2671
|
.e-pivot-calc-dialog-div {
|
|
2672
|
+
/* stylelint-disable */
|
|
2567
2673
|
max-height: 550px !important;
|
|
2674
|
+
/* stylelint-enable */
|
|
2568
2675
|
min-width: 290px;
|
|
2676
|
+
/* stylelint-disable */
|
|
2677
|
+
/* stylelint-enable */
|
|
2678
|
+
/* stylelint-disable */
|
|
2679
|
+
/* stylelint-enable */
|
|
2569
2680
|
}
|
|
2570
2681
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2571
2682
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2573,7 +2684,9 @@
|
|
|
2573
2684
|
}
|
|
2574
2685
|
.e-pivot-calc-dialog-div .e-dlg-content {
|
|
2575
2686
|
padding-bottom: 18px;
|
|
2687
|
+
/* stylelint-disable */
|
|
2576
2688
|
padding-top: 1px !important;
|
|
2689
|
+
/* stylelint-enable */
|
|
2577
2690
|
}
|
|
2578
2691
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2579
2692
|
.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2612,9 +2725,11 @@
|
|
|
2612
2725
|
}
|
|
2613
2726
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2614
2727
|
color: #605e5c;
|
|
2728
|
+
/* stylelint-disable */
|
|
2615
2729
|
float: right !important;
|
|
2616
2730
|
margin: 0;
|
|
2617
2731
|
margin-right: 12px !important;
|
|
2732
|
+
/* stylelint-enable */
|
|
2618
2733
|
}
|
|
2619
2734
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2620
2735
|
cursor: default;
|
|
@@ -2772,9 +2887,9 @@
|
|
|
2772
2887
|
}
|
|
2773
2888
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
2774
2889
|
display: inline-block;
|
|
2775
|
-
height:
|
|
2890
|
+
height: 435px;
|
|
2776
2891
|
overflow: auto;
|
|
2777
|
-
width:
|
|
2892
|
+
width: 100% !important;
|
|
2778
2893
|
}
|
|
2779
2894
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview {
|
|
2780
2895
|
display: inline-table;
|
|
@@ -2906,8 +3021,11 @@
|
|
|
2906
3021
|
|
|
2907
3022
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2908
3023
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3024
|
+
/* stylelint-disable */
|
|
2909
3025
|
max-height: 600px !important;
|
|
2910
3026
|
min-width: 401px !important;
|
|
3027
|
+
/* stylelint-enable */
|
|
3028
|
+
/* stylelint-disable */
|
|
2911
3029
|
}
|
|
2912
3030
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2913
3031
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2992,6 +3110,9 @@
|
|
|
2992
3110
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
2993
3111
|
max-width: 400px !important;
|
|
2994
3112
|
min-width: 320px !important;
|
|
3113
|
+
/* stylelint-enable */
|
|
3114
|
+
/* stylelint-disable */
|
|
3115
|
+
/* stylelint-enable */
|
|
2995
3116
|
}
|
|
2996
3117
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
2997
3118
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3029,8 +3150,10 @@
|
|
|
3029
3150
|
}
|
|
3030
3151
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3031
3152
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3153
|
+
/* stylelint-disable */
|
|
3032
3154
|
margin-left: -22px;
|
|
3033
3155
|
overflow: auto !important;
|
|
3156
|
+
/* stylelint-enable */
|
|
3034
3157
|
}
|
|
3035
3158
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3036
3159
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3049,6 +3172,10 @@
|
|
|
3049
3172
|
margin-left: 0;
|
|
3050
3173
|
margin-right: -22px;
|
|
3051
3174
|
}
|
|
3175
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3176
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3177
|
+
/* stylelint-disable */
|
|
3178
|
+
}
|
|
3052
3179
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3053
3180
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3054
3181
|
margin-left: 0;
|
|
@@ -3112,6 +3239,7 @@
|
|
|
3112
3239
|
}
|
|
3113
3240
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3114
3241
|
border: 0;
|
|
3242
|
+
/* stylelint-enable */
|
|
3115
3243
|
}
|
|
3116
3244
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3117
3245
|
margin: 0 0 0 6px;
|
|
@@ -3139,6 +3267,8 @@
|
|
|
3139
3267
|
overflow: auto;
|
|
3140
3268
|
padding: 20px;
|
|
3141
3269
|
padding-bottom: 0;
|
|
3270
|
+
/* stylelint-disable */
|
|
3271
|
+
/* stylelint-enable */
|
|
3142
3272
|
}
|
|
3143
3273
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3144
3274
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3177,6 +3307,9 @@
|
|
|
3177
3307
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3178
3308
|
float: right;
|
|
3179
3309
|
}
|
|
3310
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3311
|
+
/* stylelint-disable */
|
|
3312
|
+
}
|
|
3180
3313
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3181
3314
|
margin-left: 0;
|
|
3182
3315
|
}
|
|
@@ -3315,6 +3448,7 @@
|
|
|
3315
3448
|
overflow: hidden;
|
|
3316
3449
|
padding: 0 !important;
|
|
3317
3450
|
padding-top: 1px;
|
|
3451
|
+
/* stylelint-enable */
|
|
3318
3452
|
}
|
|
3319
3453
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3320
3454
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3381,6 +3515,11 @@
|
|
|
3381
3515
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3382
3516
|
padding-right: 0;
|
|
3383
3517
|
}
|
|
3518
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3519
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3520
|
+
/* stylelint-disable */
|
|
3521
|
+
/* stylelint-enable */
|
|
3522
|
+
}
|
|
3384
3523
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3385
3524
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3386
3525
|
padding-left: 24px;
|
|
@@ -3430,6 +3569,7 @@
|
|
|
3430
3569
|
padding: 4px;
|
|
3431
3570
|
}
|
|
3432
3571
|
|
|
3572
|
+
/* stylelint-disable */
|
|
3433
3573
|
.e-button-drag-clone {
|
|
3434
3574
|
background-color: #edebe9 !important;
|
|
3435
3575
|
border: 1px solid #edebe9;
|
|
@@ -3469,6 +3609,12 @@
|
|
|
3469
3609
|
width: auto !important;
|
|
3470
3610
|
}
|
|
3471
3611
|
|
|
3612
|
+
/* stylelint-enable */
|
|
3613
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3614
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3615
|
+
/* stylelint-disable */
|
|
3616
|
+
/* stylelint-enable */
|
|
3617
|
+
}
|
|
3472
3618
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3473
3619
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3474
3620
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3533,6 +3679,10 @@
|
|
|
3533
3679
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3534
3680
|
margin-left: 10px;
|
|
3535
3681
|
}
|
|
3682
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3683
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3684
|
+
/* stylelint-disable */
|
|
3685
|
+
}
|
|
3536
3686
|
.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,
|
|
3537
3687
|
.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 {
|
|
3538
3688
|
margin: 0 0 0 6px;
|
|
@@ -3681,6 +3831,7 @@
|
|
|
3681
3831
|
background-color: #edebe9;
|
|
3682
3832
|
}
|
|
3683
3833
|
|
|
3834
|
+
/* stylelint-disable */
|
|
3684
3835
|
*.e-rtl .e-select-table {
|
|
3685
3836
|
padding: 8px 5px;
|
|
3686
3837
|
}
|
|
@@ -3719,6 +3870,8 @@
|
|
|
3719
3870
|
font-size: 14px;
|
|
3720
3871
|
max-width: 700px;
|
|
3721
3872
|
min-width: 300px;
|
|
3873
|
+
/* stylelint-enable */
|
|
3874
|
+
/* stylelint-enable */
|
|
3722
3875
|
}
|
|
3723
3876
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3724
3877
|
display: -ms-flexbox;
|
|
@@ -3841,6 +3994,8 @@
|
|
|
3841
3994
|
display: -ms-flexbox;
|
|
3842
3995
|
display: flex;
|
|
3843
3996
|
padding-right: 18px;
|
|
3997
|
+
/* stylelint-disable */
|
|
3998
|
+
/* stylelint-enable */
|
|
3844
3999
|
}
|
|
3845
4000
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3846
4001
|
-ms-flex: auto;
|
|
@@ -3852,7 +4007,9 @@
|
|
|
3852
4007
|
color: #605e5c;
|
|
3853
4008
|
cursor: pointer;
|
|
3854
4009
|
font-size: 14px;
|
|
4010
|
+
/* stylelint-disable */
|
|
3855
4011
|
height: 20px !important;
|
|
4012
|
+
/* stylelint-enable */
|
|
3856
4013
|
padding: 6px 0 0 4px;
|
|
3857
4014
|
width: 20px;
|
|
3858
4015
|
}
|
|
@@ -3889,9 +4046,13 @@
|
|
|
3889
4046
|
}
|
|
3890
4047
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3891
4048
|
overflow: hidden;
|
|
4049
|
+
/* stylelint-disable */
|
|
4050
|
+
/* stylelint-enable */
|
|
3892
4051
|
}
|
|
3893
4052
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3894
4053
|
margin-left: -30px;
|
|
4054
|
+
/* stylelint-disable */
|
|
4055
|
+
/* stylelint-enable */
|
|
3895
4056
|
}
|
|
3896
4057
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3897
4058
|
cursor: default;
|
|
@@ -4401,6 +4562,8 @@
|
|
|
4401
4562
|
}
|
|
4402
4563
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4403
4564
|
height: 369px;
|
|
4565
|
+
/* stylelint-disable */
|
|
4566
|
+
/* stylelint-enable */
|
|
4404
4567
|
}
|
|
4405
4568
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4406
4569
|
height: 392px !important;
|
|
@@ -4424,6 +4587,7 @@
|
|
|
4424
4587
|
display: -ms-flexbox;
|
|
4425
4588
|
display: flex;
|
|
4426
4589
|
padding: 10px 18px;
|
|
4590
|
+
/* stylelint-disable */
|
|
4427
4591
|
}
|
|
4428
4592
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4429
4593
|
float: right;
|
|
@@ -4460,6 +4624,8 @@
|
|
|
4460
4624
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4461
4625
|
margin-left: 0;
|
|
4462
4626
|
margin-right: -30px;
|
|
4627
|
+
/* stylelint-disable */
|
|
4628
|
+
/* stylelint-enable */
|
|
4463
4629
|
}
|
|
4464
4630
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4465
4631
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -4490,6 +4656,8 @@
|
|
|
4490
4656
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4491
4657
|
padding-left: 18px;
|
|
4492
4658
|
padding-right: 0;
|
|
4659
|
+
/* stylelint-disable */
|
|
4660
|
+
/* stylelint-enable */
|
|
4493
4661
|
}
|
|
4494
4662
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4495
4663
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4575,8 +4743,10 @@
|
|
|
4575
4743
|
}
|
|
4576
4744
|
.e-pivotfieldlist-container.e-device {
|
|
4577
4745
|
height: 100%;
|
|
4746
|
+
/* stylelint-disable */
|
|
4578
4747
|
max-height: 100% !important;
|
|
4579
4748
|
max-width: 100% !important;
|
|
4749
|
+
/* stylelint-enable */
|
|
4580
4750
|
min-height: 500px;
|
|
4581
4751
|
width: 100%;
|
|
4582
4752
|
}
|
|
@@ -4681,6 +4851,8 @@
|
|
|
4681
4851
|
padding: 9px 16px;
|
|
4682
4852
|
text-transform: none;
|
|
4683
4853
|
width: 100%;
|
|
4854
|
+
/* stylelint-disable */
|
|
4855
|
+
/* stylelint-enable */
|
|
4684
4856
|
}
|
|
4685
4857
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4686
4858
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4870,6 +5042,10 @@
|
|
|
4870
5042
|
vertical-align: middle;
|
|
4871
5043
|
width: 70%;
|
|
4872
5044
|
}
|
|
5045
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5046
|
+
/* stylelint-disable */
|
|
5047
|
+
/* stylelint-enable */
|
|
5048
|
+
}
|
|
4873
5049
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4874
5050
|
background-color: #fff;
|
|
4875
5051
|
border: 1px solid #edebe9;
|
|
@@ -4917,6 +5093,10 @@
|
|
|
4917
5093
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4918
5094
|
margin-right: 12px;
|
|
4919
5095
|
}
|
|
5096
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5097
|
+
/* stylelint-disable */
|
|
5098
|
+
/* stylelint-enable */
|
|
5099
|
+
}
|
|
4920
5100
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4921
5101
|
left: 16px;
|
|
4922
5102
|
right: auto;
|
|
@@ -5066,6 +5246,10 @@
|
|
|
5066
5246
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5067
5247
|
max-height: 600px;
|
|
5068
5248
|
}
|
|
5249
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5250
|
+
/* stylelint-disable */
|
|
5251
|
+
/* stylelint-enable */
|
|
5252
|
+
}
|
|
5069
5253
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5070
5254
|
margin-left: 12px;
|
|
5071
5255
|
margin-right: 0;
|
|
@@ -5086,6 +5270,11 @@
|
|
|
5086
5270
|
margin-left: 20px;
|
|
5087
5271
|
}
|
|
5088
5272
|
|
|
5273
|
+
/* stylelint-disable */
|
|
5274
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5275
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5276
|
+
/* stylelint-enable */
|
|
5277
|
+
}
|
|
5089
5278
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5090
5279
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5091
5280
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5241,6 +5430,16 @@
|
|
|
5241
5430
|
margin-top: 4px;
|
|
5242
5431
|
padding: 0 12px;
|
|
5243
5432
|
}
|
|
5433
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5434
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5435
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5436
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5437
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5438
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5439
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5440
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5441
|
+
/* stylelint-disable */
|
|
5442
|
+
}
|
|
5244
5443
|
.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,
|
|
5245
5444
|
.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,
|
|
5246
5445
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
@@ -5252,6 +5451,7 @@
|
|
|
5252
5451
|
font-size: 14px;
|
|
5253
5452
|
height: 36px !important;
|
|
5254
5453
|
padding: 9px 16px !important;
|
|
5454
|
+
/* stylelint-enable */
|
|
5255
5455
|
}
|
|
5256
5456
|
.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,
|
|
5257
5457
|
.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,
|
|
@@ -5376,6 +5576,10 @@
|
|
|
5376
5576
|
.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 {
|
|
5377
5577
|
padding-top: 7px;
|
|
5378
5578
|
}
|
|
5579
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5580
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5581
|
+
/* stylelint-disable */
|
|
5582
|
+
}
|
|
5379
5583
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5380
5584
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5381
5585
|
padding-left: 16px;
|
|
@@ -5388,6 +5592,7 @@
|
|
|
5388
5592
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5389
5593
|
padding-left: 0;
|
|
5390
5594
|
padding-right: 5px;
|
|
5595
|
+
/* stylelint-enable */
|
|
5391
5596
|
}
|
|
5392
5597
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5393
5598
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5426,6 +5631,8 @@
|
|
|
5426
5631
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5427
5632
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5428
5633
|
padding-left: 20px;
|
|
5634
|
+
/* stylelint-disable */
|
|
5635
|
+
/* stylelint-enable */
|
|
5429
5636
|
}
|
|
5430
5637
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5431
5638
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5497,6 +5704,10 @@
|
|
|
5497
5704
|
padding-left: 0;
|
|
5498
5705
|
padding-right: 4px;
|
|
5499
5706
|
}
|
|
5707
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5708
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5709
|
+
/* stylelint-disable */
|
|
5710
|
+
}
|
|
5500
5711
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5501
5712
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5502
5713
|
max-height: 750px;
|
|
@@ -5533,4 +5744,6 @@
|
|
|
5533
5744
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5534
5745
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5535
5746
|
max-height: 184px;
|
|
5536
|
-
}
|
|
5747
|
+
}
|
|
5748
|
+
|
|
5749
|
+
/* stylelint-enable */
|