@syncfusion/ej2-angular-pivotview 20.2.43-ngcc → 20.2.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -1
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +212 -1
- package/styles/bootstrap.css +212 -1
- package/styles/bootstrap4.css +208 -2
- package/styles/bootstrap5-dark.css +214 -1
- package/styles/bootstrap5.css +214 -1
- package/styles/fabric-dark.css +212 -1
- package/styles/fabric.css +212 -1
- package/styles/fluent-dark.css +214 -1
- package/styles/fluent.css +214 -1
- package/styles/highcontrast-light.css +212 -1
- package/styles/highcontrast.css +212 -1
- package/styles/material-dark.css +212 -1
- package/styles/material.css +212 -1
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
- package/styles/pivotfieldlist/_layout.scss +1848 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
- package/styles/pivotfieldlist/_material-definition.scss +187 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
- package/styles/pivotfieldlist/_theme.scss +1857 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +130 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +125 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +134 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +130 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +130 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +132 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +132 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +130 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +130 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3.scss +353 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.css +130 -1
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +130 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +132 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +132 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
- package/styles/pivotview/_bootstrap-definition.scss +128 -0
- package/styles/pivotview/_bootstrap4-definition.scss +128 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +133 -0
- package/styles/pivotview/_fabric-dark-definition.scss +130 -0
- package/styles/pivotview/_fabric-definition.scss +127 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +133 -0
- package/styles/pivotview/_fusionnew-definition.scss +133 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1072 -0
- package/styles/pivotview/_material-dark-definition.scss +134 -0
- package/styles/pivotview/_material-definition.scss +130 -0
- package/styles/pivotview/_material3-definition.scss +133 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +133 -0
- package/styles/pivotview/_theme.scss +1581 -0
- package/styles/pivotview/bootstrap-dark.css +82 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +82 -0
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +83 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +80 -0
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +80 -0
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +82 -0
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +82 -0
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +82 -0
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +82 -0
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +82 -0
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +82 -0
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +82 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +82 -0
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +80 -0
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +80 -0
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +212 -1
- package/styles/tailwind.css +212 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -696
- package/dist/ej2-angular-pivotview.umd.js +0 -667
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/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: 600px !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 {
|
|
@@ -2631,9 +2740,11 @@
|
|
|
2631
2740
|
}
|
|
2632
2741
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
2633
2742
|
color: #d1d5db;
|
|
2743
|
+
/* stylelint-disable */
|
|
2634
2744
|
float: right !important;
|
|
2635
2745
|
margin: 0;
|
|
2636
2746
|
margin-right: 12px !important;
|
|
2747
|
+
/* stylelint-enable */
|
|
2637
2748
|
}
|
|
2638
2749
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
2639
2750
|
cursor: default;
|
|
@@ -2684,12 +2795,14 @@
|
|
|
2684
2795
|
margin-right: 4px;
|
|
2685
2796
|
pointer-events: auto;
|
|
2686
2797
|
width: 24px;
|
|
2798
|
+
/* stylelint-disable */
|
|
2687
2799
|
height: 20px;
|
|
2688
2800
|
margin-top: 0;
|
|
2689
2801
|
padding: 0 5px;
|
|
2690
2802
|
position: relative;
|
|
2691
2803
|
bottom: 1px;
|
|
2692
2804
|
width: 20px;
|
|
2805
|
+
/* stylelint-enable */
|
|
2693
2806
|
}
|
|
2694
2807
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item.e-active span.e-icons {
|
|
2695
2808
|
color: #d1d5db;
|
|
@@ -2935,8 +3048,11 @@
|
|
|
2935
3048
|
|
|
2936
3049
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2937
3050
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3051
|
+
/* stylelint-disable */
|
|
2938
3052
|
max-height: 600px !important;
|
|
2939
3053
|
min-width: 401px !important;
|
|
3054
|
+
/* stylelint-enable */
|
|
3055
|
+
/* stylelint-disable */
|
|
2940
3056
|
}
|
|
2941
3057
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2942
3058
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -3022,6 +3138,9 @@
|
|
|
3022
3138
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3023
3139
|
max-width: 400px !important;
|
|
3024
3140
|
min-width: 320px !important;
|
|
3141
|
+
/* stylelint-enable */
|
|
3142
|
+
/* stylelint-disable */
|
|
3143
|
+
/* stylelint-enable */
|
|
3025
3144
|
}
|
|
3026
3145
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
3027
3146
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -3059,8 +3178,10 @@
|
|
|
3059
3178
|
}
|
|
3060
3179
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3061
3180
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3181
|
+
/* stylelint-disable */
|
|
3062
3182
|
margin-left: -22px;
|
|
3063
3183
|
overflow: auto !important;
|
|
3184
|
+
/* stylelint-enable */
|
|
3064
3185
|
}
|
|
3065
3186
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3066
3187
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3079,6 +3200,10 @@
|
|
|
3079
3200
|
margin-left: 0;
|
|
3080
3201
|
margin-right: -22px;
|
|
3081
3202
|
}
|
|
3203
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
3204
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3205
|
+
/* stylelint-disable */
|
|
3206
|
+
}
|
|
3082
3207
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
3083
3208
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
3084
3209
|
margin-left: 0;
|
|
@@ -3140,6 +3265,7 @@
|
|
|
3140
3265
|
}
|
|
3141
3266
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
3142
3267
|
border: 0;
|
|
3268
|
+
/* stylelint-enable */
|
|
3143
3269
|
}
|
|
3144
3270
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
3145
3271
|
margin: 0 0 0 6px;
|
|
@@ -3169,6 +3295,8 @@
|
|
|
3169
3295
|
overflow: auto;
|
|
3170
3296
|
padding: 20px;
|
|
3171
3297
|
padding-bottom: 0;
|
|
3298
|
+
/* stylelint-disable */
|
|
3299
|
+
/* stylelint-enable */
|
|
3172
3300
|
padding-top: 0;
|
|
3173
3301
|
}
|
|
3174
3302
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
@@ -3209,6 +3337,9 @@
|
|
|
3209
3337
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
3210
3338
|
float: right;
|
|
3211
3339
|
}
|
|
3340
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
3341
|
+
/* stylelint-disable */
|
|
3342
|
+
}
|
|
3212
3343
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
3213
3344
|
margin-left: 0;
|
|
3214
3345
|
}
|
|
@@ -3348,6 +3479,7 @@
|
|
|
3348
3479
|
overflow: hidden;
|
|
3349
3480
|
padding: 0 !important;
|
|
3350
3481
|
padding: 12px 0 0 0 !important;
|
|
3482
|
+
/* stylelint-enable */
|
|
3351
3483
|
}
|
|
3352
3484
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3353
3485
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3419,6 +3551,11 @@
|
|
|
3419
3551
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
3420
3552
|
padding-right: 0;
|
|
3421
3553
|
}
|
|
3554
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
3555
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
3556
|
+
/* stylelint-disable */
|
|
3557
|
+
/* stylelint-enable */
|
|
3558
|
+
}
|
|
3422
3559
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
3423
3560
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
3424
3561
|
padding-left: 24px;
|
|
@@ -3468,6 +3605,7 @@
|
|
|
3468
3605
|
padding: 4px;
|
|
3469
3606
|
}
|
|
3470
3607
|
|
|
3608
|
+
/* stylelint-disable */
|
|
3471
3609
|
.e-button-drag-clone {
|
|
3472
3610
|
background-color: #4b5563 !important;
|
|
3473
3611
|
border: 1px solid #4b5563;
|
|
@@ -3507,6 +3645,12 @@
|
|
|
3507
3645
|
width: auto !important;
|
|
3508
3646
|
}
|
|
3509
3647
|
|
|
3648
|
+
/* stylelint-enable */
|
|
3649
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
3650
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
3651
|
+
/* stylelint-disable */
|
|
3652
|
+
/* stylelint-enable */
|
|
3653
|
+
}
|
|
3510
3654
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3511
3655
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
3512
3656
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -3571,6 +3715,10 @@
|
|
|
3571
3715
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
3572
3716
|
margin-left: 10px;
|
|
3573
3717
|
}
|
|
3718
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
3719
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3720
|
+
/* stylelint-disable */
|
|
3721
|
+
}
|
|
3574
3722
|
.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,
|
|
3575
3723
|
.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 {
|
|
3576
3724
|
margin: 0 0 0 6px;
|
|
@@ -3723,6 +3871,7 @@
|
|
|
3723
3871
|
background-color: #4b5563;
|
|
3724
3872
|
}
|
|
3725
3873
|
|
|
3874
|
+
/* stylelint-disable */
|
|
3726
3875
|
*.e-rtl .e-select-table {
|
|
3727
3876
|
padding: 8px 5px;
|
|
3728
3877
|
}
|
|
@@ -3761,6 +3910,8 @@
|
|
|
3761
3910
|
font-size: 14px;
|
|
3762
3911
|
max-width: 700px;
|
|
3763
3912
|
min-width: 300px;
|
|
3913
|
+
/* stylelint-enable */
|
|
3914
|
+
/* stylelint-enable */
|
|
3764
3915
|
}
|
|
3765
3916
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
3766
3917
|
display: -ms-flexbox;
|
|
@@ -3883,6 +4034,8 @@
|
|
|
3883
4034
|
display: -ms-flexbox;
|
|
3884
4035
|
display: flex;
|
|
3885
4036
|
padding-right: 18px;
|
|
4037
|
+
/* stylelint-disable */
|
|
4038
|
+
/* stylelint-enable */
|
|
3886
4039
|
}
|
|
3887
4040
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
3888
4041
|
-ms-flex: auto;
|
|
@@ -3894,7 +4047,9 @@
|
|
|
3894
4047
|
color: #d1d5db;
|
|
3895
4048
|
cursor: pointer;
|
|
3896
4049
|
font-size: 14px;
|
|
4050
|
+
/* stylelint-disable */
|
|
3897
4051
|
height: 20px !important;
|
|
4052
|
+
/* stylelint-enable */
|
|
3898
4053
|
padding: 6px 0 0 4px;
|
|
3899
4054
|
width: 20px;
|
|
3900
4055
|
}
|
|
@@ -3927,9 +4082,13 @@
|
|
|
3927
4082
|
}
|
|
3928
4083
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
3929
4084
|
overflow: hidden;
|
|
4085
|
+
/* stylelint-disable */
|
|
4086
|
+
/* stylelint-enable */
|
|
3930
4087
|
}
|
|
3931
4088
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
3932
4089
|
margin-left: -30px;
|
|
4090
|
+
/* stylelint-disable */
|
|
4091
|
+
/* stylelint-enable */
|
|
3933
4092
|
}
|
|
3934
4093
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
3935
4094
|
cursor: default;
|
|
@@ -4451,6 +4610,8 @@
|
|
|
4451
4610
|
}
|
|
4452
4611
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4453
4612
|
height: 369px;
|
|
4613
|
+
/* stylelint-disable */
|
|
4614
|
+
/* stylelint-enable */
|
|
4454
4615
|
}
|
|
4455
4616
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4456
4617
|
height: 389px !important;
|
|
@@ -4474,6 +4635,7 @@
|
|
|
4474
4635
|
display: -ms-flexbox;
|
|
4475
4636
|
display: flex;
|
|
4476
4637
|
padding: 10px 18px;
|
|
4638
|
+
/* stylelint-disable */
|
|
4477
4639
|
}
|
|
4478
4640
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4479
4641
|
float: right;
|
|
@@ -4510,6 +4672,8 @@
|
|
|
4510
4672
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
4511
4673
|
margin-left: 0;
|
|
4512
4674
|
margin-right: -30px;
|
|
4675
|
+
/* stylelint-disable */
|
|
4676
|
+
/* stylelint-enable */
|
|
4513
4677
|
}
|
|
4514
4678
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
4515
4679
|
font-family: Inter;
|
|
@@ -4540,6 +4704,8 @@
|
|
|
4540
4704
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
4541
4705
|
padding-left: 18px;
|
|
4542
4706
|
padding-right: 0;
|
|
4707
|
+
/* stylelint-disable */
|
|
4708
|
+
/* stylelint-enable */
|
|
4543
4709
|
}
|
|
4544
4710
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
4545
4711
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -4621,8 +4787,10 @@
|
|
|
4621
4787
|
}
|
|
4622
4788
|
.e-pivotfieldlist-container.e-device {
|
|
4623
4789
|
height: 100%;
|
|
4790
|
+
/* stylelint-disable */
|
|
4624
4791
|
max-height: 100% !important;
|
|
4625
4792
|
max-width: 100% !important;
|
|
4793
|
+
/* stylelint-enable */
|
|
4626
4794
|
min-height: 500px;
|
|
4627
4795
|
width: 100%;
|
|
4628
4796
|
}
|
|
@@ -4729,6 +4897,8 @@
|
|
|
4729
4897
|
padding: 9px 16px;
|
|
4730
4898
|
text-transform: none;
|
|
4731
4899
|
width: 100%;
|
|
4900
|
+
/* stylelint-disable */
|
|
4901
|
+
/* stylelint-enable */
|
|
4732
4902
|
}
|
|
4733
4903
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
4734
4904
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -4920,6 +5090,10 @@
|
|
|
4920
5090
|
vertical-align: middle;
|
|
4921
5091
|
width: 70%;
|
|
4922
5092
|
}
|
|
5093
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
5094
|
+
/* stylelint-disable */
|
|
5095
|
+
/* stylelint-enable */
|
|
5096
|
+
}
|
|
4923
5097
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
4924
5098
|
background-color: #1f2937;
|
|
4925
5099
|
border: 1px solid #4b5563;
|
|
@@ -4966,6 +5140,10 @@
|
|
|
4966
5140
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
4967
5141
|
margin-right: 12px;
|
|
4968
5142
|
}
|
|
5143
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
5144
|
+
/* stylelint-disable */
|
|
5145
|
+
/* stylelint-enable */
|
|
5146
|
+
}
|
|
4969
5147
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
4970
5148
|
left: 16px;
|
|
4971
5149
|
right: auto;
|
|
@@ -5115,6 +5293,10 @@
|
|
|
5115
5293
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
5116
5294
|
max-height: 600px;
|
|
5117
5295
|
}
|
|
5296
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
5297
|
+
/* stylelint-disable */
|
|
5298
|
+
/* stylelint-enable */
|
|
5299
|
+
}
|
|
5118
5300
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
5119
5301
|
margin-left: 12px;
|
|
5120
5302
|
margin-right: 0;
|
|
@@ -5135,6 +5317,11 @@
|
|
|
5135
5317
|
margin-left: 20px;
|
|
5136
5318
|
}
|
|
5137
5319
|
|
|
5320
|
+
/* stylelint-disable */
|
|
5321
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
5322
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
5323
|
+
/* stylelint-enable */
|
|
5324
|
+
}
|
|
5138
5325
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
5139
5326
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
5140
5327
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -5286,6 +5473,16 @@
|
|
|
5286
5473
|
margin-top: 4px;
|
|
5287
5474
|
padding: 0 12px;
|
|
5288
5475
|
}
|
|
5476
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5477
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5478
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5479
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
5480
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
5481
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
5482
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
5483
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
5484
|
+
/* stylelint-disable */
|
|
5485
|
+
}
|
|
5289
5486
|
.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,
|
|
5290
5487
|
.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,
|
|
5291
5488
|
.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,
|
|
@@ -5297,6 +5494,7 @@
|
|
|
5297
5494
|
font-size: 14px;
|
|
5298
5495
|
height: 36px !important;
|
|
5299
5496
|
padding: 9px 16px !important;
|
|
5497
|
+
/* stylelint-enable */
|
|
5300
5498
|
}
|
|
5301
5499
|
.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,
|
|
5302
5500
|
.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,
|
|
@@ -5421,6 +5619,10 @@
|
|
|
5421
5619
|
.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 {
|
|
5422
5620
|
padding-top: 7px;
|
|
5423
5621
|
}
|
|
5622
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
5623
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
5624
|
+
/* stylelint-disable */
|
|
5625
|
+
}
|
|
5424
5626
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
5425
5627
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
5426
5628
|
padding-left: 16px;
|
|
@@ -5433,6 +5635,7 @@
|
|
|
5433
5635
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
5434
5636
|
padding-left: 0;
|
|
5435
5637
|
padding-right: 5px;
|
|
5638
|
+
/* stylelint-enable */
|
|
5436
5639
|
}
|
|
5437
5640
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
5438
5641
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -5471,6 +5674,8 @@
|
|
|
5471
5674
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
5472
5675
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
5473
5676
|
padding-left: 16px;
|
|
5677
|
+
/* stylelint-disable */
|
|
5678
|
+
/* stylelint-enable */
|
|
5474
5679
|
}
|
|
5475
5680
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
5476
5681
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -5538,6 +5743,10 @@
|
|
|
5538
5743
|
padding-left: 0;
|
|
5539
5744
|
padding-right: 4px;
|
|
5540
5745
|
}
|
|
5746
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
5747
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
5748
|
+
/* stylelint-disable */
|
|
5749
|
+
}
|
|
5541
5750
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5542
5751
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5543
5752
|
max-height: 750px;
|
|
@@ -5574,4 +5783,6 @@
|
|
|
5574
5783
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5575
5784
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5576
5785
|
max-height: 179px;
|
|
5577
|
-
}
|
|
5786
|
+
}
|
|
5787
|
+
|
|
5788
|
+
/* stylelint-enable */
|