@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/material-dark.css
CHANGED
|
@@ -156,6 +156,12 @@
|
|
|
156
156
|
}
|
|
157
157
|
|
|
158
158
|
/*! PivotView layout */
|
|
159
|
+
.e-pivotview {
|
|
160
|
+
/* stylelint-disable */
|
|
161
|
+
/* stylelint-enable */
|
|
162
|
+
/* stylelint-enable */
|
|
163
|
+
/* stylelint-disable */
|
|
164
|
+
}
|
|
159
165
|
.e-pivotview .e-value-field-settings,
|
|
160
166
|
.e-pivotview .e-member-editor-dialog,
|
|
161
167
|
.e-pivotview .e-group-field-settings {
|
|
@@ -229,6 +235,7 @@
|
|
|
229
235
|
}
|
|
230
236
|
.e-pivotview .e-member-editor-dialog {
|
|
231
237
|
min-width: 320px;
|
|
238
|
+
/* stylelint-disable */
|
|
232
239
|
}
|
|
233
240
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
234
241
|
display: -ms-flexbox;
|
|
@@ -242,6 +249,7 @@
|
|
|
242
249
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
243
250
|
box-shadow: none;
|
|
244
251
|
margin-left: 10px;
|
|
252
|
+
/* stylelint-disable */
|
|
245
253
|
}
|
|
246
254
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
247
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -333,6 +341,7 @@
|
|
|
333
341
|
}
|
|
334
342
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
335
343
|
border: none;
|
|
344
|
+
/* stylelint-enable */
|
|
336
345
|
}
|
|
337
346
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
338
347
|
margin: 0 0 0 6px;
|
|
@@ -568,13 +577,16 @@
|
|
|
568
577
|
}
|
|
569
578
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
570
579
|
margin-left: 18px !important;
|
|
580
|
+
/* stylelint-enable */
|
|
571
581
|
}
|
|
572
582
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
583
|
+
/* stylelint-disable */
|
|
573
584
|
padding: 0 !important;
|
|
574
585
|
}
|
|
575
586
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
576
587
|
float: left;
|
|
577
588
|
font-weight: 500;
|
|
589
|
+
/* stylelint-enable */
|
|
578
590
|
}
|
|
579
591
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
580
592
|
float: right;
|
|
@@ -603,6 +615,7 @@
|
|
|
603
615
|
}
|
|
604
616
|
|
|
605
617
|
.e-pivotview-report-dialog {
|
|
618
|
+
/* stylelint-disable */
|
|
606
619
|
max-width: 350px !important;
|
|
607
620
|
}
|
|
608
621
|
|
|
@@ -622,6 +635,7 @@
|
|
|
622
635
|
max-width: 500px !important;
|
|
623
636
|
}
|
|
624
637
|
|
|
638
|
+
/* stylelint-enable */
|
|
625
639
|
.e-report-outer {
|
|
626
640
|
display: inline-block;
|
|
627
641
|
width: 100%;
|
|
@@ -633,6 +647,7 @@
|
|
|
633
647
|
width: 40%;
|
|
634
648
|
}
|
|
635
649
|
|
|
650
|
+
/* stylelint-disable */
|
|
636
651
|
.e-pivotview-report-input {
|
|
637
652
|
float: right;
|
|
638
653
|
width: 60% !important;
|
|
@@ -654,11 +669,16 @@
|
|
|
654
669
|
font-size: 18px !important;
|
|
655
670
|
}
|
|
656
671
|
|
|
672
|
+
/* stylelint-enable */
|
|
657
673
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
658
674
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
659
675
|
white-space: nowrap;
|
|
660
676
|
}
|
|
661
677
|
|
|
678
|
+
.e-drillthrough-dialog {
|
|
679
|
+
/* stylelint-disable */
|
|
680
|
+
/* stylelint-enable */
|
|
681
|
+
}
|
|
662
682
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
663
683
|
margin-bottom: 20px;
|
|
664
684
|
}
|
|
@@ -679,9 +699,18 @@
|
|
|
679
699
|
flex-wrap: wrap;
|
|
680
700
|
}
|
|
681
701
|
|
|
702
|
+
.e-bigger .e-pivotview,
|
|
703
|
+
.e-bigger.e-pivotview {
|
|
704
|
+
/* stylelint-disable */
|
|
705
|
+
/* stylelint-enable */
|
|
706
|
+
/* stylelint-disable */
|
|
707
|
+
/* stylelint-enable */
|
|
708
|
+
}
|
|
682
709
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
683
710
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
711
|
+
/* stylelint-disable */
|
|
684
712
|
height: 52px !important;
|
|
713
|
+
/* stylelint-enable */
|
|
685
714
|
}
|
|
686
715
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
687
716
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -837,6 +866,18 @@
|
|
|
837
866
|
}
|
|
838
867
|
|
|
839
868
|
/*! PivotView theme */
|
|
869
|
+
.e-pivotview {
|
|
870
|
+
/* stylelint-enable */
|
|
871
|
+
/* stylelint-disable */
|
|
872
|
+
/* stylelint-enable */
|
|
873
|
+
/* stylelint-disable */
|
|
874
|
+
/* stylelint-enable */
|
|
875
|
+
/* stylelint-disable */
|
|
876
|
+
/* stylelint-enable */
|
|
877
|
+
/* stylelint-disable */
|
|
878
|
+
/* stylelint-enable */
|
|
879
|
+
/* stylelint-enable */
|
|
880
|
+
}
|
|
840
881
|
.e-pivotview .e-nextspan {
|
|
841
882
|
display: inline-block;
|
|
842
883
|
width: 18px;
|
|
@@ -857,6 +898,7 @@
|
|
|
857
898
|
text-align: right;
|
|
858
899
|
}
|
|
859
900
|
.e-pivotview .e-grid .e-rowcell {
|
|
901
|
+
/* stylelint-disable */
|
|
860
902
|
font-size: 13px !important;
|
|
861
903
|
padding-left: 8px;
|
|
862
904
|
-webkit-user-select: none;
|
|
@@ -1063,12 +1105,18 @@
|
|
|
1063
1105
|
}
|
|
1064
1106
|
.e-pivotview .e-rowcell {
|
|
1065
1107
|
opacity: 1;
|
|
1108
|
+
/* stylelint-disable */
|
|
1109
|
+
/* stylelint-enable */
|
|
1066
1110
|
}
|
|
1067
1111
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1068
1112
|
-webkit-user-select: none;
|
|
1069
1113
|
-ms-user-select: none;
|
|
1070
1114
|
user-select: none;
|
|
1071
1115
|
}
|
|
1116
|
+
.e-pivotview .e-grouping-bar {
|
|
1117
|
+
/* stylelint-disable */
|
|
1118
|
+
/* stylelint-enable */
|
|
1119
|
+
}
|
|
1072
1120
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1073
1121
|
-ms-flex: auto;
|
|
1074
1122
|
flex: auto;
|
|
@@ -1194,7 +1242,9 @@
|
|
|
1194
1242
|
border: 1px solid none;
|
|
1195
1243
|
border-radius: 25px;
|
|
1196
1244
|
box-shadow: none;
|
|
1245
|
+
/* stylelint-disable */
|
|
1197
1246
|
color: #fff !important;
|
|
1247
|
+
/* stylelint-enable */
|
|
1198
1248
|
cursor: default;
|
|
1199
1249
|
display: -ms-flexbox;
|
|
1200
1250
|
display: flex;
|
|
@@ -1205,6 +1255,8 @@
|
|
|
1205
1255
|
text-transform: none;
|
|
1206
1256
|
vertical-align: bottom;
|
|
1207
1257
|
z-index: 1;
|
|
1258
|
+
/* stylelint-disable */
|
|
1259
|
+
/* stylelint-enable */
|
|
1208
1260
|
}
|
|
1209
1261
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1210
1262
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1541,6 +1593,12 @@
|
|
|
1541
1593
|
.e-pivotview .e-expand::before {
|
|
1542
1594
|
font-size: 10px;
|
|
1543
1595
|
}
|
|
1596
|
+
.e-pivotview.e-rtl {
|
|
1597
|
+
/* stylelint-disable */
|
|
1598
|
+
/* stylelint-enable */
|
|
1599
|
+
/* stylelint-disable */
|
|
1600
|
+
/* stylelint-enable */
|
|
1601
|
+
}
|
|
1544
1602
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1545
1603
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1546
1604
|
margin-left: 0;
|
|
@@ -1612,8 +1670,10 @@
|
|
|
1612
1670
|
padding-right: 8px;
|
|
1613
1671
|
}
|
|
1614
1672
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1673
|
+
/* stylelint-disable */
|
|
1615
1674
|
padding-left: 8px;
|
|
1616
1675
|
padding-right: 0;
|
|
1676
|
+
/* stylelint-enable */
|
|
1617
1677
|
}
|
|
1618
1678
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1619
1679
|
margin-left: 4px;
|
|
@@ -1636,6 +1696,9 @@
|
|
|
1636
1696
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1637
1697
|
float: left;
|
|
1638
1698
|
}
|
|
1699
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1700
|
+
/* stylelint-disable */
|
|
1701
|
+
}
|
|
1639
1702
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1640
1703
|
line-height: 1em !important;
|
|
1641
1704
|
}
|
|
@@ -1713,6 +1776,13 @@
|
|
|
1713
1776
|
margin-right: 5px;
|
|
1714
1777
|
}
|
|
1715
1778
|
|
|
1779
|
+
.e-bigger .e-pivotview,
|
|
1780
|
+
.e-bigger.e-pivotview {
|
|
1781
|
+
/* stylelint-disable */
|
|
1782
|
+
/* stylelint-enable */
|
|
1783
|
+
/* stylelint-disable */
|
|
1784
|
+
/* stylelint-enable */
|
|
1785
|
+
}
|
|
1716
1786
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1717
1787
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1718
1788
|
margin: 0;
|
|
@@ -1775,6 +1845,10 @@
|
|
|
1775
1845
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1776
1846
|
margin-top: 8px;
|
|
1777
1847
|
}
|
|
1848
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1849
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1850
|
+
/* stylelint-enable */
|
|
1851
|
+
}
|
|
1778
1852
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1779
1853
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1780
1854
|
height: 36px !important;
|
|
@@ -1815,6 +1889,7 @@
|
|
|
1815
1889
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1816
1890
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1817
1891
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1892
|
+
/* stylelint-disable */
|
|
1818
1893
|
font-size: 14px !important;
|
|
1819
1894
|
height: 20px;
|
|
1820
1895
|
margin-top: 0;
|
|
@@ -1931,8 +2006,15 @@
|
|
|
1931
2006
|
}
|
|
1932
2007
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1933
2008
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2009
|
+
/* stylelint-disable */
|
|
1934
2010
|
font-size: 13px !important;
|
|
1935
2011
|
}
|
|
2012
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2013
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2014
|
+
/* stylelint-enable */
|
|
2015
|
+
/* stylelint-disable */
|
|
2016
|
+
/* stylelint-enable */
|
|
2017
|
+
}
|
|
1936
2018
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1937
2019
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1938
2020
|
padding-right: 10px !important;
|
|
@@ -2003,6 +2085,10 @@
|
|
|
2003
2085
|
content: "\e614";
|
|
2004
2086
|
}
|
|
2005
2087
|
|
|
2088
|
+
.e-pivot-calc-dialog-div {
|
|
2089
|
+
/* stylelint-disable */
|
|
2090
|
+
/* stylelint-enable */
|
|
2091
|
+
}
|
|
2006
2092
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2007
2093
|
content: "\e330";
|
|
2008
2094
|
}
|
|
@@ -2098,6 +2184,11 @@
|
|
|
2098
2184
|
content: "\e665" !important;
|
|
2099
2185
|
}
|
|
2100
2186
|
|
|
2187
|
+
.e-pivotfieldlist-wrapper,
|
|
2188
|
+
.e-pivotfieldlist-container {
|
|
2189
|
+
/* stylelint-disable */
|
|
2190
|
+
/* stylelint-enable */
|
|
2191
|
+
}
|
|
2101
2192
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2102
2193
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2103
2194
|
content: "\e977";
|
|
@@ -2297,8 +2388,10 @@
|
|
|
2297
2388
|
}
|
|
2298
2389
|
|
|
2299
2390
|
.e-pivot-formatting-dialog {
|
|
2391
|
+
/* stylelint-disable */
|
|
2300
2392
|
max-height: 480px !important;
|
|
2301
2393
|
width: 628px !important;
|
|
2394
|
+
/* stylelint-enable */
|
|
2302
2395
|
}
|
|
2303
2396
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2304
2397
|
padding-bottom: 4px;
|
|
@@ -2373,7 +2466,9 @@
|
|
|
2373
2466
|
border: 1px solid #e0e0e0;
|
|
2374
2467
|
border-radius: 4px;
|
|
2375
2468
|
height: 28px;
|
|
2469
|
+
/* stylelint-disable */
|
|
2376
2470
|
margin: 0 !important;
|
|
2471
|
+
/* stylelint-enable */
|
|
2377
2472
|
padding-left: 6px;
|
|
2378
2473
|
padding-top: 6px;
|
|
2379
2474
|
width: 80px;
|
|
@@ -2394,7 +2489,9 @@
|
|
|
2394
2489
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2395
2490
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2396
2491
|
border: 1px solid #e0e0e0;
|
|
2492
|
+
/* stylelint-disable */
|
|
2397
2493
|
border-radius: 0 !important;
|
|
2494
|
+
/* stylelint-enable */
|
|
2398
2495
|
height: 40%;
|
|
2399
2496
|
left: -3px;
|
|
2400
2497
|
position: absolute;
|
|
@@ -2402,8 +2499,10 @@
|
|
|
2402
2499
|
width: 150%;
|
|
2403
2500
|
}
|
|
2404
2501
|
.e-pivot-formatting-dialog.e-device {
|
|
2502
|
+
/* stylelint-disable */
|
|
2405
2503
|
min-width: 320px !important;
|
|
2406
2504
|
width: 100% !important;
|
|
2505
|
+
/* stylelint-enable */
|
|
2407
2506
|
}
|
|
2408
2507
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2409
2508
|
width: 100% !important;
|
|
@@ -2452,7 +2551,11 @@
|
|
|
2452
2551
|
|
|
2453
2552
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2454
2553
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2554
|
+
/* stylelint-disable */
|
|
2455
2555
|
width: 680px !important;
|
|
2556
|
+
/* stylelint-enable */
|
|
2557
|
+
/* stylelint-disable */
|
|
2558
|
+
/* stylelint-enable */
|
|
2456
2559
|
}
|
|
2457
2560
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2458
2561
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2491,8 +2594,10 @@
|
|
|
2491
2594
|
}
|
|
2492
2595
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2493
2596
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2597
|
+
/* stylelint-disable */
|
|
2494
2598
|
min-width: 320px !important;
|
|
2495
2599
|
width: 100% !important;
|
|
2600
|
+
/* stylelint-enable */
|
|
2496
2601
|
}
|
|
2497
2602
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2498
2603
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2511,8 +2616,14 @@
|
|
|
2511
2616
|
}
|
|
2512
2617
|
|
|
2513
2618
|
.e-pivot-calc-dialog-div {
|
|
2619
|
+
/* stylelint-disable */
|
|
2514
2620
|
max-height: 550px !important;
|
|
2621
|
+
/* stylelint-enable */
|
|
2515
2622
|
min-width: 290px;
|
|
2623
|
+
/* stylelint-disable */
|
|
2624
|
+
/* stylelint-enable */
|
|
2625
|
+
/* stylelint-disable */
|
|
2626
|
+
/* stylelint-enable */
|
|
2516
2627
|
}
|
|
2517
2628
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2518
2629
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2557,9 +2668,11 @@
|
|
|
2557
2668
|
}
|
|
2558
2669
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2559
2670
|
color: rgba(255, 255, 255, 0.7);
|
|
2671
|
+
/* stylelint-disable */
|
|
2560
2672
|
float: right !important;
|
|
2561
2673
|
margin: 0;
|
|
2562
2674
|
margin-right: 12px !important;
|
|
2675
|
+
/* stylelint-enable */
|
|
2563
2676
|
}
|
|
2564
2677
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2565
2678
|
cursor: default;
|
|
@@ -2843,8 +2956,11 @@
|
|
|
2843
2956
|
|
|
2844
2957
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2845
2958
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2959
|
+
/* stylelint-disable */
|
|
2846
2960
|
max-height: 600px !important;
|
|
2847
2961
|
min-width: 401px !important;
|
|
2962
|
+
/* stylelint-enable */
|
|
2963
|
+
/* stylelint-disable */
|
|
2848
2964
|
}
|
|
2849
2965
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2850
2966
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2924,6 +3040,9 @@
|
|
|
2924
3040
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
2925
3041
|
max-width: 400px !important;
|
|
2926
3042
|
min-width: 320px !important;
|
|
3043
|
+
/* stylelint-enable */
|
|
3044
|
+
/* stylelint-disable */
|
|
3045
|
+
/* stylelint-enable */
|
|
2927
3046
|
}
|
|
2928
3047
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
2929
3048
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -2961,8 +3080,10 @@
|
|
|
2961
3080
|
}
|
|
2962
3081
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
2963
3082
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3083
|
+
/* stylelint-disable */
|
|
2964
3084
|
margin-left: -35px;
|
|
2965
3085
|
overflow: auto !important;
|
|
3086
|
+
/* stylelint-enable */
|
|
2966
3087
|
}
|
|
2967
3088
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
2968
3089
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -2981,6 +3102,10 @@
|
|
|
2981
3102
|
margin-left: 0;
|
|
2982
3103
|
margin-right: -35px;
|
|
2983
3104
|
}
|
|
3105
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3106
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3107
|
+
/* stylelint-disable */
|
|
3108
|
+
}
|
|
2984
3109
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
2985
3110
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
2986
3111
|
margin-left: 0;
|
|
@@ -3042,6 +3167,7 @@
|
|
|
3042
3167
|
}
|
|
3043
3168
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3044
3169
|
border: 0;
|
|
3170
|
+
/* stylelint-enable */
|
|
3045
3171
|
}
|
|
3046
3172
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3047
3173
|
margin: 0 0 0 6px;
|
|
@@ -3069,6 +3195,8 @@
|
|
|
3069
3195
|
overflow: auto;
|
|
3070
3196
|
padding: 20px;
|
|
3071
3197
|
padding-bottom: 0;
|
|
3198
|
+
/* stylelint-disable */
|
|
3199
|
+
/* stylelint-enable */
|
|
3072
3200
|
}
|
|
3073
3201
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3074
3202
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3107,6 +3235,9 @@
|
|
|
3107
3235
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3108
3236
|
float: right;
|
|
3109
3237
|
}
|
|
3238
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3239
|
+
/* stylelint-disable */
|
|
3240
|
+
}
|
|
3110
3241
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3111
3242
|
margin-left: 0;
|
|
3112
3243
|
}
|
|
@@ -3244,6 +3375,7 @@
|
|
|
3244
3375
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3245
3376
|
overflow: hidden;
|
|
3246
3377
|
padding: 0 !important;
|
|
3378
|
+
/* stylelint-enable */
|
|
3247
3379
|
}
|
|
3248
3380
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3249
3381
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3310,6 +3442,11 @@
|
|
|
3310
3442
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3311
3443
|
padding-right: 0;
|
|
3312
3444
|
}
|
|
3445
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3446
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3447
|
+
/* stylelint-disable */
|
|
3448
|
+
/* stylelint-enable */
|
|
3449
|
+
}
|
|
3313
3450
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3314
3451
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3315
3452
|
padding-left: 24px;
|
|
@@ -3359,6 +3496,7 @@
|
|
|
3359
3496
|
padding: 4px;
|
|
3360
3497
|
}
|
|
3361
3498
|
|
|
3499
|
+
/* stylelint-disable */
|
|
3362
3500
|
.e-button-drag-clone {
|
|
3363
3501
|
background-color: rgba(255, 255, 255, 0.18) !important;
|
|
3364
3502
|
border: 1px solid rgba(255, 255, 255, 0.18);
|
|
@@ -3392,6 +3530,12 @@
|
|
|
3392
3530
|
width: auto !important;
|
|
3393
3531
|
}
|
|
3394
3532
|
|
|
3533
|
+
/* stylelint-enable */
|
|
3534
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3535
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3536
|
+
/* stylelint-disable */
|
|
3537
|
+
/* stylelint-enable */
|
|
3538
|
+
}
|
|
3395
3539
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3396
3540
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3397
3541
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3456,6 +3600,10 @@
|
|
|
3456
3600
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3457
3601
|
margin-left: 10px;
|
|
3458
3602
|
}
|
|
3603
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3604
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3605
|
+
/* stylelint-disable */
|
|
3606
|
+
}
|
|
3459
3607
|
.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,
|
|
3460
3608
|
.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 {
|
|
3461
3609
|
margin: 0 0 0 6px;
|
|
@@ -3604,6 +3752,7 @@
|
|
|
3604
3752
|
background-color: rgba(255, 255, 255, 0.1);
|
|
3605
3753
|
}
|
|
3606
3754
|
|
|
3755
|
+
/* stylelint-disable */
|
|
3607
3756
|
*.e-rtl .e-select-table {
|
|
3608
3757
|
padding: 8px 5px;
|
|
3609
3758
|
}
|
|
@@ -3642,6 +3791,8 @@
|
|
|
3642
3791
|
font-size: 12px;
|
|
3643
3792
|
max-width: 700px;
|
|
3644
3793
|
min-width: 300px;
|
|
3794
|
+
/* stylelint-enable */
|
|
3795
|
+
/* stylelint-enable */
|
|
3645
3796
|
}
|
|
3646
3797
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3647
3798
|
display: -ms-flexbox;
|
|
@@ -3761,6 +3912,8 @@
|
|
|
3761
3912
|
display: -ms-flexbox;
|
|
3762
3913
|
display: flex;
|
|
3763
3914
|
padding-right: 15px;
|
|
3915
|
+
/* stylelint-disable */
|
|
3916
|
+
/* stylelint-enable */
|
|
3764
3917
|
}
|
|
3765
3918
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3766
3919
|
-ms-flex: auto;
|
|
@@ -3772,7 +3925,9 @@
|
|
|
3772
3925
|
color: #fff;
|
|
3773
3926
|
cursor: pointer;
|
|
3774
3927
|
font-size: 14px;
|
|
3928
|
+
/* stylelint-disable */
|
|
3775
3929
|
height: 20px !important;
|
|
3930
|
+
/* stylelint-enable */
|
|
3776
3931
|
padding: 7px 0 0 4px;
|
|
3777
3932
|
width: 20px;
|
|
3778
3933
|
}
|
|
@@ -3805,9 +3960,13 @@
|
|
|
3805
3960
|
}
|
|
3806
3961
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3807
3962
|
overflow: hidden;
|
|
3963
|
+
/* stylelint-disable */
|
|
3964
|
+
/* stylelint-enable */
|
|
3808
3965
|
}
|
|
3809
3966
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3810
3967
|
margin-left: -40px;
|
|
3968
|
+
/* stylelint-disable */
|
|
3969
|
+
/* stylelint-enable */
|
|
3811
3970
|
}
|
|
3812
3971
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3813
3972
|
cursor: default;
|
|
@@ -4315,6 +4474,8 @@
|
|
|
4315
4474
|
}
|
|
4316
4475
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4317
4476
|
height: 369px;
|
|
4477
|
+
/* stylelint-disable */
|
|
4478
|
+
/* stylelint-enable */
|
|
4318
4479
|
}
|
|
4319
4480
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4320
4481
|
height: 392px !important;
|
|
@@ -4338,6 +4499,7 @@
|
|
|
4338
4499
|
display: -ms-flexbox;
|
|
4339
4500
|
display: flex;
|
|
4340
4501
|
padding: 6px 20px;
|
|
4502
|
+
/* stylelint-disable */
|
|
4341
4503
|
}
|
|
4342
4504
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4343
4505
|
float: right;
|
|
@@ -4374,6 +4536,8 @@
|
|
|
4374
4536
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4375
4537
|
margin-left: 0;
|
|
4376
4538
|
margin-right: -40px;
|
|
4539
|
+
/* stylelint-disable */
|
|
4540
|
+
/* stylelint-enable */
|
|
4377
4541
|
}
|
|
4378
4542
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4379
4543
|
font-family: "Roboto", "Segoe UI", "GeezaPro", "DejaVu Serif", "sans-serif", "-apple-system", "BlinkMacSystemFont";
|
|
@@ -4404,6 +4568,8 @@
|
|
|
4404
4568
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4405
4569
|
padding-left: 15px;
|
|
4406
4570
|
padding-right: 0;
|
|
4571
|
+
/* stylelint-disable */
|
|
4572
|
+
/* stylelint-enable */
|
|
4407
4573
|
}
|
|
4408
4574
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4409
4575
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4485,8 +4651,10 @@
|
|
|
4485
4651
|
}
|
|
4486
4652
|
.e-pivotfieldlist-container.e-device {
|
|
4487
4653
|
height: 100%;
|
|
4654
|
+
/* stylelint-disable */
|
|
4488
4655
|
max-height: 100% !important;
|
|
4489
4656
|
max-width: 100% !important;
|
|
4657
|
+
/* stylelint-enable */
|
|
4490
4658
|
min-height: 500px;
|
|
4491
4659
|
width: 100%;
|
|
4492
4660
|
}
|
|
@@ -4591,6 +4759,8 @@
|
|
|
4591
4759
|
padding: 9px 16px;
|
|
4592
4760
|
text-transform: none;
|
|
4593
4761
|
width: 100%;
|
|
4762
|
+
/* stylelint-disable */
|
|
4763
|
+
/* stylelint-enable */
|
|
4594
4764
|
}
|
|
4595
4765
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4596
4766
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4780,6 +4950,10 @@
|
|
|
4780
4950
|
vertical-align: middle;
|
|
4781
4951
|
width: 70%;
|
|
4782
4952
|
}
|
|
4953
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
4954
|
+
/* stylelint-disable */
|
|
4955
|
+
/* stylelint-enable */
|
|
4956
|
+
}
|
|
4783
4957
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4784
4958
|
background-color: #303030;
|
|
4785
4959
|
border: 1px solid #616161;
|
|
@@ -4827,6 +5001,10 @@
|
|
|
4827
5001
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4828
5002
|
margin-right: 12px;
|
|
4829
5003
|
}
|
|
5004
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5005
|
+
/* stylelint-disable */
|
|
5006
|
+
/* stylelint-enable */
|
|
5007
|
+
}
|
|
4830
5008
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4831
5009
|
left: 16px;
|
|
4832
5010
|
right: auto;
|
|
@@ -4976,6 +5154,10 @@
|
|
|
4976
5154
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
4977
5155
|
max-height: 600px;
|
|
4978
5156
|
}
|
|
5157
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5158
|
+
/* stylelint-disable */
|
|
5159
|
+
/* stylelint-enable */
|
|
5160
|
+
}
|
|
4979
5161
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
4980
5162
|
margin-left: 12px;
|
|
4981
5163
|
margin-right: 0;
|
|
@@ -4996,6 +5178,11 @@
|
|
|
4996
5178
|
margin-left: 20px;
|
|
4997
5179
|
}
|
|
4998
5180
|
|
|
5181
|
+
/* stylelint-disable */
|
|
5182
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5183
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5184
|
+
/* stylelint-enable */
|
|
5185
|
+
}
|
|
4999
5186
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5000
5187
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5001
5188
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5147,6 +5334,16 @@
|
|
|
5147
5334
|
margin-top: 4px;
|
|
5148
5335
|
padding: 0 12px;
|
|
5149
5336
|
}
|
|
5337
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5338
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5339
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5340
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5341
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5342
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5343
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5344
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5345
|
+
/* stylelint-disable */
|
|
5346
|
+
}
|
|
5150
5347
|
.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,
|
|
5151
5348
|
.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,
|
|
5152
5349
|
.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,
|
|
@@ -5158,6 +5355,7 @@
|
|
|
5158
5355
|
font-size: 14px;
|
|
5159
5356
|
height: 36px !important;
|
|
5160
5357
|
padding: 9px 16px !important;
|
|
5358
|
+
/* stylelint-enable */
|
|
5161
5359
|
}
|
|
5162
5360
|
.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,
|
|
5163
5361
|
.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,
|
|
@@ -5282,6 +5480,10 @@
|
|
|
5282
5480
|
.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 {
|
|
5283
5481
|
padding-top: 7px;
|
|
5284
5482
|
}
|
|
5483
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5484
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5485
|
+
/* stylelint-disable */
|
|
5486
|
+
}
|
|
5285
5487
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5286
5488
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5287
5489
|
padding-left: 16px;
|
|
@@ -5294,6 +5496,7 @@
|
|
|
5294
5496
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5295
5497
|
padding-left: 0;
|
|
5296
5498
|
padding-right: 5px;
|
|
5499
|
+
/* stylelint-enable */
|
|
5297
5500
|
}
|
|
5298
5501
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5299
5502
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5332,6 +5535,8 @@
|
|
|
5332
5535
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5333
5536
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5334
5537
|
padding-left: 20px;
|
|
5538
|
+
/* stylelint-disable */
|
|
5539
|
+
/* stylelint-enable */
|
|
5335
5540
|
}
|
|
5336
5541
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5337
5542
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5399,6 +5604,10 @@
|
|
|
5399
5604
|
padding-left: 0;
|
|
5400
5605
|
padding-right: 4px;
|
|
5401
5606
|
}
|
|
5607
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5608
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5609
|
+
/* stylelint-disable */
|
|
5610
|
+
}
|
|
5402
5611
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5403
5612
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5404
5613
|
max-height: 750px;
|
|
@@ -5435,4 +5644,6 @@
|
|
|
5435
5644
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5436
5645
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5437
5646
|
max-height: 190px;
|
|
5438
|
-
}
|
|
5647
|
+
}
|
|
5648
|
+
|
|
5649
|
+
/* stylelint-enable */
|