@syncfusion/ej2-angular-pivotview 20.2.39-ngcc → 20.2.39
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +212 -1
- package/styles/bootstrap.css +212 -1
- package/styles/bootstrap4.css +208 -2
- package/styles/bootstrap5-dark.css +214 -1
- package/styles/bootstrap5.css +214 -1
- package/styles/fabric-dark.css +212 -1
- package/styles/fabric.css +212 -1
- package/styles/fluent-dark.css +214 -1
- package/styles/fluent.css +214 -1
- package/styles/highcontrast-light.css +212 -1
- package/styles/highcontrast.css +212 -1
- package/styles/material-dark.css +212 -1
- package/styles/material.css +212 -1
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
- package/styles/pivotfieldlist/_layout.scss +1844 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
- package/styles/pivotfieldlist/_material-definition.scss +187 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
- package/styles/pivotfieldlist/_theme.scss +1858 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +130 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +125 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +134 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +130 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +130 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +132 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +132 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +130 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +130 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3.scss +353 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.css +130 -1
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +130 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +132 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +132 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
- package/styles/pivotview/_bootstrap-definition.scss +128 -0
- package/styles/pivotview/_bootstrap4-definition.scss +128 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +133 -0
- package/styles/pivotview/_fabric-dark-definition.scss +130 -0
- package/styles/pivotview/_fabric-definition.scss +127 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +133 -0
- package/styles/pivotview/_fusionnew-definition.scss +133 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1072 -0
- package/styles/pivotview/_material-dark-definition.scss +134 -0
- package/styles/pivotview/_material-definition.scss +130 -0
- package/styles/pivotview/_material3-definition.scss +133 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +133 -0
- package/styles/pivotview/_theme.scss +1581 -0
- package/styles/pivotview/bootstrap-dark.css +82 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +82 -0
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +83 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +80 -0
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +80 -0
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +82 -0
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +82 -0
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +82 -0
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +82 -0
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +82 -0
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +82 -0
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +82 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +82 -0
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +80 -0
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +80 -0
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +212 -1
- package/styles/tailwind.css +212 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -683
- package/dist/ej2-angular-pivotview.umd.js +0 -666
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/fluent-dark.css
CHANGED
|
@@ -153,6 +153,12 @@
|
|
|
153
153
|
}
|
|
154
154
|
|
|
155
155
|
/*! PivotView layout */
|
|
156
|
+
.e-pivotview {
|
|
157
|
+
/* stylelint-disable */
|
|
158
|
+
/* stylelint-enable */
|
|
159
|
+
/* stylelint-enable */
|
|
160
|
+
/* stylelint-disable */
|
|
161
|
+
}
|
|
156
162
|
.e-pivotview .e-value-field-settings,
|
|
157
163
|
.e-pivotview .e-member-editor-dialog,
|
|
158
164
|
.e-pivotview .e-group-field-settings {
|
|
@@ -227,6 +233,7 @@
|
|
|
227
233
|
}
|
|
228
234
|
.e-pivotview .e-member-editor-dialog {
|
|
229
235
|
min-width: 320px;
|
|
236
|
+
/* stylelint-disable */
|
|
230
237
|
}
|
|
231
238
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
232
239
|
display: -ms-flexbox;
|
|
@@ -241,6 +248,7 @@
|
|
|
241
248
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
242
249
|
box-shadow: none;
|
|
243
250
|
margin-left: 10px;
|
|
251
|
+
/* stylelint-disable */
|
|
244
252
|
}
|
|
245
253
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
246
254
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -332,6 +340,7 @@
|
|
|
332
340
|
}
|
|
333
341
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
334
342
|
border: none;
|
|
343
|
+
/* stylelint-enable */
|
|
335
344
|
}
|
|
336
345
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
337
346
|
margin: 0 0 0 6px;
|
|
@@ -589,13 +598,16 @@
|
|
|
589
598
|
}
|
|
590
599
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
591
600
|
margin-left: 18px !important;
|
|
601
|
+
/* stylelint-enable */
|
|
592
602
|
}
|
|
593
603
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
604
|
+
/* stylelint-disable */
|
|
594
605
|
padding: 0 !important;
|
|
595
606
|
}
|
|
596
607
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
597
608
|
float: left;
|
|
598
609
|
font-weight: 500;
|
|
610
|
+
/* stylelint-enable */
|
|
599
611
|
}
|
|
600
612
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
601
613
|
float: right;
|
|
@@ -624,6 +636,7 @@
|
|
|
624
636
|
}
|
|
625
637
|
|
|
626
638
|
.e-pivotview-report-dialog {
|
|
639
|
+
/* stylelint-disable */
|
|
627
640
|
max-width: 350px !important;
|
|
628
641
|
}
|
|
629
642
|
|
|
@@ -643,6 +656,7 @@
|
|
|
643
656
|
max-width: 500px !important;
|
|
644
657
|
}
|
|
645
658
|
|
|
659
|
+
/* stylelint-enable */
|
|
646
660
|
.e-report-outer {
|
|
647
661
|
display: inline-block;
|
|
648
662
|
width: 100%;
|
|
@@ -655,6 +669,7 @@
|
|
|
655
669
|
width: 40%;
|
|
656
670
|
}
|
|
657
671
|
|
|
672
|
+
/* stylelint-disable */
|
|
658
673
|
.e-pivotview-report-input {
|
|
659
674
|
float: right;
|
|
660
675
|
width: 60% !important;
|
|
@@ -676,11 +691,16 @@
|
|
|
676
691
|
font-size: 18px !important;
|
|
677
692
|
}
|
|
678
693
|
|
|
694
|
+
/* stylelint-enable */
|
|
679
695
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
680
696
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
681
697
|
white-space: nowrap;
|
|
682
698
|
}
|
|
683
699
|
|
|
700
|
+
.e-drillthrough-dialog {
|
|
701
|
+
/* stylelint-disable */
|
|
702
|
+
/* stylelint-enable */
|
|
703
|
+
}
|
|
684
704
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
685
705
|
margin-bottom: 20px;
|
|
686
706
|
}
|
|
@@ -701,9 +721,18 @@
|
|
|
701
721
|
flex-wrap: wrap;
|
|
702
722
|
}
|
|
703
723
|
|
|
724
|
+
.e-bigger .e-pivotview,
|
|
725
|
+
.e-bigger.e-pivotview {
|
|
726
|
+
/* stylelint-disable */
|
|
727
|
+
/* stylelint-enable */
|
|
728
|
+
/* stylelint-disable */
|
|
729
|
+
/* stylelint-enable */
|
|
730
|
+
}
|
|
704
731
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
705
732
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
733
|
+
/* stylelint-disable */
|
|
706
734
|
height: 26px !important;
|
|
735
|
+
/* stylelint-enable */
|
|
707
736
|
}
|
|
708
737
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
709
738
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -859,6 +888,18 @@
|
|
|
859
888
|
}
|
|
860
889
|
|
|
861
890
|
/*! PivotView theme */
|
|
891
|
+
.e-pivotview {
|
|
892
|
+
/* stylelint-enable */
|
|
893
|
+
/* stylelint-disable */
|
|
894
|
+
/* stylelint-enable */
|
|
895
|
+
/* stylelint-disable */
|
|
896
|
+
/* stylelint-enable */
|
|
897
|
+
/* stylelint-disable */
|
|
898
|
+
/* stylelint-enable */
|
|
899
|
+
/* stylelint-disable */
|
|
900
|
+
/* stylelint-enable */
|
|
901
|
+
/* stylelint-enable */
|
|
902
|
+
}
|
|
862
903
|
.e-pivotview .e-nextspan {
|
|
863
904
|
display: inline-block;
|
|
864
905
|
width: 18px;
|
|
@@ -879,6 +920,7 @@
|
|
|
879
920
|
text-align: right;
|
|
880
921
|
}
|
|
881
922
|
.e-pivotview .e-grid .e-rowcell {
|
|
923
|
+
/* stylelint-disable */
|
|
882
924
|
font-size: 14px !important;
|
|
883
925
|
padding-left: 8px;
|
|
884
926
|
-webkit-user-select: none;
|
|
@@ -1087,12 +1129,18 @@
|
|
|
1087
1129
|
}
|
|
1088
1130
|
.e-pivotview .e-rowcell {
|
|
1089
1131
|
opacity: 1;
|
|
1132
|
+
/* stylelint-disable */
|
|
1133
|
+
/* stylelint-enable */
|
|
1090
1134
|
}
|
|
1091
1135
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1092
1136
|
-webkit-user-select: none;
|
|
1093
1137
|
-ms-user-select: none;
|
|
1094
1138
|
user-select: none;
|
|
1095
1139
|
}
|
|
1140
|
+
.e-pivotview .e-grouping-bar {
|
|
1141
|
+
/* stylelint-disable */
|
|
1142
|
+
/* stylelint-enable */
|
|
1143
|
+
}
|
|
1096
1144
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1097
1145
|
-ms-flex: auto;
|
|
1098
1146
|
flex: auto;
|
|
@@ -1222,7 +1270,9 @@
|
|
|
1222
1270
|
border: 1px solid #252423;
|
|
1223
1271
|
border-radius: 2px;
|
|
1224
1272
|
box-shadow: none;
|
|
1273
|
+
/* stylelint-disable */
|
|
1225
1274
|
color: #d2d0ce !important;
|
|
1275
|
+
/* stylelint-enable */
|
|
1226
1276
|
cursor: default;
|
|
1227
1277
|
display: -ms-flexbox;
|
|
1228
1278
|
display: flex;
|
|
@@ -1233,6 +1283,8 @@
|
|
|
1233
1283
|
text-transform: none;
|
|
1234
1284
|
vertical-align: bottom;
|
|
1235
1285
|
z-index: 1;
|
|
1286
|
+
/* stylelint-disable */
|
|
1287
|
+
/* stylelint-enable */
|
|
1236
1288
|
}
|
|
1237
1289
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1238
1290
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1573,6 +1625,12 @@
|
|
|
1573
1625
|
.e-pivotview .e-expand::before {
|
|
1574
1626
|
font-size: 18px;
|
|
1575
1627
|
}
|
|
1628
|
+
.e-pivotview.e-rtl {
|
|
1629
|
+
/* stylelint-disable */
|
|
1630
|
+
/* stylelint-enable */
|
|
1631
|
+
/* stylelint-disable */
|
|
1632
|
+
/* stylelint-enable */
|
|
1633
|
+
}
|
|
1576
1634
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1577
1635
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1578
1636
|
margin-left: 0;
|
|
@@ -1644,8 +1702,10 @@
|
|
|
1644
1702
|
padding-right: 8px;
|
|
1645
1703
|
}
|
|
1646
1704
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1705
|
+
/* stylelint-disable */
|
|
1647
1706
|
padding-left: 8px;
|
|
1648
1707
|
padding-right: 0;
|
|
1708
|
+
/* stylelint-enable */
|
|
1649
1709
|
}
|
|
1650
1710
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1651
1711
|
margin-left: 4px;
|
|
@@ -1668,6 +1728,9 @@
|
|
|
1668
1728
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1669
1729
|
float: left;
|
|
1670
1730
|
}
|
|
1731
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1732
|
+
/* stylelint-disable */
|
|
1733
|
+
}
|
|
1671
1734
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1672
1735
|
line-height: 1em !important;
|
|
1673
1736
|
}
|
|
@@ -1745,6 +1808,13 @@
|
|
|
1745
1808
|
margin-right: 5px;
|
|
1746
1809
|
}
|
|
1747
1810
|
|
|
1811
|
+
.e-bigger .e-pivotview,
|
|
1812
|
+
.e-bigger.e-pivotview {
|
|
1813
|
+
/* stylelint-disable */
|
|
1814
|
+
/* stylelint-enable */
|
|
1815
|
+
/* stylelint-disable */
|
|
1816
|
+
/* stylelint-enable */
|
|
1817
|
+
}
|
|
1748
1818
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1749
1819
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1750
1820
|
margin: 4px;
|
|
@@ -1807,6 +1877,10 @@
|
|
|
1807
1877
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1808
1878
|
margin-top: 0;
|
|
1809
1879
|
}
|
|
1880
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1881
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1882
|
+
/* stylelint-enable */
|
|
1883
|
+
}
|
|
1810
1884
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1811
1885
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1812
1886
|
height: 36px !important;
|
|
@@ -1847,6 +1921,7 @@
|
|
|
1847
1921
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1848
1922
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1849
1923
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1924
|
+
/* stylelint-disable */
|
|
1850
1925
|
font-size: 14px !important;
|
|
1851
1926
|
height: 20px;
|
|
1852
1927
|
margin-top: 2px;
|
|
@@ -1976,8 +2051,15 @@
|
|
|
1976
2051
|
}
|
|
1977
2052
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1978
2053
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2054
|
+
/* stylelint-disable */
|
|
1979
2055
|
font-size: 16px !important;
|
|
1980
2056
|
}
|
|
2057
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2058
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2059
|
+
/* stylelint-enable */
|
|
2060
|
+
/* stylelint-disable */
|
|
2061
|
+
/* stylelint-enable */
|
|
2062
|
+
}
|
|
1981
2063
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1982
2064
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1983
2065
|
padding-right: 10px !important;
|
|
@@ -2056,6 +2138,10 @@
|
|
|
2056
2138
|
content: "\e774";
|
|
2057
2139
|
}
|
|
2058
2140
|
|
|
2141
|
+
.e-pivot-calc-dialog-div {
|
|
2142
|
+
/* stylelint-disable */
|
|
2143
|
+
/* stylelint-enable */
|
|
2144
|
+
}
|
|
2059
2145
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2060
2146
|
content: "\e726";
|
|
2061
2147
|
}
|
|
@@ -2154,6 +2240,11 @@
|
|
|
2154
2240
|
content: "\e7d8" !important;
|
|
2155
2241
|
}
|
|
2156
2242
|
|
|
2243
|
+
.e-pivotfieldlist-wrapper,
|
|
2244
|
+
.e-pivotfieldlist-container {
|
|
2245
|
+
/* stylelint-disable */
|
|
2246
|
+
/* stylelint-enable */
|
|
2247
|
+
}
|
|
2157
2248
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2158
2249
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2159
2250
|
content: "\e773";
|
|
@@ -2348,8 +2439,10 @@
|
|
|
2348
2439
|
}
|
|
2349
2440
|
|
|
2350
2441
|
.e-pivot-formatting-dialog {
|
|
2442
|
+
/* stylelint-disable */
|
|
2351
2443
|
max-height: 480px !important;
|
|
2352
2444
|
width: 629px !important;
|
|
2445
|
+
/* stylelint-enable */
|
|
2353
2446
|
}
|
|
2354
2447
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2355
2448
|
padding-bottom: 4px;
|
|
@@ -2424,7 +2517,9 @@
|
|
|
2424
2517
|
border: 1px solid #a19f9d;
|
|
2425
2518
|
border-radius: 2px;
|
|
2426
2519
|
height: 28px;
|
|
2520
|
+
/* stylelint-disable */
|
|
2427
2521
|
margin: 0 !important;
|
|
2522
|
+
/* stylelint-enable */
|
|
2428
2523
|
padding-left: 6px;
|
|
2429
2524
|
padding-top: 6px;
|
|
2430
2525
|
width: 80px;
|
|
@@ -2445,7 +2540,9 @@
|
|
|
2445
2540
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2446
2541
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2447
2542
|
border: 1px solid #a19f9d;
|
|
2543
|
+
/* stylelint-disable */
|
|
2448
2544
|
border-radius: 0 !important;
|
|
2545
|
+
/* stylelint-enable */
|
|
2449
2546
|
height: 40%;
|
|
2450
2547
|
left: -3px;
|
|
2451
2548
|
position: absolute;
|
|
@@ -2453,8 +2550,10 @@
|
|
|
2453
2550
|
width: 150%;
|
|
2454
2551
|
}
|
|
2455
2552
|
.e-pivot-formatting-dialog.e-device {
|
|
2553
|
+
/* stylelint-disable */
|
|
2456
2554
|
min-width: 320px !important;
|
|
2457
2555
|
width: 100% !important;
|
|
2556
|
+
/* stylelint-enable */
|
|
2458
2557
|
}
|
|
2459
2558
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2460
2559
|
width: 100% !important;
|
|
@@ -2503,7 +2602,11 @@
|
|
|
2503
2602
|
|
|
2504
2603
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2505
2604
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2605
|
+
/* stylelint-disable */
|
|
2506
2606
|
width: 714px !important;
|
|
2607
|
+
/* stylelint-enable */
|
|
2608
|
+
/* stylelint-disable */
|
|
2609
|
+
/* stylelint-enable */
|
|
2507
2610
|
}
|
|
2508
2611
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2509
2612
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2542,8 +2645,10 @@
|
|
|
2542
2645
|
}
|
|
2543
2646
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2544
2647
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2648
|
+
/* stylelint-disable */
|
|
2545
2649
|
min-width: 320px !important;
|
|
2546
2650
|
width: 100% !important;
|
|
2651
|
+
/* stylelint-enable */
|
|
2547
2652
|
}
|
|
2548
2653
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2549
2654
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2562,8 +2667,14 @@
|
|
|
2562
2667
|
}
|
|
2563
2668
|
|
|
2564
2669
|
.e-pivot-calc-dialog-div {
|
|
2670
|
+
/* stylelint-disable */
|
|
2565
2671
|
max-height: 550px !important;
|
|
2672
|
+
/* stylelint-enable */
|
|
2566
2673
|
min-width: 290px;
|
|
2674
|
+
/* stylelint-disable */
|
|
2675
|
+
/* stylelint-enable */
|
|
2676
|
+
/* stylelint-disable */
|
|
2677
|
+
/* stylelint-enable */
|
|
2567
2678
|
}
|
|
2568
2679
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2569
2680
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2571,7 +2682,9 @@
|
|
|
2571
2682
|
}
|
|
2572
2683
|
.e-pivot-calc-dialog-div .e-dlg-content {
|
|
2573
2684
|
padding-bottom: 18px;
|
|
2685
|
+
/* stylelint-disable */
|
|
2574
2686
|
padding-top: 1px !important;
|
|
2687
|
+
/* stylelint-enable */
|
|
2575
2688
|
}
|
|
2576
2689
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2577
2690
|
.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2610,9 +2723,11 @@
|
|
|
2610
2723
|
}
|
|
2611
2724
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2612
2725
|
color: #a19f9d;
|
|
2726
|
+
/* stylelint-disable */
|
|
2613
2727
|
float: right !important;
|
|
2614
2728
|
margin: 0;
|
|
2615
2729
|
margin-right: 12px !important;
|
|
2730
|
+
/* stylelint-enable */
|
|
2616
2731
|
}
|
|
2617
2732
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2618
2733
|
cursor: default;
|
|
@@ -2904,8 +3019,11 @@
|
|
|
2904
3019
|
|
|
2905
3020
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2906
3021
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3022
|
+
/* stylelint-disable */
|
|
2907
3023
|
max-height: 600px !important;
|
|
2908
3024
|
min-width: 401px !important;
|
|
3025
|
+
/* stylelint-enable */
|
|
3026
|
+
/* stylelint-disable */
|
|
2909
3027
|
}
|
|
2910
3028
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2911
3029
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2990,6 +3108,9 @@
|
|
|
2990
3108
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
2991
3109
|
max-width: 400px !important;
|
|
2992
3110
|
min-width: 320px !important;
|
|
3111
|
+
/* stylelint-enable */
|
|
3112
|
+
/* stylelint-disable */
|
|
3113
|
+
/* stylelint-enable */
|
|
2993
3114
|
}
|
|
2994
3115
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
2995
3116
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3027,8 +3148,10 @@
|
|
|
3027
3148
|
}
|
|
3028
3149
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3029
3150
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3151
|
+
/* stylelint-disable */
|
|
3030
3152
|
margin-left: -22px;
|
|
3031
3153
|
overflow: auto !important;
|
|
3154
|
+
/* stylelint-enable */
|
|
3032
3155
|
}
|
|
3033
3156
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3034
3157
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3047,6 +3170,10 @@
|
|
|
3047
3170
|
margin-left: 0;
|
|
3048
3171
|
margin-right: -22px;
|
|
3049
3172
|
}
|
|
3173
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3174
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3175
|
+
/* stylelint-disable */
|
|
3176
|
+
}
|
|
3050
3177
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3051
3178
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3052
3179
|
margin-left: 0;
|
|
@@ -3110,6 +3237,7 @@
|
|
|
3110
3237
|
}
|
|
3111
3238
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3112
3239
|
border: 0;
|
|
3240
|
+
/* stylelint-enable */
|
|
3113
3241
|
}
|
|
3114
3242
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3115
3243
|
margin: 0 0 0 6px;
|
|
@@ -3137,6 +3265,8 @@
|
|
|
3137
3265
|
overflow: auto;
|
|
3138
3266
|
padding: 20px;
|
|
3139
3267
|
padding-bottom: 0;
|
|
3268
|
+
/* stylelint-disable */
|
|
3269
|
+
/* stylelint-enable */
|
|
3140
3270
|
}
|
|
3141
3271
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3142
3272
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3175,6 +3305,9 @@
|
|
|
3175
3305
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3176
3306
|
float: right;
|
|
3177
3307
|
}
|
|
3308
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3309
|
+
/* stylelint-disable */
|
|
3310
|
+
}
|
|
3178
3311
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3179
3312
|
margin-left: 0;
|
|
3180
3313
|
}
|
|
@@ -3313,6 +3446,7 @@
|
|
|
3313
3446
|
overflow: hidden;
|
|
3314
3447
|
padding: 0 !important;
|
|
3315
3448
|
padding-top: 1px;
|
|
3449
|
+
/* stylelint-enable */
|
|
3316
3450
|
}
|
|
3317
3451
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3318
3452
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3379,6 +3513,11 @@
|
|
|
3379
3513
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3380
3514
|
padding-right: 0;
|
|
3381
3515
|
}
|
|
3516
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3517
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3518
|
+
/* stylelint-disable */
|
|
3519
|
+
/* stylelint-enable */
|
|
3520
|
+
}
|
|
3382
3521
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3383
3522
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3384
3523
|
padding-left: 24px;
|
|
@@ -3428,6 +3567,7 @@
|
|
|
3428
3567
|
padding: 4px;
|
|
3429
3568
|
}
|
|
3430
3569
|
|
|
3570
|
+
/* stylelint-disable */
|
|
3431
3571
|
.e-button-drag-clone {
|
|
3432
3572
|
background-color: #292827 !important;
|
|
3433
3573
|
border: 1px solid #292827;
|
|
@@ -3467,6 +3607,12 @@
|
|
|
3467
3607
|
width: auto !important;
|
|
3468
3608
|
}
|
|
3469
3609
|
|
|
3610
|
+
/* stylelint-enable */
|
|
3611
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3612
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3613
|
+
/* stylelint-disable */
|
|
3614
|
+
/* stylelint-enable */
|
|
3615
|
+
}
|
|
3470
3616
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3471
3617
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
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,
|
|
@@ -3531,6 +3677,10 @@
|
|
|
3531
3677
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3532
3678
|
margin-left: 10px;
|
|
3533
3679
|
}
|
|
3680
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3681
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3682
|
+
/* stylelint-disable */
|
|
3683
|
+
}
|
|
3534
3684
|
.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,
|
|
3535
3685
|
.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 {
|
|
3536
3686
|
margin: 0 0 0 6px;
|
|
@@ -3679,6 +3829,7 @@
|
|
|
3679
3829
|
background-color: #292827;
|
|
3680
3830
|
}
|
|
3681
3831
|
|
|
3832
|
+
/* stylelint-disable */
|
|
3682
3833
|
*.e-rtl .e-select-table {
|
|
3683
3834
|
padding: 8px 5px;
|
|
3684
3835
|
}
|
|
@@ -3717,6 +3868,8 @@
|
|
|
3717
3868
|
font-size: 14px;
|
|
3718
3869
|
max-width: 700px;
|
|
3719
3870
|
min-width: 300px;
|
|
3871
|
+
/* stylelint-enable */
|
|
3872
|
+
/* stylelint-enable */
|
|
3720
3873
|
}
|
|
3721
3874
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3722
3875
|
display: -ms-flexbox;
|
|
@@ -3839,6 +3992,8 @@
|
|
|
3839
3992
|
display: -ms-flexbox;
|
|
3840
3993
|
display: flex;
|
|
3841
3994
|
padding-right: 18px;
|
|
3995
|
+
/* stylelint-disable */
|
|
3996
|
+
/* stylelint-enable */
|
|
3842
3997
|
}
|
|
3843
3998
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3844
3999
|
-ms-flex: auto;
|
|
@@ -3850,7 +4005,9 @@
|
|
|
3850
4005
|
color: #a19f9d;
|
|
3851
4006
|
cursor: pointer;
|
|
3852
4007
|
font-size: 14px;
|
|
4008
|
+
/* stylelint-disable */
|
|
3853
4009
|
height: 20px !important;
|
|
4010
|
+
/* stylelint-enable */
|
|
3854
4011
|
padding: 6px 0 0 4px;
|
|
3855
4012
|
width: 20px;
|
|
3856
4013
|
}
|
|
@@ -3887,9 +4044,13 @@
|
|
|
3887
4044
|
}
|
|
3888
4045
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3889
4046
|
overflow: hidden;
|
|
4047
|
+
/* stylelint-disable */
|
|
4048
|
+
/* stylelint-enable */
|
|
3890
4049
|
}
|
|
3891
4050
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3892
4051
|
margin-left: -30px;
|
|
4052
|
+
/* stylelint-disable */
|
|
4053
|
+
/* stylelint-enable */
|
|
3893
4054
|
}
|
|
3894
4055
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3895
4056
|
cursor: default;
|
|
@@ -4399,6 +4560,8 @@
|
|
|
4399
4560
|
}
|
|
4400
4561
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4401
4562
|
height: 369px;
|
|
4563
|
+
/* stylelint-disable */
|
|
4564
|
+
/* stylelint-enable */
|
|
4402
4565
|
}
|
|
4403
4566
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4404
4567
|
height: 392px !important;
|
|
@@ -4422,6 +4585,7 @@
|
|
|
4422
4585
|
display: -ms-flexbox;
|
|
4423
4586
|
display: flex;
|
|
4424
4587
|
padding: 10px 18px;
|
|
4588
|
+
/* stylelint-disable */
|
|
4425
4589
|
}
|
|
4426
4590
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4427
4591
|
float: right;
|
|
@@ -4458,6 +4622,8 @@
|
|
|
4458
4622
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4459
4623
|
margin-left: 0;
|
|
4460
4624
|
margin-right: -30px;
|
|
4625
|
+
/* stylelint-disable */
|
|
4626
|
+
/* stylelint-enable */
|
|
4461
4627
|
}
|
|
4462
4628
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4463
4629
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -4488,6 +4654,8 @@
|
|
|
4488
4654
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4489
4655
|
padding-left: 18px;
|
|
4490
4656
|
padding-right: 0;
|
|
4657
|
+
/* stylelint-disable */
|
|
4658
|
+
/* stylelint-enable */
|
|
4491
4659
|
}
|
|
4492
4660
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4493
4661
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4573,8 +4741,10 @@
|
|
|
4573
4741
|
}
|
|
4574
4742
|
.e-pivotfieldlist-container.e-device {
|
|
4575
4743
|
height: 100%;
|
|
4744
|
+
/* stylelint-disable */
|
|
4576
4745
|
max-height: 100% !important;
|
|
4577
4746
|
max-width: 100% !important;
|
|
4747
|
+
/* stylelint-enable */
|
|
4578
4748
|
min-height: 500px;
|
|
4579
4749
|
width: 100%;
|
|
4580
4750
|
}
|
|
@@ -4679,6 +4849,8 @@
|
|
|
4679
4849
|
padding: 9px 16px;
|
|
4680
4850
|
text-transform: none;
|
|
4681
4851
|
width: 100%;
|
|
4852
|
+
/* stylelint-disable */
|
|
4853
|
+
/* stylelint-enable */
|
|
4682
4854
|
}
|
|
4683
4855
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4684
4856
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4868,6 +5040,10 @@
|
|
|
4868
5040
|
vertical-align: middle;
|
|
4869
5041
|
width: 70%;
|
|
4870
5042
|
}
|
|
5043
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5044
|
+
/* stylelint-disable */
|
|
5045
|
+
/* stylelint-enable */
|
|
5046
|
+
}
|
|
4871
5047
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4872
5048
|
background-color: #1b1a19;
|
|
4873
5049
|
border: 1px solid #292827;
|
|
@@ -4915,6 +5091,10 @@
|
|
|
4915
5091
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4916
5092
|
margin-right: 12px;
|
|
4917
5093
|
}
|
|
5094
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5095
|
+
/* stylelint-disable */
|
|
5096
|
+
/* stylelint-enable */
|
|
5097
|
+
}
|
|
4918
5098
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4919
5099
|
left: 16px;
|
|
4920
5100
|
right: auto;
|
|
@@ -5064,6 +5244,10 @@
|
|
|
5064
5244
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5065
5245
|
max-height: 600px;
|
|
5066
5246
|
}
|
|
5247
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5248
|
+
/* stylelint-disable */
|
|
5249
|
+
/* stylelint-enable */
|
|
5250
|
+
}
|
|
5067
5251
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5068
5252
|
margin-left: 12px;
|
|
5069
5253
|
margin-right: 0;
|
|
@@ -5084,6 +5268,11 @@
|
|
|
5084
5268
|
margin-left: 20px;
|
|
5085
5269
|
}
|
|
5086
5270
|
|
|
5271
|
+
/* stylelint-disable */
|
|
5272
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5273
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5274
|
+
/* stylelint-enable */
|
|
5275
|
+
}
|
|
5087
5276
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5088
5277
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5089
5278
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5239,6 +5428,16 @@
|
|
|
5239
5428
|
margin-top: 4px;
|
|
5240
5429
|
padding: 0 12px;
|
|
5241
5430
|
}
|
|
5431
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5432
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5433
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5434
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
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
|
+
/* stylelint-disable */
|
|
5440
|
+
}
|
|
5242
5441
|
.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,
|
|
5243
5442
|
.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,
|
|
5244
5443
|
.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,
|
|
@@ -5250,6 +5449,7 @@
|
|
|
5250
5449
|
font-size: 14px;
|
|
5251
5450
|
height: 36px !important;
|
|
5252
5451
|
padding: 9px 16px !important;
|
|
5452
|
+
/* stylelint-enable */
|
|
5253
5453
|
}
|
|
5254
5454
|
.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,
|
|
5255
5455
|
.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,
|
|
@@ -5374,6 +5574,10 @@
|
|
|
5374
5574
|
.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 {
|
|
5375
5575
|
padding-top: 7px;
|
|
5376
5576
|
}
|
|
5577
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5578
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5579
|
+
/* stylelint-disable */
|
|
5580
|
+
}
|
|
5377
5581
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5378
5582
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5379
5583
|
padding-left: 16px;
|
|
@@ -5386,6 +5590,7 @@
|
|
|
5386
5590
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5387
5591
|
padding-left: 0;
|
|
5388
5592
|
padding-right: 5px;
|
|
5593
|
+
/* stylelint-enable */
|
|
5389
5594
|
}
|
|
5390
5595
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5391
5596
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5424,6 +5629,8 @@
|
|
|
5424
5629
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5425
5630
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5426
5631
|
padding-left: 20px;
|
|
5632
|
+
/* stylelint-disable */
|
|
5633
|
+
/* stylelint-enable */
|
|
5427
5634
|
}
|
|
5428
5635
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5429
5636
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5495,6 +5702,10 @@
|
|
|
5495
5702
|
padding-left: 0;
|
|
5496
5703
|
padding-right: 4px;
|
|
5497
5704
|
}
|
|
5705
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5706
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5707
|
+
/* stylelint-disable */
|
|
5708
|
+
}
|
|
5498
5709
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5499
5710
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5500
5711
|
max-height: 750px;
|
|
@@ -5531,4 +5742,6 @@
|
|
|
5531
5742
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5532
5743
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5533
5744
|
max-height: 184px;
|
|
5534
|
-
}
|
|
5745
|
+
}
|
|
5746
|
+
|
|
5747
|
+
/* stylelint-enable */
|