@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
package/styles/tailwind-dark.css
CHANGED
|
@@ -155,6 +155,12 @@
|
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
/*! PivotView layout */
|
|
158
|
+
.e-pivotview {
|
|
159
|
+
/* stylelint-disable */
|
|
160
|
+
/* stylelint-enable */
|
|
161
|
+
/* stylelint-enable */
|
|
162
|
+
/* stylelint-disable */
|
|
163
|
+
}
|
|
158
164
|
.e-pivotview .e-value-field-settings,
|
|
159
165
|
.e-pivotview .e-member-editor-dialog,
|
|
160
166
|
.e-pivotview .e-group-field-settings {
|
|
@@ -229,6 +235,7 @@
|
|
|
229
235
|
}
|
|
230
236
|
.e-pivotview .e-member-editor-dialog {
|
|
231
237
|
min-width: 320px;
|
|
238
|
+
/* stylelint-disable */
|
|
232
239
|
}
|
|
233
240
|
.e-pivotview .e-member-editor-dialog .e-editor-search-container {
|
|
234
241
|
display: -ms-flexbox;
|
|
@@ -248,6 +255,7 @@
|
|
|
248
255
|
.e-pivotview .e-member-editor-dialog .e-filter-sort {
|
|
249
256
|
box-shadow: none;
|
|
250
257
|
margin-left: 10px;
|
|
258
|
+
/* stylelint-disable */
|
|
251
259
|
}
|
|
252
260
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-ascend-icon,
|
|
253
261
|
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort .e-sort-descend-icon {
|
|
@@ -341,6 +349,7 @@
|
|
|
341
349
|
}
|
|
342
350
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container {
|
|
343
351
|
border: none;
|
|
352
|
+
/* stylelint-enable */
|
|
344
353
|
}
|
|
345
354
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
346
355
|
margin: 0 0 0 6px;
|
|
@@ -586,13 +595,16 @@
|
|
|
586
595
|
}
|
|
587
596
|
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
588
597
|
margin-left: 18px !important;
|
|
598
|
+
/* stylelint-enable */
|
|
589
599
|
}
|
|
590
600
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
601
|
+
/* stylelint-disable */
|
|
591
602
|
padding: 0 !important;
|
|
592
603
|
}
|
|
593
604
|
.e-pivotview .e-pivot-toolbar .e-reportlist-label {
|
|
594
605
|
float: left;
|
|
595
606
|
font-weight: 500;
|
|
607
|
+
/* stylelint-enable */
|
|
596
608
|
}
|
|
597
609
|
.e-pivotview .e-pivot-toolbar .e-reportlist-drop {
|
|
598
610
|
float: right;
|
|
@@ -621,6 +633,7 @@
|
|
|
621
633
|
}
|
|
622
634
|
|
|
623
635
|
.e-pivotview-report-dialog {
|
|
636
|
+
/* stylelint-disable */
|
|
624
637
|
max-width: 350px !important;
|
|
625
638
|
}
|
|
626
639
|
|
|
@@ -640,6 +653,7 @@
|
|
|
640
653
|
max-width: 500px !important;
|
|
641
654
|
}
|
|
642
655
|
|
|
656
|
+
/* stylelint-enable */
|
|
643
657
|
.e-report-outer {
|
|
644
658
|
display: inline-block;
|
|
645
659
|
width: 100%;
|
|
@@ -651,6 +665,7 @@
|
|
|
651
665
|
width: 40%;
|
|
652
666
|
}
|
|
653
667
|
|
|
668
|
+
/* stylelint-disable */
|
|
654
669
|
.e-pivotview-report-input {
|
|
655
670
|
float: right;
|
|
656
671
|
width: 60% !important;
|
|
@@ -672,11 +687,16 @@
|
|
|
672
687
|
font-size: 18px !important;
|
|
673
688
|
}
|
|
674
689
|
|
|
690
|
+
/* stylelint-enable */
|
|
675
691
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label,
|
|
676
692
|
.e-contextmenu-container.e-menu-popup.e-menu-container.e-pivot-chart-menu ul .e-dialog-multiple-axis .e-label {
|
|
677
693
|
white-space: nowrap;
|
|
678
694
|
}
|
|
679
695
|
|
|
696
|
+
.e-drillthrough-dialog {
|
|
697
|
+
/* stylelint-disable */
|
|
698
|
+
/* stylelint-enable */
|
|
699
|
+
}
|
|
680
700
|
.e-drillthrough-dialog .e-drillthrough-body-header-container {
|
|
681
701
|
margin-bottom: 20px;
|
|
682
702
|
}
|
|
@@ -697,6 +717,13 @@
|
|
|
697
717
|
flex-wrap: wrap;
|
|
698
718
|
}
|
|
699
719
|
|
|
720
|
+
.e-bigger .e-pivotview,
|
|
721
|
+
.e-bigger.e-pivotview {
|
|
722
|
+
/* stylelint-disable */
|
|
723
|
+
/* stylelint-enable */
|
|
724
|
+
/* stylelint-disable */
|
|
725
|
+
/* stylelint-enable */
|
|
726
|
+
}
|
|
700
727
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item .e-menu-icon,
|
|
701
728
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item .e-menu-icon {
|
|
702
729
|
line-height: 50px;
|
|
@@ -863,6 +890,18 @@
|
|
|
863
890
|
}
|
|
864
891
|
|
|
865
892
|
/*! PivotView theme */
|
|
893
|
+
.e-pivotview {
|
|
894
|
+
/* stylelint-enable */
|
|
895
|
+
/* stylelint-disable */
|
|
896
|
+
/* stylelint-enable */
|
|
897
|
+
/* stylelint-disable */
|
|
898
|
+
/* stylelint-enable */
|
|
899
|
+
/* stylelint-disable */
|
|
900
|
+
/* stylelint-enable */
|
|
901
|
+
/* stylelint-disable */
|
|
902
|
+
/* stylelint-enable */
|
|
903
|
+
/* stylelint-enable */
|
|
904
|
+
}
|
|
866
905
|
.e-pivotview .e-nextspan {
|
|
867
906
|
display: inline-block;
|
|
868
907
|
width: 18px;
|
|
@@ -883,6 +922,7 @@
|
|
|
883
922
|
text-align: right;
|
|
884
923
|
}
|
|
885
924
|
.e-pivotview .e-grid .e-rowcell {
|
|
925
|
+
/* stylelint-disable */
|
|
886
926
|
font-size: 14px !important;
|
|
887
927
|
padding-left: 8px;
|
|
888
928
|
-webkit-user-select: none;
|
|
@@ -1103,12 +1143,18 @@
|
|
|
1103
1143
|
}
|
|
1104
1144
|
.e-pivotview .e-rowcell {
|
|
1105
1145
|
opacity: 1;
|
|
1146
|
+
/* stylelint-disable */
|
|
1147
|
+
/* stylelint-enable */
|
|
1106
1148
|
}
|
|
1107
1149
|
.e-pivotview .e-rowcell .e-cellvalue {
|
|
1108
1150
|
-webkit-user-select: none;
|
|
1109
1151
|
-ms-user-select: none;
|
|
1110
1152
|
user-select: none;
|
|
1111
1153
|
}
|
|
1154
|
+
.e-pivotview .e-grouping-bar {
|
|
1155
|
+
/* stylelint-disable */
|
|
1156
|
+
/* stylelint-enable */
|
|
1157
|
+
}
|
|
1112
1158
|
.e-pivotview .e-grouping-bar .e-right-axis-fields {
|
|
1113
1159
|
-ms-flex: auto;
|
|
1114
1160
|
flex: auto;
|
|
@@ -1237,7 +1283,9 @@
|
|
|
1237
1283
|
border: 1px solid #4b5563;
|
|
1238
1284
|
border-radius: 0;
|
|
1239
1285
|
box-shadow: none;
|
|
1286
|
+
/* stylelint-disable */
|
|
1240
1287
|
color: #d1d5db !important;
|
|
1288
|
+
/* stylelint-enable */
|
|
1241
1289
|
cursor: default;
|
|
1242
1290
|
display: -ms-flexbox;
|
|
1243
1291
|
display: flex;
|
|
@@ -1248,6 +1296,8 @@
|
|
|
1248
1296
|
text-transform: none;
|
|
1249
1297
|
vertical-align: bottom;
|
|
1250
1298
|
z-index: 1;
|
|
1299
|
+
/* stylelint-disable */
|
|
1300
|
+
/* stylelint-enable */
|
|
1251
1301
|
}
|
|
1252
1302
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-list-selected,
|
|
1253
1303
|
.e-pivotview .e-group-rows .e-pivot-button.e-list-selected {
|
|
@@ -1586,6 +1636,12 @@
|
|
|
1586
1636
|
.e-pivotview .e-expand::before {
|
|
1587
1637
|
font-size: 18px;
|
|
1588
1638
|
}
|
|
1639
|
+
.e-pivotview.e-rtl {
|
|
1640
|
+
/* stylelint-disable */
|
|
1641
|
+
/* stylelint-enable */
|
|
1642
|
+
/* stylelint-disable */
|
|
1643
|
+
/* stylelint-enable */
|
|
1644
|
+
}
|
|
1589
1645
|
.e-pivotview.e-rtl .e-expand::before,
|
|
1590
1646
|
.e-pivotview.e-rtl .e-collapse::before {
|
|
1591
1647
|
margin-left: 0;
|
|
@@ -1657,8 +1713,10 @@
|
|
|
1657
1713
|
padding-right: 8px;
|
|
1658
1714
|
}
|
|
1659
1715
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div {
|
|
1716
|
+
/* stylelint-disable */
|
|
1660
1717
|
padding-left: 8px;
|
|
1661
1718
|
padding-right: 0;
|
|
1719
|
+
/* stylelint-enable */
|
|
1662
1720
|
}
|
|
1663
1721
|
.e-pivotview.e-rtl .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content {
|
|
1664
1722
|
margin-left: 4px;
|
|
@@ -1681,6 +1739,9 @@
|
|
|
1681
1739
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
1682
1740
|
float: left;
|
|
1683
1741
|
}
|
|
1742
|
+
.e-pivotview.e-device .e-grouping-bar {
|
|
1743
|
+
/* stylelint-disable */
|
|
1744
|
+
}
|
|
1684
1745
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1685
1746
|
line-height: 1em !important;
|
|
1686
1747
|
}
|
|
@@ -1758,6 +1819,13 @@
|
|
|
1758
1819
|
margin-right: 5px;
|
|
1759
1820
|
}
|
|
1760
1821
|
|
|
1822
|
+
.e-bigger .e-pivotview,
|
|
1823
|
+
.e-bigger.e-pivotview {
|
|
1824
|
+
/* stylelint-disable */
|
|
1825
|
+
/* stylelint-enable */
|
|
1826
|
+
/* stylelint-disable */
|
|
1827
|
+
/* stylelint-enable */
|
|
1828
|
+
}
|
|
1761
1829
|
.e-bigger .e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown,
|
|
1762
1830
|
.e-bigger.e-pivotview .e-chart-grouping-bar .e-axis-value .e-group-chart-values-drodown {
|
|
1763
1831
|
margin: 0;
|
|
@@ -1822,6 +1890,10 @@
|
|
|
1822
1890
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1823
1891
|
margin-top: 0;
|
|
1824
1892
|
}
|
|
1893
|
+
.e-bigger .e-pivotview .e-grouping-bar,
|
|
1894
|
+
.e-bigger.e-pivotview .e-grouping-bar {
|
|
1895
|
+
/* stylelint-enable */
|
|
1896
|
+
}
|
|
1825
1897
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1826
1898
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
1827
1899
|
height: 36px !important;
|
|
@@ -1862,6 +1934,7 @@
|
|
|
1862
1934
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
1863
1935
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
1864
1936
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1937
|
+
/* stylelint-disable */
|
|
1865
1938
|
font-size: 14px !important;
|
|
1866
1939
|
height: 20px;
|
|
1867
1940
|
margin-top: 1px;
|
|
@@ -1991,9 +2064,16 @@
|
|
|
1991
2064
|
}
|
|
1992
2065
|
.e-bigger .e-pivotview .e-rowcell,
|
|
1993
2066
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2067
|
+
/* stylelint-disable */
|
|
1994
2068
|
font-size: 16px !important;
|
|
1995
2069
|
padding: 0 12px;
|
|
1996
2070
|
}
|
|
2071
|
+
.e-bigger .e-pivotview.e-rtl,
|
|
2072
|
+
.e-bigger.e-pivotview.e-rtl {
|
|
2073
|
+
/* stylelint-enable */
|
|
2074
|
+
/* stylelint-disable */
|
|
2075
|
+
/* stylelint-enable */
|
|
2076
|
+
}
|
|
1997
2077
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
1998
2078
|
.e-bigger.e-pivotview.e-rtl .e-grid .e-rowsheader {
|
|
1999
2079
|
padding-right: 10px !important;
|
|
@@ -2072,6 +2152,10 @@
|
|
|
2072
2152
|
content: "\e774";
|
|
2073
2153
|
}
|
|
2074
2154
|
|
|
2155
|
+
.e-pivot-calc-dialog-div {
|
|
2156
|
+
/* stylelint-disable */
|
|
2157
|
+
/* stylelint-enable */
|
|
2158
|
+
}
|
|
2075
2159
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2076
2160
|
content: "\e726";
|
|
2077
2161
|
}
|
|
@@ -2173,6 +2257,11 @@
|
|
|
2173
2257
|
content: "\e754" !important;
|
|
2174
2258
|
}
|
|
2175
2259
|
|
|
2260
|
+
.e-pivotfieldlist-wrapper,
|
|
2261
|
+
.e-pivotfieldlist-container {
|
|
2262
|
+
/* stylelint-disable */
|
|
2263
|
+
/* stylelint-enable */
|
|
2264
|
+
}
|
|
2176
2265
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2177
2266
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2178
2267
|
content: "\e773";
|
|
@@ -2363,8 +2452,10 @@
|
|
|
2363
2452
|
}
|
|
2364
2453
|
|
|
2365
2454
|
.e-pivot-formatting-dialog {
|
|
2455
|
+
/* stylelint-disable */
|
|
2366
2456
|
max-height: 480px !important;
|
|
2367
2457
|
width: 640px !important;
|
|
2458
|
+
/* stylelint-enable */
|
|
2368
2459
|
}
|
|
2369
2460
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2370
2461
|
padding-bottom: 4px;
|
|
@@ -2439,7 +2530,9 @@
|
|
|
2439
2530
|
border: 1px solid #4b5563;
|
|
2440
2531
|
border-radius: 4px;
|
|
2441
2532
|
height: 28px;
|
|
2533
|
+
/* stylelint-disable */
|
|
2442
2534
|
margin: 0 !important;
|
|
2535
|
+
/* stylelint-enable */
|
|
2443
2536
|
padding-left: 6px;
|
|
2444
2537
|
padding-top: 6px;
|
|
2445
2538
|
width: 80px;
|
|
@@ -2460,7 +2553,9 @@
|
|
|
2460
2553
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2461
2554
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2462
2555
|
border: 1px solid #4b5563;
|
|
2556
|
+
/* stylelint-disable */
|
|
2463
2557
|
border-radius: 0 !important;
|
|
2558
|
+
/* stylelint-enable */
|
|
2464
2559
|
height: 40%;
|
|
2465
2560
|
left: -3px;
|
|
2466
2561
|
position: absolute;
|
|
@@ -2468,8 +2563,10 @@
|
|
|
2468
2563
|
width: 150%;
|
|
2469
2564
|
}
|
|
2470
2565
|
.e-pivot-formatting-dialog.e-device {
|
|
2566
|
+
/* stylelint-disable */
|
|
2471
2567
|
min-width: 320px !important;
|
|
2472
2568
|
width: 100% !important;
|
|
2569
|
+
/* stylelint-enable */
|
|
2473
2570
|
}
|
|
2474
2571
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2475
2572
|
width: 100% !important;
|
|
@@ -2521,7 +2618,11 @@
|
|
|
2521
2618
|
|
|
2522
2619
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2523
2620
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2621
|
+
/* stylelint-disable */
|
|
2524
2622
|
width: 730px !important;
|
|
2623
|
+
/* stylelint-enable */
|
|
2624
|
+
/* stylelint-disable */
|
|
2625
|
+
/* stylelint-enable */
|
|
2525
2626
|
}
|
|
2526
2627
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
2527
2628
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -2560,8 +2661,10 @@
|
|
|
2560
2661
|
}
|
|
2561
2662
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
2562
2663
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
2664
|
+
/* stylelint-disable */
|
|
2563
2665
|
min-width: 320px !important;
|
|
2564
2666
|
width: 100% !important;
|
|
2667
|
+
/* stylelint-enable */
|
|
2565
2668
|
}
|
|
2566
2669
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
2567
2670
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -2581,8 +2684,14 @@
|
|
|
2581
2684
|
}
|
|
2582
2685
|
|
|
2583
2686
|
.e-pivot-calc-dialog-div {
|
|
2687
|
+
/* stylelint-disable */
|
|
2584
2688
|
max-height: 550px !important;
|
|
2689
|
+
/* stylelint-enable */
|
|
2585
2690
|
min-width: 290px;
|
|
2691
|
+
/* stylelint-disable */
|
|
2692
|
+
/* stylelint-enable */
|
|
2693
|
+
/* stylelint-disable */
|
|
2694
|
+
/* stylelint-enable */
|
|
2586
2695
|
}
|
|
2587
2696
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
2588
2697
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -2628,9 +2737,11 @@
|
|
|
2628
2737
|
}
|
|
2629
2738
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2630
2739
|
color: #d1d5db;
|
|
2740
|
+
/* stylelint-disable */
|
|
2631
2741
|
float: right !important;
|
|
2632
2742
|
margin: 0;
|
|
2633
2743
|
margin-right: 12px !important;
|
|
2744
|
+
/* stylelint-enable */
|
|
2634
2745
|
}
|
|
2635
2746
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2636
2747
|
cursor: default;
|
|
@@ -2681,12 +2792,14 @@
|
|
|
2681
2792
|
margin-right: 4px;
|
|
2682
2793
|
pointer-events: auto;
|
|
2683
2794
|
width: 24px;
|
|
2795
|
+
/* stylelint-disable */
|
|
2684
2796
|
height: 20px;
|
|
2685
2797
|
margin-top: 0;
|
|
2686
2798
|
padding: 0 5px;
|
|
2687
2799
|
position: relative;
|
|
2688
2800
|
bottom: 1px;
|
|
2689
2801
|
width: 20px;
|
|
2802
|
+
/* stylelint-enable */
|
|
2690
2803
|
}
|
|
2691
2804
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item.e-active span.e-icons {
|
|
2692
2805
|
color: #d1d5db;
|
|
@@ -2932,8 +3045,11 @@
|
|
|
2932
3045
|
|
|
2933
3046
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2934
3047
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3048
|
+
/* stylelint-disable */
|
|
2935
3049
|
max-height: 600px !important;
|
|
2936
3050
|
min-width: 401px !important;
|
|
3051
|
+
/* stylelint-enable */
|
|
3052
|
+
/* stylelint-disable */
|
|
2937
3053
|
}
|
|
2938
3054
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2939
3055
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3019,6 +3135,9 @@
|
|
|
3019
3135
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3020
3136
|
max-width: 400px !important;
|
|
3021
3137
|
min-width: 320px !important;
|
|
3138
|
+
/* stylelint-enable */
|
|
3139
|
+
/* stylelint-disable */
|
|
3140
|
+
/* stylelint-enable */
|
|
3022
3141
|
}
|
|
3023
3142
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3024
3143
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3056,8 +3175,10 @@
|
|
|
3056
3175
|
}
|
|
3057
3176
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3058
3177
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3178
|
+
/* stylelint-disable */
|
|
3059
3179
|
margin-left: -22px;
|
|
3060
3180
|
overflow: auto !important;
|
|
3181
|
+
/* stylelint-enable */
|
|
3061
3182
|
}
|
|
3062
3183
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3063
3184
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3076,6 +3197,10 @@
|
|
|
3076
3197
|
margin-left: 0;
|
|
3077
3198
|
margin-right: -22px;
|
|
3078
3199
|
}
|
|
3200
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3201
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3202
|
+
/* stylelint-disable */
|
|
3203
|
+
}
|
|
3079
3204
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3080
3205
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3081
3206
|
margin-left: 0;
|
|
@@ -3137,6 +3262,7 @@
|
|
|
3137
3262
|
}
|
|
3138
3263
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3139
3264
|
border: 0;
|
|
3265
|
+
/* stylelint-enable */
|
|
3140
3266
|
}
|
|
3141
3267
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3142
3268
|
margin: 0 0 0 6px;
|
|
@@ -3166,6 +3292,8 @@
|
|
|
3166
3292
|
overflow: auto;
|
|
3167
3293
|
padding: 20px;
|
|
3168
3294
|
padding-bottom: 0;
|
|
3295
|
+
/* stylelint-disable */
|
|
3296
|
+
/* stylelint-enable */
|
|
3169
3297
|
padding-top: 0;
|
|
3170
3298
|
}
|
|
3171
3299
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
@@ -3206,6 +3334,9 @@
|
|
|
3206
3334
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3207
3335
|
float: right;
|
|
3208
3336
|
}
|
|
3337
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3338
|
+
/* stylelint-disable */
|
|
3339
|
+
}
|
|
3209
3340
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3210
3341
|
margin-left: 0;
|
|
3211
3342
|
}
|
|
@@ -3345,6 +3476,7 @@
|
|
|
3345
3476
|
overflow: hidden;
|
|
3346
3477
|
padding: 0 !important;
|
|
3347
3478
|
padding: 12px 0 0 0 !important;
|
|
3479
|
+
/* stylelint-enable */
|
|
3348
3480
|
}
|
|
3349
3481
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3350
3482
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3416,6 +3548,11 @@
|
|
|
3416
3548
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3417
3549
|
padding-right: 0;
|
|
3418
3550
|
}
|
|
3551
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3552
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3553
|
+
/* stylelint-disable */
|
|
3554
|
+
/* stylelint-enable */
|
|
3555
|
+
}
|
|
3419
3556
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3420
3557
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3421
3558
|
padding-left: 24px;
|
|
@@ -3465,6 +3602,7 @@
|
|
|
3465
3602
|
padding: 4px;
|
|
3466
3603
|
}
|
|
3467
3604
|
|
|
3605
|
+
/* stylelint-disable */
|
|
3468
3606
|
.e-button-drag-clone {
|
|
3469
3607
|
background-color: #4b5563 !important;
|
|
3470
3608
|
border: 1px solid #4b5563;
|
|
@@ -3504,6 +3642,12 @@
|
|
|
3504
3642
|
width: auto !important;
|
|
3505
3643
|
}
|
|
3506
3644
|
|
|
3645
|
+
/* stylelint-enable */
|
|
3646
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3647
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3648
|
+
/* stylelint-disable */
|
|
3649
|
+
/* stylelint-enable */
|
|
3650
|
+
}
|
|
3507
3651
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3508
3652
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3509
3653
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3568,6 +3712,10 @@
|
|
|
3568
3712
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3569
3713
|
margin-left: 10px;
|
|
3570
3714
|
}
|
|
3715
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3716
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3717
|
+
/* stylelint-disable */
|
|
3718
|
+
}
|
|
3571
3719
|
.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,
|
|
3572
3720
|
.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 {
|
|
3573
3721
|
margin: 0 0 0 6px;
|
|
@@ -3720,6 +3868,7 @@
|
|
|
3720
3868
|
background-color: #4b5563;
|
|
3721
3869
|
}
|
|
3722
3870
|
|
|
3871
|
+
/* stylelint-disable */
|
|
3723
3872
|
*.e-rtl .e-select-table {
|
|
3724
3873
|
padding: 8px 5px;
|
|
3725
3874
|
}
|
|
@@ -3758,6 +3907,8 @@
|
|
|
3758
3907
|
font-size: 14px;
|
|
3759
3908
|
max-width: 700px;
|
|
3760
3909
|
min-width: 300px;
|
|
3910
|
+
/* stylelint-enable */
|
|
3911
|
+
/* stylelint-enable */
|
|
3761
3912
|
}
|
|
3762
3913
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3763
3914
|
display: -ms-flexbox;
|
|
@@ -3880,6 +4031,8 @@
|
|
|
3880
4031
|
display: -ms-flexbox;
|
|
3881
4032
|
display: flex;
|
|
3882
4033
|
padding-right: 18px;
|
|
4034
|
+
/* stylelint-disable */
|
|
4035
|
+
/* stylelint-enable */
|
|
3883
4036
|
}
|
|
3884
4037
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3885
4038
|
-ms-flex: auto;
|
|
@@ -3891,7 +4044,9 @@
|
|
|
3891
4044
|
color: #d1d5db;
|
|
3892
4045
|
cursor: pointer;
|
|
3893
4046
|
font-size: 14px;
|
|
4047
|
+
/* stylelint-disable */
|
|
3894
4048
|
height: 20px !important;
|
|
4049
|
+
/* stylelint-enable */
|
|
3895
4050
|
padding: 6px 0 0 4px;
|
|
3896
4051
|
width: 20px;
|
|
3897
4052
|
}
|
|
@@ -3924,9 +4079,13 @@
|
|
|
3924
4079
|
}
|
|
3925
4080
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3926
4081
|
overflow: hidden;
|
|
4082
|
+
/* stylelint-disable */
|
|
4083
|
+
/* stylelint-enable */
|
|
3927
4084
|
}
|
|
3928
4085
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3929
4086
|
margin-left: -30px;
|
|
4087
|
+
/* stylelint-disable */
|
|
4088
|
+
/* stylelint-enable */
|
|
3930
4089
|
}
|
|
3931
4090
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3932
4091
|
cursor: default;
|
|
@@ -4448,6 +4607,8 @@
|
|
|
4448
4607
|
}
|
|
4449
4608
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4450
4609
|
height: 369px;
|
|
4610
|
+
/* stylelint-disable */
|
|
4611
|
+
/* stylelint-enable */
|
|
4451
4612
|
}
|
|
4452
4613
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4453
4614
|
height: 389px !important;
|
|
@@ -4471,6 +4632,7 @@
|
|
|
4471
4632
|
display: -ms-flexbox;
|
|
4472
4633
|
display: flex;
|
|
4473
4634
|
padding: 10px 18px;
|
|
4635
|
+
/* stylelint-disable */
|
|
4474
4636
|
}
|
|
4475
4637
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4476
4638
|
float: right;
|
|
@@ -4507,6 +4669,8 @@
|
|
|
4507
4669
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4508
4670
|
margin-left: 0;
|
|
4509
4671
|
margin-right: -30px;
|
|
4672
|
+
/* stylelint-disable */
|
|
4673
|
+
/* stylelint-enable */
|
|
4510
4674
|
}
|
|
4511
4675
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4512
4676
|
font-family: Inter;
|
|
@@ -4537,6 +4701,8 @@
|
|
|
4537
4701
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4538
4702
|
padding-left: 18px;
|
|
4539
4703
|
padding-right: 0;
|
|
4704
|
+
/* stylelint-disable */
|
|
4705
|
+
/* stylelint-enable */
|
|
4540
4706
|
}
|
|
4541
4707
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4542
4708
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4618,8 +4784,10 @@
|
|
|
4618
4784
|
}
|
|
4619
4785
|
.e-pivotfieldlist-container.e-device {
|
|
4620
4786
|
height: 100%;
|
|
4787
|
+
/* stylelint-disable */
|
|
4621
4788
|
max-height: 100% !important;
|
|
4622
4789
|
max-width: 100% !important;
|
|
4790
|
+
/* stylelint-enable */
|
|
4623
4791
|
min-height: 500px;
|
|
4624
4792
|
width: 100%;
|
|
4625
4793
|
}
|
|
@@ -4726,6 +4894,8 @@
|
|
|
4726
4894
|
padding: 9px 16px;
|
|
4727
4895
|
text-transform: none;
|
|
4728
4896
|
width: 100%;
|
|
4897
|
+
/* stylelint-disable */
|
|
4898
|
+
/* stylelint-enable */
|
|
4729
4899
|
}
|
|
4730
4900
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4731
4901
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4917,6 +5087,10 @@
|
|
|
4917
5087
|
vertical-align: middle;
|
|
4918
5088
|
width: 70%;
|
|
4919
5089
|
}
|
|
5090
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5091
|
+
/* stylelint-disable */
|
|
5092
|
+
/* stylelint-enable */
|
|
5093
|
+
}
|
|
4920
5094
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4921
5095
|
background-color: #1f2937;
|
|
4922
5096
|
border: 1px solid #4b5563;
|
|
@@ -4964,6 +5138,10 @@
|
|
|
4964
5138
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4965
5139
|
margin-right: 12px;
|
|
4966
5140
|
}
|
|
5141
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5142
|
+
/* stylelint-disable */
|
|
5143
|
+
/* stylelint-enable */
|
|
5144
|
+
}
|
|
4967
5145
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4968
5146
|
left: 16px;
|
|
4969
5147
|
right: auto;
|
|
@@ -5113,6 +5291,10 @@
|
|
|
5113
5291
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5114
5292
|
max-height: 600px;
|
|
5115
5293
|
}
|
|
5294
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5295
|
+
/* stylelint-disable */
|
|
5296
|
+
/* stylelint-enable */
|
|
5297
|
+
}
|
|
5116
5298
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5117
5299
|
margin-left: 12px;
|
|
5118
5300
|
margin-right: 0;
|
|
@@ -5133,6 +5315,11 @@
|
|
|
5133
5315
|
margin-left: 20px;
|
|
5134
5316
|
}
|
|
5135
5317
|
|
|
5318
|
+
/* stylelint-disable */
|
|
5319
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5320
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5321
|
+
/* stylelint-enable */
|
|
5322
|
+
}
|
|
5136
5323
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5137
5324
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5138
5325
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5284,6 +5471,16 @@
|
|
|
5284
5471
|
margin-top: 4px;
|
|
5285
5472
|
padding: 0 12px;
|
|
5286
5473
|
}
|
|
5474
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5475
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5476
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5477
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5478
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5479
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5480
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5481
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5482
|
+
/* stylelint-disable */
|
|
5483
|
+
}
|
|
5287
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,
|
|
5288
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,
|
|
5289
5486
|
.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,
|
|
@@ -5295,6 +5492,7 @@
|
|
|
5295
5492
|
font-size: 14px;
|
|
5296
5493
|
height: 36px !important;
|
|
5297
5494
|
padding: 9px 16px !important;
|
|
5495
|
+
/* stylelint-enable */
|
|
5298
5496
|
}
|
|
5299
5497
|
.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,
|
|
5300
5498
|
.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,
|
|
@@ -5419,6 +5617,10 @@
|
|
|
5419
5617
|
.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 {
|
|
5420
5618
|
padding-top: 7px;
|
|
5421
5619
|
}
|
|
5620
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5621
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5622
|
+
/* stylelint-disable */
|
|
5623
|
+
}
|
|
5422
5624
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5423
5625
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5424
5626
|
padding-left: 16px;
|
|
@@ -5431,6 +5633,7 @@
|
|
|
5431
5633
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5432
5634
|
padding-left: 0;
|
|
5433
5635
|
padding-right: 5px;
|
|
5636
|
+
/* stylelint-enable */
|
|
5434
5637
|
}
|
|
5435
5638
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5436
5639
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5469,6 +5672,8 @@
|
|
|
5469
5672
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5470
5673
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5471
5674
|
padding-left: 16px;
|
|
5675
|
+
/* stylelint-disable */
|
|
5676
|
+
/* stylelint-enable */
|
|
5472
5677
|
}
|
|
5473
5678
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5474
5679
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5536,6 +5741,10 @@
|
|
|
5536
5741
|
padding-left: 0;
|
|
5537
5742
|
padding-right: 4px;
|
|
5538
5743
|
}
|
|
5744
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5745
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5746
|
+
/* stylelint-disable */
|
|
5747
|
+
}
|
|
5539
5748
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5540
5749
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5541
5750
|
max-height: 750px;
|
|
@@ -5572,4 +5781,6 @@
|
|
|
5572
5781
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5573
5782
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5574
5783
|
max-height: 179px;
|
|
5575
|
-
}
|
|
5784
|
+
}
|
|
5785
|
+
|
|
5786
|
+
/* stylelint-enable */
|