@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-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: 600px !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-dlg-content .e-pivot-calc-custom-format-div {
|
|
2577
2690
|
margin-top: 15px;
|
|
@@ -2613,9 +2726,11 @@
|
|
|
2613
2726
|
}
|
|
2614
2727
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2615
2728
|
color: #a19f9d;
|
|
2729
|
+
/* stylelint-disable */
|
|
2616
2730
|
float: right !important;
|
|
2617
2731
|
margin: 0;
|
|
2618
2732
|
margin-right: 12px !important;
|
|
2733
|
+
/* stylelint-enable */
|
|
2619
2734
|
}
|
|
2620
2735
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2621
2736
|
cursor: default;
|
|
@@ -2907,8 +3022,11 @@
|
|
|
2907
3022
|
|
|
2908
3023
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2909
3024
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3025
|
+
/* stylelint-disable */
|
|
2910
3026
|
max-height: 600px !important;
|
|
2911
3027
|
min-width: 401px !important;
|
|
3028
|
+
/* stylelint-enable */
|
|
3029
|
+
/* stylelint-disable */
|
|
2912
3030
|
}
|
|
2913
3031
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2914
3032
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2993,6 +3111,9 @@
|
|
|
2993
3111
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
2994
3112
|
max-width: 400px !important;
|
|
2995
3113
|
min-width: 320px !important;
|
|
3114
|
+
/* stylelint-enable */
|
|
3115
|
+
/* stylelint-disable */
|
|
3116
|
+
/* stylelint-enable */
|
|
2996
3117
|
}
|
|
2997
3118
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
2998
3119
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3030,8 +3151,10 @@
|
|
|
3030
3151
|
}
|
|
3031
3152
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3032
3153
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3154
|
+
/* stylelint-disable */
|
|
3033
3155
|
margin-left: -22px;
|
|
3034
3156
|
overflow: auto !important;
|
|
3157
|
+
/* stylelint-enable */
|
|
3035
3158
|
}
|
|
3036
3159
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3037
3160
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3050,6 +3173,10 @@
|
|
|
3050
3173
|
margin-left: 0;
|
|
3051
3174
|
margin-right: -22px;
|
|
3052
3175
|
}
|
|
3176
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3177
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3178
|
+
/* stylelint-disable */
|
|
3179
|
+
}
|
|
3053
3180
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3054
3181
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3055
3182
|
margin-left: 0;
|
|
@@ -3113,6 +3240,7 @@
|
|
|
3113
3240
|
}
|
|
3114
3241
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3115
3242
|
border: 0;
|
|
3243
|
+
/* stylelint-enable */
|
|
3116
3244
|
}
|
|
3117
3245
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3118
3246
|
margin: 0 0 0 6px;
|
|
@@ -3140,6 +3268,8 @@
|
|
|
3140
3268
|
overflow: auto;
|
|
3141
3269
|
padding: 20px;
|
|
3142
3270
|
padding-bottom: 0;
|
|
3271
|
+
/* stylelint-disable */
|
|
3272
|
+
/* stylelint-enable */
|
|
3143
3273
|
}
|
|
3144
3274
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3145
3275
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3178,6 +3308,9 @@
|
|
|
3178
3308
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3179
3309
|
float: right;
|
|
3180
3310
|
}
|
|
3311
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3312
|
+
/* stylelint-disable */
|
|
3313
|
+
}
|
|
3181
3314
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3182
3315
|
margin-left: 0;
|
|
3183
3316
|
}
|
|
@@ -3316,6 +3449,7 @@
|
|
|
3316
3449
|
overflow: hidden;
|
|
3317
3450
|
padding: 0 !important;
|
|
3318
3451
|
padding-top: 1px;
|
|
3452
|
+
/* stylelint-enable */
|
|
3319
3453
|
}
|
|
3320
3454
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3321
3455
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3382,6 +3516,11 @@
|
|
|
3382
3516
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3383
3517
|
padding-right: 0;
|
|
3384
3518
|
}
|
|
3519
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3520
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3521
|
+
/* stylelint-disable */
|
|
3522
|
+
/* stylelint-enable */
|
|
3523
|
+
}
|
|
3385
3524
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3386
3525
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3387
3526
|
padding-left: 24px;
|
|
@@ -3431,6 +3570,7 @@
|
|
|
3431
3570
|
padding: 4px;
|
|
3432
3571
|
}
|
|
3433
3572
|
|
|
3573
|
+
/* stylelint-disable */
|
|
3434
3574
|
.e-button-drag-clone {
|
|
3435
3575
|
background-color: #292827 !important;
|
|
3436
3576
|
border: 1px solid #292827;
|
|
@@ -3470,6 +3610,12 @@
|
|
|
3470
3610
|
width: auto !important;
|
|
3471
3611
|
}
|
|
3472
3612
|
|
|
3613
|
+
/* stylelint-enable */
|
|
3614
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3615
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3616
|
+
/* stylelint-disable */
|
|
3617
|
+
/* stylelint-enable */
|
|
3618
|
+
}
|
|
3473
3619
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3474
3620
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
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,
|
|
@@ -3534,6 +3680,10 @@
|
|
|
3534
3680
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3535
3681
|
margin-left: 10px;
|
|
3536
3682
|
}
|
|
3683
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3684
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3685
|
+
/* stylelint-disable */
|
|
3686
|
+
}
|
|
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
|
.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 {
|
|
3539
3689
|
margin: 0 0 0 6px;
|
|
@@ -3682,6 +3832,7 @@
|
|
|
3682
3832
|
background-color: #292827;
|
|
3683
3833
|
}
|
|
3684
3834
|
|
|
3835
|
+
/* stylelint-disable */
|
|
3685
3836
|
*.e-rtl .e-select-table {
|
|
3686
3837
|
padding: 8px 5px;
|
|
3687
3838
|
}
|
|
@@ -3720,6 +3871,8 @@
|
|
|
3720
3871
|
font-size: 14px;
|
|
3721
3872
|
max-width: 700px;
|
|
3722
3873
|
min-width: 300px;
|
|
3874
|
+
/* stylelint-enable */
|
|
3875
|
+
/* stylelint-enable */
|
|
3723
3876
|
}
|
|
3724
3877
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3725
3878
|
display: -ms-flexbox;
|
|
@@ -3842,6 +3995,8 @@
|
|
|
3842
3995
|
display: -ms-flexbox;
|
|
3843
3996
|
display: flex;
|
|
3844
3997
|
padding-right: 18px;
|
|
3998
|
+
/* stylelint-disable */
|
|
3999
|
+
/* stylelint-enable */
|
|
3845
4000
|
}
|
|
3846
4001
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3847
4002
|
-ms-flex: auto;
|
|
@@ -3853,7 +4008,9 @@
|
|
|
3853
4008
|
color: #a19f9d;
|
|
3854
4009
|
cursor: pointer;
|
|
3855
4010
|
font-size: 14px;
|
|
4011
|
+
/* stylelint-disable */
|
|
3856
4012
|
height: 20px !important;
|
|
4013
|
+
/* stylelint-enable */
|
|
3857
4014
|
padding: 6px 0 0 4px;
|
|
3858
4015
|
width: 20px;
|
|
3859
4016
|
}
|
|
@@ -3890,9 +4047,13 @@
|
|
|
3890
4047
|
}
|
|
3891
4048
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3892
4049
|
overflow: hidden;
|
|
4050
|
+
/* stylelint-disable */
|
|
4051
|
+
/* stylelint-enable */
|
|
3893
4052
|
}
|
|
3894
4053
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3895
4054
|
margin-left: -30px;
|
|
4055
|
+
/* stylelint-disable */
|
|
4056
|
+
/* stylelint-enable */
|
|
3896
4057
|
}
|
|
3897
4058
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3898
4059
|
cursor: default;
|
|
@@ -4402,6 +4563,8 @@
|
|
|
4402
4563
|
}
|
|
4403
4564
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4404
4565
|
height: 369px;
|
|
4566
|
+
/* stylelint-disable */
|
|
4567
|
+
/* stylelint-enable */
|
|
4405
4568
|
}
|
|
4406
4569
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4407
4570
|
height: 392px !important;
|
|
@@ -4425,6 +4588,7 @@
|
|
|
4425
4588
|
display: -ms-flexbox;
|
|
4426
4589
|
display: flex;
|
|
4427
4590
|
padding: 10px 18px;
|
|
4591
|
+
/* stylelint-disable */
|
|
4428
4592
|
}
|
|
4429
4593
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4430
4594
|
float: right;
|
|
@@ -4461,6 +4625,8 @@
|
|
|
4461
4625
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4462
4626
|
margin-left: 0;
|
|
4463
4627
|
margin-right: -30px;
|
|
4628
|
+
/* stylelint-disable */
|
|
4629
|
+
/* stylelint-enable */
|
|
4464
4630
|
}
|
|
4465
4631
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4466
4632
|
font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
|
|
@@ -4491,6 +4657,8 @@
|
|
|
4491
4657
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4492
4658
|
padding-left: 18px;
|
|
4493
4659
|
padding-right: 0;
|
|
4660
|
+
/* stylelint-disable */
|
|
4661
|
+
/* stylelint-enable */
|
|
4494
4662
|
}
|
|
4495
4663
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4496
4664
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4576,8 +4744,10 @@
|
|
|
4576
4744
|
}
|
|
4577
4745
|
.e-pivotfieldlist-container.e-device {
|
|
4578
4746
|
height: 100%;
|
|
4747
|
+
/* stylelint-disable */
|
|
4579
4748
|
max-height: 100% !important;
|
|
4580
4749
|
max-width: 100% !important;
|
|
4750
|
+
/* stylelint-enable */
|
|
4581
4751
|
min-height: 500px;
|
|
4582
4752
|
width: 100%;
|
|
4583
4753
|
}
|
|
@@ -4682,6 +4852,8 @@
|
|
|
4682
4852
|
padding: 9px 16px;
|
|
4683
4853
|
text-transform: none;
|
|
4684
4854
|
width: 100%;
|
|
4855
|
+
/* stylelint-disable */
|
|
4856
|
+
/* stylelint-enable */
|
|
4685
4857
|
}
|
|
4686
4858
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4687
4859
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4871,6 +5043,10 @@
|
|
|
4871
5043
|
vertical-align: middle;
|
|
4872
5044
|
width: 70%;
|
|
4873
5045
|
}
|
|
5046
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5047
|
+
/* stylelint-disable */
|
|
5048
|
+
/* stylelint-enable */
|
|
5049
|
+
}
|
|
4874
5050
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4875
5051
|
background-color: #1b1a19;
|
|
4876
5052
|
border: 1px solid #292827;
|
|
@@ -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 */
|