@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/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: 600px !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-dlg-content .e-pivot-calc-custom-format-div {
|
|
2579
2692
|
margin-top: 15px;
|
|
@@ -2615,9 +2728,11 @@
|
|
|
2615
2728
|
}
|
|
2616
2729
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2617
2730
|
color: #605e5c;
|
|
2731
|
+
/* stylelint-disable */
|
|
2618
2732
|
float: right !important;
|
|
2619
2733
|
margin: 0;
|
|
2620
2734
|
margin-right: 12px !important;
|
|
2735
|
+
/* stylelint-enable */
|
|
2621
2736
|
}
|
|
2622
2737
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2623
2738
|
cursor: default;
|
|
@@ -2909,8 +3024,11 @@
|
|
|
2909
3024
|
|
|
2910
3025
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2911
3026
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3027
|
+
/* stylelint-disable */
|
|
2912
3028
|
max-height: 600px !important;
|
|
2913
3029
|
min-width: 401px !important;
|
|
3030
|
+
/* stylelint-enable */
|
|
3031
|
+
/* stylelint-disable */
|
|
2914
3032
|
}
|
|
2915
3033
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2916
3034
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2995,6 +3113,9 @@
|
|
|
2995
3113
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
2996
3114
|
max-width: 400px !important;
|
|
2997
3115
|
min-width: 320px !important;
|
|
3116
|
+
/* stylelint-enable */
|
|
3117
|
+
/* stylelint-disable */
|
|
3118
|
+
/* stylelint-enable */
|
|
2998
3119
|
}
|
|
2999
3120
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3000
3121
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3032,8 +3153,10 @@
|
|
|
3032
3153
|
}
|
|
3033
3154
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3034
3155
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3156
|
+
/* stylelint-disable */
|
|
3035
3157
|
margin-left: -22px;
|
|
3036
3158
|
overflow: auto !important;
|
|
3159
|
+
/* stylelint-enable */
|
|
3037
3160
|
}
|
|
3038
3161
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3039
3162
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3052,6 +3175,10 @@
|
|
|
3052
3175
|
margin-left: 0;
|
|
3053
3176
|
margin-right: -22px;
|
|
3054
3177
|
}
|
|
3178
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3179
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3180
|
+
/* stylelint-disable */
|
|
3181
|
+
}
|
|
3055
3182
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3056
3183
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3057
3184
|
margin-left: 0;
|
|
@@ -3115,6 +3242,7 @@
|
|
|
3115
3242
|
}
|
|
3116
3243
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3117
3244
|
border: 0;
|
|
3245
|
+
/* stylelint-enable */
|
|
3118
3246
|
}
|
|
3119
3247
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3120
3248
|
margin: 0 0 0 6px;
|
|
@@ -3142,6 +3270,8 @@
|
|
|
3142
3270
|
overflow: auto;
|
|
3143
3271
|
padding: 20px;
|
|
3144
3272
|
padding-bottom: 0;
|
|
3273
|
+
/* stylelint-disable */
|
|
3274
|
+
/* stylelint-enable */
|
|
3145
3275
|
}
|
|
3146
3276
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3147
3277
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3180,6 +3310,9 @@
|
|
|
3180
3310
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3181
3311
|
float: right;
|
|
3182
3312
|
}
|
|
3313
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3314
|
+
/* stylelint-disable */
|
|
3315
|
+
}
|
|
3183
3316
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3184
3317
|
margin-left: 0;
|
|
3185
3318
|
}
|
|
@@ -3318,6 +3451,7 @@
|
|
|
3318
3451
|
overflow: hidden;
|
|
3319
3452
|
padding: 0 !important;
|
|
3320
3453
|
padding-top: 1px;
|
|
3454
|
+
/* stylelint-enable */
|
|
3321
3455
|
}
|
|
3322
3456
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3323
3457
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3384,6 +3518,11 @@
|
|
|
3384
3518
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3385
3519
|
padding-right: 0;
|
|
3386
3520
|
}
|
|
3521
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3522
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3523
|
+
/* stylelint-disable */
|
|
3524
|
+
/* stylelint-enable */
|
|
3525
|
+
}
|
|
3387
3526
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3388
3527
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3389
3528
|
padding-left: 24px;
|
|
@@ -3433,6 +3572,7 @@
|
|
|
3433
3572
|
padding: 4px;
|
|
3434
3573
|
}
|
|
3435
3574
|
|
|
3575
|
+
/* stylelint-disable */
|
|
3436
3576
|
.e-button-drag-clone {
|
|
3437
3577
|
background-color: #edebe9 !important;
|
|
3438
3578
|
border: 1px solid #edebe9;
|
|
@@ -3472,6 +3612,12 @@
|
|
|
3472
3612
|
width: auto !important;
|
|
3473
3613
|
}
|
|
3474
3614
|
|
|
3615
|
+
/* stylelint-enable */
|
|
3616
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3617
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3618
|
+
/* stylelint-disable */
|
|
3619
|
+
/* stylelint-enable */
|
|
3620
|
+
}
|
|
3475
3621
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3476
3622
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3477
3623
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3536,6 +3682,10 @@
|
|
|
3536
3682
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3537
3683
|
margin-left: 10px;
|
|
3538
3684
|
}
|
|
3685
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3686
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3687
|
+
/* stylelint-disable */
|
|
3688
|
+
}
|
|
3539
3689
|
.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,
|
|
3540
3690
|
.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 {
|
|
3541
3691
|
margin: 0 0 0 6px;
|
|
@@ -3684,6 +3834,7 @@
|
|
|
3684
3834
|
background-color: #edebe9;
|
|
3685
3835
|
}
|
|
3686
3836
|
|
|
3837
|
+
/* stylelint-disable */
|
|
3687
3838
|
*.e-rtl .e-select-table {
|
|
3688
3839
|
padding: 8px 5px;
|
|
3689
3840
|
}
|
|
@@ -3722,6 +3873,8 @@
|
|
|
3722
3873
|
font-size: 14px;
|
|
3723
3874
|
max-width: 700px;
|
|
3724
3875
|
min-width: 300px;
|
|
3876
|
+
/* stylelint-enable */
|
|
3877
|
+
/* stylelint-enable */
|
|
3725
3878
|
}
|
|
3726
3879
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3727
3880
|
display: -ms-flexbox;
|
|
@@ -3844,6 +3997,8 @@
|
|
|
3844
3997
|
display: -ms-flexbox;
|
|
3845
3998
|
display: flex;
|
|
3846
3999
|
padding-right: 18px;
|
|
4000
|
+
/* stylelint-disable */
|
|
4001
|
+
/* stylelint-enable */
|
|
3847
4002
|
}
|
|
3848
4003
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3849
4004
|
-ms-flex: auto;
|
|
@@ -3855,7 +4010,9 @@
|
|
|
3855
4010
|
color: #605e5c;
|
|
3856
4011
|
cursor: pointer;
|
|
3857
4012
|
font-size: 14px;
|
|
4013
|
+
/* stylelint-disable */
|
|
3858
4014
|
height: 20px !important;
|
|
4015
|
+
/* stylelint-enable */
|
|
3859
4016
|
padding: 6px 0 0 4px;
|
|
3860
4017
|
width: 20px;
|
|
3861
4018
|
}
|
|
@@ -3892,9 +4049,13 @@
|
|
|
3892
4049
|
}
|
|
3893
4050
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3894
4051
|
overflow: hidden;
|
|
4052
|
+
/* stylelint-disable */
|
|
4053
|
+
/* stylelint-enable */
|
|
3895
4054
|
}
|
|
3896
4055
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3897
4056
|
margin-left: -30px;
|
|
4057
|
+
/* stylelint-disable */
|
|
4058
|
+
/* stylelint-enable */
|
|
3898
4059
|
}
|
|
3899
4060
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3900
4061
|
cursor: default;
|
|
@@ -4404,6 +4565,8 @@
|
|
|
4404
4565
|
}
|
|
4405
4566
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4406
4567
|
height: 369px;
|
|
4568
|
+
/* stylelint-disable */
|
|
4569
|
+
/* stylelint-enable */
|
|
4407
4570
|
}
|
|
4408
4571
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4409
4572
|
height: 392px !important;
|
|
@@ -4427,6 +4590,7 @@
|
|
|
4427
4590
|
display: -ms-flexbox;
|
|
4428
4591
|
display: flex;
|
|
4429
4592
|
padding: 10px 18px;
|
|
4593
|
+
/* stylelint-disable */
|
|
4430
4594
|
}
|
|
4431
4595
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4432
4596
|
float: right;
|
|
@@ -4463,6 +4627,8 @@
|
|
|
4463
4627
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4464
4628
|
margin-left: 0;
|
|
4465
4629
|
margin-right: -30px;
|
|
4630
|
+
/* stylelint-disable */
|
|
4631
|
+
/* stylelint-enable */
|
|
4466
4632
|
}
|
|
4467
4633
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4468
4634
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -4493,6 +4659,8 @@
|
|
|
4493
4659
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4494
4660
|
padding-left: 18px;
|
|
4495
4661
|
padding-right: 0;
|
|
4662
|
+
/* stylelint-disable */
|
|
4663
|
+
/* stylelint-enable */
|
|
4496
4664
|
}
|
|
4497
4665
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4498
4666
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4578,8 +4746,10 @@
|
|
|
4578
4746
|
}
|
|
4579
4747
|
.e-pivotfieldlist-container.e-device {
|
|
4580
4748
|
height: 100%;
|
|
4749
|
+
/* stylelint-disable */
|
|
4581
4750
|
max-height: 100% !important;
|
|
4582
4751
|
max-width: 100% !important;
|
|
4752
|
+
/* stylelint-enable */
|
|
4583
4753
|
min-height: 500px;
|
|
4584
4754
|
width: 100%;
|
|
4585
4755
|
}
|
|
@@ -4684,6 +4854,8 @@
|
|
|
4684
4854
|
padding: 9px 16px;
|
|
4685
4855
|
text-transform: none;
|
|
4686
4856
|
width: 100%;
|
|
4857
|
+
/* stylelint-disable */
|
|
4858
|
+
/* stylelint-enable */
|
|
4687
4859
|
}
|
|
4688
4860
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4689
4861
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4873,6 +5045,10 @@
|
|
|
4873
5045
|
vertical-align: middle;
|
|
4874
5046
|
width: 70%;
|
|
4875
5047
|
}
|
|
5048
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5049
|
+
/* stylelint-disable */
|
|
5050
|
+
/* stylelint-enable */
|
|
5051
|
+
}
|
|
4876
5052
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4877
5053
|
background-color: #fff;
|
|
4878
5054
|
border: 1px solid #edebe9;
|
|
@@ -4919,6 +5095,10 @@
|
|
|
4919
5095
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4920
5096
|
margin-right: 12px;
|
|
4921
5097
|
}
|
|
5098
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5099
|
+
/* stylelint-disable */
|
|
5100
|
+
/* stylelint-enable */
|
|
5101
|
+
}
|
|
4922
5102
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4923
5103
|
left: 16px;
|
|
4924
5104
|
right: auto;
|
|
@@ -5068,6 +5248,10 @@
|
|
|
5068
5248
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5069
5249
|
max-height: 600px;
|
|
5070
5250
|
}
|
|
5251
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5252
|
+
/* stylelint-disable */
|
|
5253
|
+
/* stylelint-enable */
|
|
5254
|
+
}
|
|
5071
5255
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5072
5256
|
margin-left: 12px;
|
|
5073
5257
|
margin-right: 0;
|
|
@@ -5088,6 +5272,11 @@
|
|
|
5088
5272
|
margin-left: 20px;
|
|
5089
5273
|
}
|
|
5090
5274
|
|
|
5275
|
+
/* stylelint-disable */
|
|
5276
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5277
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5278
|
+
/* stylelint-enable */
|
|
5279
|
+
}
|
|
5091
5280
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5092
5281
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5093
5282
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5243,6 +5432,16 @@
|
|
|
5243
5432
|
margin-top: 4px;
|
|
5244
5433
|
padding: 0 12px;
|
|
5245
5434
|
}
|
|
5435
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5436
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5437
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5438
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5439
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5440
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5441
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5442
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5443
|
+
/* stylelint-disable */
|
|
5444
|
+
}
|
|
5246
5445
|
.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,
|
|
5247
5446
|
.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,
|
|
5248
5447
|
.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,
|
|
@@ -5254,6 +5453,7 @@
|
|
|
5254
5453
|
font-size: 14px;
|
|
5255
5454
|
height: 36px !important;
|
|
5256
5455
|
padding: 9px 16px !important;
|
|
5456
|
+
/* stylelint-enable */
|
|
5257
5457
|
}
|
|
5258
5458
|
.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,
|
|
5259
5459
|
.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,
|
|
@@ -5378,6 +5578,10 @@
|
|
|
5378
5578
|
.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 {
|
|
5379
5579
|
padding-top: 7px;
|
|
5380
5580
|
}
|
|
5581
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5582
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5583
|
+
/* stylelint-disable */
|
|
5584
|
+
}
|
|
5381
5585
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5382
5586
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5383
5587
|
padding-left: 16px;
|
|
@@ -5390,6 +5594,7 @@
|
|
|
5390
5594
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5391
5595
|
padding-left: 0;
|
|
5392
5596
|
padding-right: 5px;
|
|
5597
|
+
/* stylelint-enable */
|
|
5393
5598
|
}
|
|
5394
5599
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5395
5600
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5428,6 +5633,8 @@
|
|
|
5428
5633
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5429
5634
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5430
5635
|
padding-left: 20px;
|
|
5636
|
+
/* stylelint-disable */
|
|
5637
|
+
/* stylelint-enable */
|
|
5431
5638
|
}
|
|
5432
5639
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5433
5640
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5499,6 +5706,10 @@
|
|
|
5499
5706
|
padding-left: 0;
|
|
5500
5707
|
padding-right: 4px;
|
|
5501
5708
|
}
|
|
5709
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5710
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5711
|
+
/* stylelint-disable */
|
|
5712
|
+
}
|
|
5502
5713
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5503
5714
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5504
5715
|
max-height: 750px;
|
|
@@ -5535,4 +5746,6 @@
|
|
|
5535
5746
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5536
5747
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5537
5748
|
max-height: 184px;
|
|
5538
|
-
}
|
|
5749
|
+
}
|
|
5750
|
+
|
|
5751
|
+
/* stylelint-enable */
|