@syncfusion/ej2-angular-pivotview 20.2.38-ngcc → 20.2.38
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 +233 -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 +191 -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 +1852 -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 +1862 -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 +358 -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 +357 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_material.scss +357 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +356 -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 +131 -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 +131 -0
- package/styles/pivotview/_fusionnew-definition.scss +131 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +132 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +131 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +130 -0
- package/styles/pivotview/_theme.scss +1583 -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 -674
- package/dist/ej2-angular-pivotview.umd.js +0 -666
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -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;
|
|
@@ -243,6 +250,7 @@
|
|
|
243
250
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
244
251
|
box-shadow: none;
|
|
245
252
|
margin-left: 10px;
|
|
253
|
+
/* stylelint-disable */
|
|
246
254
|
}
|
|
247
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
248
256
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -334,6 +342,7 @@
|
|
|
334
342
|
}
|
|
335
343
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
336
344
|
border: none;
|
|
345
|
+
/* stylelint-enable */
|
|
337
346
|
}
|
|
338
347
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
339
348
|
margin: 0 0 0 6px;
|
|
@@ -578,13 +587,16 @@
|
|
|
578
587
|
}
|
|
579
588
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
580
589
|
margin-left: 18px !important;
|
|
590
|
+
/* stylelint-enable */
|
|
581
591
|
}
|
|
582
592
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
593
|
+
/* stylelint-disable */
|
|
583
594
|
padding: 0 !important;
|
|
584
595
|
}
|
|
585
596
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
586
597
|
float: left;
|
|
587
598
|
font-weight: 500;
|
|
599
|
+
/* stylelint-enable */
|
|
588
600
|
}
|
|
589
601
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
590
602
|
float: right;
|
|
@@ -613,6 +625,7 @@
|
|
|
613
625
|
}
|
|
614
626
|
|
|
615
627
|
.e-pivotview-report-dialog {
|
|
628
|
+
/* stylelint-disable */
|
|
616
629
|
max-width: 350px !important;
|
|
617
630
|
}
|
|
618
631
|
|
|
@@ -632,6 +645,7 @@
|
|
|
632
645
|
max-width: 500px !important;
|
|
633
646
|
}
|
|
634
647
|
|
|
648
|
+
/* stylelint-enable */
|
|
635
649
|
.e-report-outer {
|
|
636
650
|
display: inline-block;
|
|
637
651
|
width: 100%;
|
|
@@ -644,6 +658,7 @@
|
|
|
644
658
|
padding-left: 12px;
|
|
645
659
|
}
|
|
646
660
|
|
|
661
|
+
/* stylelint-disable */
|
|
647
662
|
.e-pivotview-report-input {
|
|
648
663
|
float: right;
|
|
649
664
|
width: 60% !important;
|
|
@@ -665,11 +680,16 @@
|
|
|
665
680
|
font-size: 18px !important;
|
|
666
681
|
}
|
|
667
682
|
|
|
683
|
+
/* stylelint-enable */
|
|
668
684
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
669
685
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
670
686
|
white-space: nowrap;
|
|
671
687
|
}
|
|
672
688
|
|
|
689
|
+
.e-drillthrough-dialog {
|
|
690
|
+
/* stylelint-disable */
|
|
691
|
+
/* stylelint-enable */
|
|
692
|
+
}
|
|
673
693
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
674
694
|
margin-bottom: 20px;
|
|
675
695
|
margin-bottom: 18px;
|
|
@@ -691,6 +711,13 @@
|
|
|
691
711
|
flex-wrap: wrap;
|
|
692
712
|
}
|
|
693
713
|
|
|
714
|
+
.e-bigger .e-pivotview,
|
|
715
|
+
.e-bigger.e-pivotview {
|
|
716
|
+
/* stylelint-disable */
|
|
717
|
+
/* stylelint-enable */
|
|
718
|
+
/* stylelint-disable */
|
|
719
|
+
/* stylelint-enable */
|
|
720
|
+
}
|
|
694
721
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
695
722
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
696
723
|
height: 139px;
|
|
@@ -845,6 +872,18 @@
|
|
|
845
872
|
}
|
|
846
873
|
|
|
847
874
|
/*! PivotView theme */
|
|
875
|
+
.e-pivotview {
|
|
876
|
+
/* stylelint-enable */
|
|
877
|
+
/* stylelint-disable */
|
|
878
|
+
/* stylelint-enable */
|
|
879
|
+
/* stylelint-disable */
|
|
880
|
+
/* stylelint-enable */
|
|
881
|
+
/* stylelint-disable */
|
|
882
|
+
/* stylelint-enable */
|
|
883
|
+
/* stylelint-disable */
|
|
884
|
+
/* stylelint-enable */
|
|
885
|
+
/* stylelint-enable */
|
|
886
|
+
}
|
|
848
887
|
.e-pivotview .e-nextspan {
|
|
849
888
|
display: inline-block;
|
|
850
889
|
width: 18px;
|
|
@@ -865,6 +904,7 @@
|
|
|
865
904
|
text-align: right;
|
|
866
905
|
}
|
|
867
906
|
.e-pivotview .e-grid .e-rowcell {
|
|
907
|
+
/* stylelint-disable */
|
|
868
908
|
font-size: 14px !important;
|
|
869
909
|
padding-left: 8px;
|
|
870
910
|
-webkit-user-select: none;
|
|
@@ -1080,12 +1120,18 @@
|
|
|
1080
1120
|
}
|
|
1081
1121
|
.e-pivotview .e-rowcell {
|
|
1082
1122
|
opacity: 1;
|
|
1123
|
+
/* stylelint-disable */
|
|
1124
|
+
/* stylelint-enable */
|
|
1083
1125
|
}
|
|
1084
1126
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1085
1127
|
-webkit-user-select: none;
|
|
1086
1128
|
-ms-user-select: none;
|
|
1087
1129
|
user-select: none;
|
|
1088
1130
|
}
|
|
1131
|
+
.e-pivotview .e-grouping-bar {
|
|
1132
|
+
/* stylelint-disable */
|
|
1133
|
+
/* stylelint-enable */
|
|
1134
|
+
}
|
|
1089
1135
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1090
1136
|
-ms-flex: auto;
|
|
1091
1137
|
flex: auto;
|
|
@@ -1246,7 +1292,9 @@
|
|
|
1246
1292
|
border: 1px solid #495057;
|
|
1247
1293
|
border-radius: 4px;
|
|
1248
1294
|
box-shadow: none;
|
|
1295
|
+
/* stylelint-disable */
|
|
1249
1296
|
color: #e9ecef !important;
|
|
1297
|
+
/* stylelint-enable */
|
|
1250
1298
|
cursor: default;
|
|
1251
1299
|
display: -ms-flexbox;
|
|
1252
1300
|
display: flex;
|
|
@@ -1257,6 +1305,8 @@
|
|
|
1257
1305
|
text-transform: none;
|
|
1258
1306
|
vertical-align: bottom;
|
|
1259
1307
|
z-index: 1;
|
|
1308
|
+
/* stylelint-disable */
|
|
1309
|
+
/* stylelint-enable */
|
|
1260
1310
|
}
|
|
1261
1311
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1262
1312
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1597,6 +1647,12 @@
|
|
|
1597
1647
|
.e-pivotview .e-expand::before {
|
|
1598
1648
|
font-size: 20px;
|
|
1599
1649
|
}
|
|
1650
|
+
.e-pivotview.e-rtl {
|
|
1651
|
+
/* stylelint-disable */
|
|
1652
|
+
/* stylelint-enable */
|
|
1653
|
+
/* stylelint-disable */
|
|
1654
|
+
/* stylelint-enable */
|
|
1655
|
+
}
|
|
1600
1656
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1601
1657
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1602
1658
|
margin-left: 0;
|
|
@@ -1668,8 +1724,10 @@
|
|
|
1668
1724
|
padding-right: 8px;
|
|
1669
1725
|
}
|
|
1670
1726
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1727
|
+
/* stylelint-disable */
|
|
1671
1728
|
padding-left: 8px;
|
|
1672
1729
|
padding-right: 0;
|
|
1730
|
+
/* stylelint-enable */
|
|
1673
1731
|
}
|
|
1674
1732
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1675
1733
|
margin-left: 4px;
|
|
@@ -1692,6 +1750,9 @@
|
|
|
1692
1750
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1693
1751
|
float: left;
|
|
1694
1752
|
}
|
|
1753
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1754
|
+
/* stylelint-disable */
|
|
1755
|
+
}
|
|
1695
1756
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1696
1757
|
line-height: 1em !important;
|
|
1697
1758
|
}
|
|
@@ -1769,6 +1830,13 @@
|
|
|
1769
1830
|
margin-right: 5px;
|
|
1770
1831
|
}
|
|
1771
1832
|
|
|
1833
|
+
.e-bigger .e-pivotview,
|
|
1834
|
+
.e-bigger.e-pivotview {
|
|
1835
|
+
/* stylelint-disable */
|
|
1836
|
+
/* stylelint-enable */
|
|
1837
|
+
/* stylelint-disable */
|
|
1838
|
+
/* stylelint-enable */
|
|
1839
|
+
}
|
|
1772
1840
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1773
1841
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1774
1842
|
margin: 4px;
|
|
@@ -1831,6 +1899,10 @@
|
|
|
1831
1899
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1832
1900
|
margin-top: 0;
|
|
1833
1901
|
}
|
|
1902
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1903
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1904
|
+
/* stylelint-enable */
|
|
1905
|
+
}
|
|
1834
1906
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1835
1907
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1836
1908
|
height: 36px !important;
|
|
@@ -1871,6 +1943,7 @@
|
|
|
1871
1943
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1872
1944
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1873
1945
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1946
|
+
/* stylelint-disable */
|
|
1874
1947
|
font-size: 14px !important;
|
|
1875
1948
|
height: 20px;
|
|
1876
1949
|
margin-top: 2px;
|
|
@@ -2001,8 +2074,15 @@
|
|
|
2001
2074
|
}
|
|
2002
2075
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2003
2076
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2077
|
+
/* stylelint-disable */
|
|
2004
2078
|
font-size: 16px !important;
|
|
2005
2079
|
}
|
|
2080
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2081
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2082
|
+
/* stylelint-enable */
|
|
2083
|
+
/* stylelint-disable */
|
|
2084
|
+
/* stylelint-enable */
|
|
2085
|
+
}
|
|
2006
2086
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
2007
2087
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
2008
2088
|
padding-right: 10px !important;
|
|
@@ -2081,6 +2161,10 @@
|
|
|
2081
2161
|
content: "\e774";
|
|
2082
2162
|
}
|
|
2083
2163
|
|
|
2164
|
+
.e-pivot-calc-dialog-div {
|
|
2165
|
+
/* stylelint-disable */
|
|
2166
|
+
/* stylelint-enable */
|
|
2167
|
+
}
|
|
2084
2168
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2085
2169
|
content: "\e726";
|
|
2086
2170
|
}
|
|
@@ -2179,6 +2263,11 @@
|
|
|
2179
2263
|
content: "\e7d8" !important;
|
|
2180
2264
|
}
|
|
2181
2265
|
|
|
2266
|
+
.e-pivotfieldlist-wrapper,
|
|
2267
|
+
.e-pivotfieldlist-container {
|
|
2268
|
+
/* stylelint-disable */
|
|
2269
|
+
/* stylelint-enable */
|
|
2270
|
+
}
|
|
2182
2271
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2183
2272
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2184
2273
|
content: "\e773";
|
|
@@ -2373,8 +2462,10 @@
|
|
|
2373
2462
|
}
|
|
2374
2463
|
|
|
2375
2464
|
.e-pivot-formatting-dialog {
|
|
2465
|
+
/* stylelint-disable */
|
|
2376
2466
|
max-height: 480px !important;
|
|
2377
2467
|
width: 628px !important;
|
|
2468
|
+
/* stylelint-enable */
|
|
2378
2469
|
}
|
|
2379
2470
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2380
2471
|
padding-bottom: 4px;
|
|
@@ -2423,7 +2514,9 @@
|
|
|
2423
2514
|
float: right;
|
|
2424
2515
|
padding-right: 12px;
|
|
2425
2516
|
padding-top: 12px;
|
|
2517
|
+
/* stylelint-disable */
|
|
2426
2518
|
color: #fff !important;
|
|
2519
|
+
/* stylelint-enable */
|
|
2427
2520
|
}
|
|
2428
2521
|
.e-pivot-formatting-dialog .e-format-delete-button:hover,
|
|
2429
2522
|
.e-pivot-formatting-dialog .e-format-delete-button:focus,
|
|
@@ -2451,7 +2544,9 @@
|
|
|
2451
2544
|
border: 1px solid #444c54;
|
|
2452
2545
|
border-radius: 4px;
|
|
2453
2546
|
height: 28px;
|
|
2547
|
+
/* stylelint-disable */
|
|
2454
2548
|
margin: 0 !important;
|
|
2549
|
+
/* stylelint-enable */
|
|
2455
2550
|
padding-left: 6px;
|
|
2456
2551
|
padding-top: 6px;
|
|
2457
2552
|
width: 80px;
|
|
@@ -2460,7 +2555,9 @@
|
|
|
2460
2555
|
background: none;
|
|
2461
2556
|
margin: 0 2px;
|
|
2462
2557
|
width: 14px;
|
|
2558
|
+
/* stylelint-disable */
|
|
2463
2559
|
color: #fff !important;
|
|
2560
|
+
/* stylelint-enable */
|
|
2464
2561
|
}
|
|
2465
2562
|
.e-pivot-formatting-dialog .e-format-color-picker .e-split-btn-wrapper .e-split-btn .e-selected-color:hover {
|
|
2466
2563
|
color: #adb5bd !important;
|
|
@@ -2476,7 +2573,9 @@
|
|
|
2476
2573
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2477
2574
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2478
2575
|
border: 1px solid #444c54;
|
|
2576
|
+
/* stylelint-disable */
|
|
2479
2577
|
border-radius: 0 !important;
|
|
2578
|
+
/* stylelint-enable */
|
|
2480
2579
|
height: 40%;
|
|
2481
2580
|
left: -3px;
|
|
2482
2581
|
position: absolute;
|
|
@@ -2484,8 +2583,10 @@
|
|
|
2484
2583
|
width: 150%;
|
|
2485
2584
|
}
|
|
2486
2585
|
.e-pivot-formatting-dialog.e-device {
|
|
2586
|
+
/* stylelint-disable */
|
|
2487
2587
|
min-width: 320px !important;
|
|
2488
2588
|
width: 100% !important;
|
|
2589
|
+
/* stylelint-enable */
|
|
2489
2590
|
}
|
|
2490
2591
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2491
2592
|
width: 100% !important;
|
|
@@ -2534,7 +2635,11 @@
|
|
|
2534
2635
|
|
|
2535
2636
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2536
2637
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2638
|
+
/* stylelint-disable */
|
|
2537
2639
|
width: 680px !important;
|
|
2640
|
+
/* stylelint-enable */
|
|
2641
|
+
/* stylelint-disable */
|
|
2642
|
+
/* stylelint-enable */
|
|
2538
2643
|
}
|
|
2539
2644
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2540
2645
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2574,8 +2679,10 @@
|
|
|
2574
2679
|
}
|
|
2575
2680
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2576
2681
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2682
|
+
/* stylelint-disable */
|
|
2577
2683
|
min-width: 320px !important;
|
|
2578
2684
|
width: 100% !important;
|
|
2685
|
+
/* stylelint-enable */
|
|
2579
2686
|
}
|
|
2580
2687
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2581
2688
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2594,8 +2701,14 @@
|
|
|
2594
2701
|
}
|
|
2595
2702
|
|
|
2596
2703
|
.e-pivot-calc-dialog-div {
|
|
2704
|
+
/* stylelint-disable */
|
|
2597
2705
|
max-height: 550px !important;
|
|
2706
|
+
/* stylelint-enable */
|
|
2598
2707
|
min-width: 290px;
|
|
2708
|
+
/* stylelint-disable */
|
|
2709
|
+
/* stylelint-enable */
|
|
2710
|
+
/* stylelint-disable */
|
|
2711
|
+
/* stylelint-enable */
|
|
2599
2712
|
}
|
|
2600
2713
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2601
2714
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2640,9 +2753,11 @@
|
|
|
2640
2753
|
color: #adb5bd;
|
|
2641
2754
|
}
|
|
2642
2755
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2756
|
+
/* stylelint-disable */
|
|
2643
2757
|
float: right !important;
|
|
2644
2758
|
margin: 0;
|
|
2645
2759
|
margin-right: 12px !important;
|
|
2760
|
+
/* stylelint-enable */
|
|
2646
2761
|
}
|
|
2647
2762
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2648
2763
|
cursor: default;
|
|
@@ -2930,8 +3045,11 @@
|
|
|
2930
3045
|
|
|
2931
3046
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2932
3047
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3048
|
+
/* stylelint-disable */
|
|
2933
3049
|
max-height: 600px !important;
|
|
2934
3050
|
min-width: 401px !important;
|
|
3051
|
+
/* stylelint-enable */
|
|
3052
|
+
/* stylelint-disable */
|
|
2935
3053
|
}
|
|
2936
3054
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2937
3055
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3016,6 +3134,9 @@
|
|
|
3016
3134
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3017
3135
|
max-width: 400px !important;
|
|
3018
3136
|
min-width: 320px !important;
|
|
3137
|
+
/* stylelint-enable */
|
|
3138
|
+
/* stylelint-disable */
|
|
3139
|
+
/* stylelint-enable */
|
|
3019
3140
|
}
|
|
3020
3141
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3021
3142
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3053,8 +3174,10 @@
|
|
|
3053
3174
|
}
|
|
3054
3175
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3055
3176
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3177
|
+
/* stylelint-disable */
|
|
3056
3178
|
margin-left: -22px;
|
|
3057
3179
|
overflow: auto !important;
|
|
3180
|
+
/* stylelint-enable */
|
|
3058
3181
|
}
|
|
3059
3182
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3060
3183
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3073,6 +3196,10 @@
|
|
|
3073
3196
|
margin-left: 0;
|
|
3074
3197
|
margin-right: -22px;
|
|
3075
3198
|
}
|
|
3199
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3200
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3201
|
+
/* stylelint-disable */
|
|
3202
|
+
}
|
|
3076
3203
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3077
3204
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3078
3205
|
margin-left: 0;
|
|
@@ -3134,6 +3261,7 @@
|
|
|
3134
3261
|
}
|
|
3135
3262
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3136
3263
|
border: 0;
|
|
3264
|
+
/* stylelint-enable */
|
|
3137
3265
|
}
|
|
3138
3266
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3139
3267
|
margin: 0 0 0 6px;
|
|
@@ -3162,6 +3290,8 @@
|
|
|
3162
3290
|
overflow: auto;
|
|
3163
3291
|
padding: 20px;
|
|
3164
3292
|
padding-bottom: 0;
|
|
3293
|
+
/* stylelint-disable */
|
|
3294
|
+
/* stylelint-enable */
|
|
3165
3295
|
}
|
|
3166
3296
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3167
3297
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div {
|
|
@@ -3200,6 +3330,9 @@
|
|
|
3200
3330
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3201
3331
|
float: right;
|
|
3202
3332
|
}
|
|
3333
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3334
|
+
/* stylelint-disable */
|
|
3335
|
+
}
|
|
3203
3336
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3204
3337
|
margin-left: 0;
|
|
3205
3338
|
}
|
|
@@ -3337,6 +3470,7 @@
|
|
|
3337
3470
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3338
3471
|
overflow: hidden;
|
|
3339
3472
|
padding: 0 !important;
|
|
3473
|
+
/* stylelint-enable */
|
|
3340
3474
|
}
|
|
3341
3475
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3342
3476
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3408,6 +3542,11 @@
|
|
|
3408
3542
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3409
3543
|
padding-right: 0;
|
|
3410
3544
|
}
|
|
3545
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3546
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3547
|
+
/* stylelint-disable */
|
|
3548
|
+
/* stylelint-enable */
|
|
3549
|
+
}
|
|
3411
3550
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3412
3551
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3413
3552
|
padding-left: 24px;
|
|
@@ -3457,6 +3596,7 @@
|
|
|
3457
3596
|
padding: 4px;
|
|
3458
3597
|
}
|
|
3459
3598
|
|
|
3599
|
+
/* stylelint-disable */
|
|
3460
3600
|
.e-button-drag-clone {
|
|
3461
3601
|
background-color: #495057 !important;
|
|
3462
3602
|
border: 1px solid #495057;
|
|
@@ -3496,6 +3636,12 @@
|
|
|
3496
3636
|
width: auto !important;
|
|
3497
3637
|
}
|
|
3498
3638
|
|
|
3639
|
+
/* stylelint-enable */
|
|
3640
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3641
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3642
|
+
/* stylelint-disable */
|
|
3643
|
+
/* stylelint-enable */
|
|
3644
|
+
}
|
|
3499
3645
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3500
3646
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3501
3647
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3560,6 +3706,10 @@
|
|
|
3560
3706
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3561
3707
|
margin-left: 10px;
|
|
3562
3708
|
}
|
|
3709
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3710
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3711
|
+
/* stylelint-disable */
|
|
3712
|
+
}
|
|
3563
3713
|
.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,
|
|
3564
3714
|
.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 {
|
|
3565
3715
|
margin: 0 0 0 6px;
|
|
@@ -3708,6 +3858,7 @@
|
|
|
3708
3858
|
background-color: #495057;
|
|
3709
3859
|
}
|
|
3710
3860
|
|
|
3861
|
+
/* stylelint-disable */
|
|
3711
3862
|
*.e-rtl .e-select-table {
|
|
3712
3863
|
padding: 8px 5px;
|
|
3713
3864
|
}
|
|
@@ -3746,6 +3897,8 @@
|
|
|
3746
3897
|
font-size: 14px;
|
|
3747
3898
|
max-width: 700px;
|
|
3748
3899
|
min-width: 300px;
|
|
3900
|
+
/* stylelint-enable */
|
|
3901
|
+
/* stylelint-enable */
|
|
3749
3902
|
}
|
|
3750
3903
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3751
3904
|
display: -ms-flexbox;
|
|
@@ -3871,6 +4024,8 @@
|
|
|
3871
4024
|
display: -ms-flexbox;
|
|
3872
4025
|
display: flex;
|
|
3873
4026
|
padding-right: 18px;
|
|
4027
|
+
/* stylelint-disable */
|
|
4028
|
+
/* stylelint-enable */
|
|
3874
4029
|
}
|
|
3875
4030
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3876
4031
|
-ms-flex: auto;
|
|
@@ -3882,7 +4037,9 @@
|
|
|
3882
4037
|
color: #ced4da;
|
|
3883
4038
|
cursor: pointer;
|
|
3884
4039
|
font-size: 14px;
|
|
4040
|
+
/* stylelint-disable */
|
|
3885
4041
|
height: 20px !important;
|
|
4042
|
+
/* stylelint-enable */
|
|
3886
4043
|
padding: 6px 0 0 4px;
|
|
3887
4044
|
width: 20px;
|
|
3888
4045
|
}
|
|
@@ -3915,9 +4072,13 @@
|
|
|
3915
4072
|
}
|
|
3916
4073
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3917
4074
|
overflow: hidden;
|
|
4075
|
+
/* stylelint-disable */
|
|
4076
|
+
/* stylelint-enable */
|
|
3918
4077
|
}
|
|
3919
4078
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3920
4079
|
margin-left: -30px;
|
|
4080
|
+
/* stylelint-disable */
|
|
4081
|
+
/* stylelint-enable */
|
|
3921
4082
|
}
|
|
3922
4083
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3923
4084
|
cursor: default;
|
|
@@ -4430,6 +4591,8 @@
|
|
|
4430
4591
|
}
|
|
4431
4592
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4432
4593
|
height: 369px;
|
|
4594
|
+
/* stylelint-disable */
|
|
4595
|
+
/* stylelint-enable */
|
|
4433
4596
|
}
|
|
4434
4597
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4435
4598
|
height: 392px !important;
|
|
@@ -4453,6 +4616,7 @@
|
|
|
4453
4616
|
display: -ms-flexbox;
|
|
4454
4617
|
display: flex;
|
|
4455
4618
|
padding: 10px 18px;
|
|
4619
|
+
/* stylelint-disable */
|
|
4456
4620
|
}
|
|
4457
4621
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4458
4622
|
float: right;
|
|
@@ -4489,6 +4653,8 @@
|
|
|
4489
4653
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4490
4654
|
margin-left: 0;
|
|
4491
4655
|
margin-right: -30px;
|
|
4656
|
+
/* stylelint-disable */
|
|
4657
|
+
/* stylelint-enable */
|
|
4492
4658
|
}
|
|
4493
4659
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4494
4660
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -4519,6 +4685,8 @@
|
|
|
4519
4685
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4520
4686
|
padding-left: 18px;
|
|
4521
4687
|
padding-right: 0;
|
|
4688
|
+
/* stylelint-disable */
|
|
4689
|
+
/* stylelint-enable */
|
|
4522
4690
|
}
|
|
4523
4691
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4524
4692
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4600,8 +4768,10 @@
|
|
|
4600
4768
|
}
|
|
4601
4769
|
.e-pivotfieldlist-container.e-device {
|
|
4602
4770
|
height: 100%;
|
|
4771
|
+
/* stylelint-disable */
|
|
4603
4772
|
max-height: 100% !important;
|
|
4604
4773
|
max-width: 100% !important;
|
|
4774
|
+
/* stylelint-enable */
|
|
4605
4775
|
min-height: 500px;
|
|
4606
4776
|
width: 100%;
|
|
4607
4777
|
}
|
|
@@ -4708,6 +4878,8 @@
|
|
|
4708
4878
|
width: 100%;
|
|
4709
4879
|
background-color: #212529;
|
|
4710
4880
|
color: #fff;
|
|
4881
|
+
/* stylelint-disable */
|
|
4882
|
+
/* stylelint-enable */
|
|
4711
4883
|
}
|
|
4712
4884
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4713
4885
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4901,6 +5073,10 @@
|
|
|
4901
5073
|
width: 70%;
|
|
4902
5074
|
color: #fff;
|
|
4903
5075
|
}
|
|
5076
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5077
|
+
/* stylelint-disable */
|
|
5078
|
+
/* stylelint-enable */
|
|
5079
|
+
}
|
|
4904
5080
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4905
5081
|
background-color: #212529;
|
|
4906
5082
|
border: 1px solid #444c54;
|
|
@@ -4948,6 +5124,10 @@
|
|
|
4948
5124
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4949
5125
|
margin-right: 12px;
|
|
4950
5126
|
}
|
|
5127
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5128
|
+
/* stylelint-disable */
|
|
5129
|
+
/* stylelint-enable */
|
|
5130
|
+
}
|
|
4951
5131
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4952
5132
|
left: 16px;
|
|
4953
5133
|
right: auto;
|
|
@@ -5098,6 +5278,10 @@
|
|
|
5098
5278
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5099
5279
|
max-height: 600px;
|
|
5100
5280
|
}
|
|
5281
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5282
|
+
/* stylelint-disable */
|
|
5283
|
+
/* stylelint-enable */
|
|
5284
|
+
}
|
|
5101
5285
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5102
5286
|
margin-left: 12px;
|
|
5103
5287
|
margin-right: 0;
|
|
@@ -5118,6 +5302,11 @@
|
|
|
5118
5302
|
margin-left: 20px;
|
|
5119
5303
|
}
|
|
5120
5304
|
|
|
5305
|
+
/* stylelint-disable */
|
|
5306
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5307
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5308
|
+
/* stylelint-enable */
|
|
5309
|
+
}
|
|
5121
5310
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5122
5311
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5123
5312
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5269,6 +5458,16 @@
|
|
|
5269
5458
|
margin-top: 4px;
|
|
5270
5459
|
padding: 0 12px;
|
|
5271
5460
|
}
|
|
5461
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5462
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5463
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5464
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5465
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5466
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5467
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5468
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5469
|
+
/* stylelint-disable */
|
|
5470
|
+
}
|
|
5272
5471
|
.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,
|
|
5273
5472
|
.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,
|
|
5274
5473
|
.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,
|
|
@@ -5280,6 +5479,7 @@
|
|
|
5280
5479
|
font-size: 14px;
|
|
5281
5480
|
height: 36px !important;
|
|
5282
5481
|
padding: 9px 16px !important;
|
|
5482
|
+
/* stylelint-enable */
|
|
5283
5483
|
}
|
|
5284
5484
|
.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,
|
|
5285
5485
|
.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,
|
|
@@ -5404,6 +5604,10 @@
|
|
|
5404
5604
|
.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 {
|
|
5405
5605
|
padding-top: 7px;
|
|
5406
5606
|
}
|
|
5607
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5608
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5609
|
+
/* stylelint-disable */
|
|
5610
|
+
}
|
|
5407
5611
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5408
5612
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5409
5613
|
padding-left: 12px;
|
|
@@ -5416,6 +5620,7 @@
|
|
|
5416
5620
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5417
5621
|
padding-left: 0;
|
|
5418
5622
|
padding-right: 5px;
|
|
5623
|
+
/* stylelint-enable */
|
|
5419
5624
|
}
|
|
5420
5625
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5421
5626
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5454,6 +5659,8 @@
|
|
|
5454
5659
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5455
5660
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5456
5661
|
padding-left: 20px;
|
|
5662
|
+
/* stylelint-disable */
|
|
5663
|
+
/* stylelint-enable */
|
|
5457
5664
|
}
|
|
5458
5665
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5459
5666
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5521,6 +5728,10 @@
|
|
|
5521
5728
|
padding-left: 0;
|
|
5522
5729
|
padding-right: 4px;
|
|
5523
5730
|
}
|
|
5731
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5732
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5733
|
+
/* stylelint-disable */
|
|
5734
|
+
}
|
|
5524
5735
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5525
5736
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5526
5737
|
max-height: 750px;
|
|
@@ -5557,4 +5768,6 @@
|
|
|
5557
5768
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5558
5769
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5559
5770
|
max-height: 187px;
|
|
5560
|
-
}
|
|
5771
|
+
}
|
|
5772
|
+
|
|
5773
|
+
/* stylelint-enable */
|