@syncfusion/ej2-angular-pivotview 20.2.36-ngcc → 20.2.36
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 +13 -29
- package/styles/bootstrap.css +13 -29
- package/styles/bootstrap4.css +13 -29
- package/styles/bootstrap5-dark.css +17 -67
- package/styles/bootstrap5.css +17 -67
- package/styles/fabric-dark.css +13 -29
- package/styles/fabric.css +13 -29
- package/styles/fluent-dark.css +15 -33
- package/styles/fluent.css +15 -33
- package/styles/highcontrast-light.css +13 -29
- package/styles/highcontrast.css +13 -29
- package/styles/material-dark.css +13 -29
- package/styles/material.css +13 -29
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +189 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +185 -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 +186 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +186 -0
- package/styles/pivotfieldlist/_layout.scss +1855 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +186 -0
- package/styles/pivotfieldlist/_material-definition.scss +186 -0
- package/styles/pivotfieldlist/_material3-definition.scss +188 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +189 -0
- package/styles/pivotfieldlist/_theme.scss +1855 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +6 -17
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +6 -17
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +6 -17
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +6 -17
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +6 -17
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +6 -17
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +6 -17
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +6 -17
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +6 -17
- 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 +6 -17
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +6 -17
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +8 -19
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +8 -19
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +130 -0
- package/styles/pivotview/_bootstrap-definition.scss +127 -0
- package/styles/pivotview/_bootstrap4-definition.scss +127 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +130 -0
- package/styles/pivotview/_fabric-dark-definition.scss +129 -0
- package/styles/pivotview/_fabric-definition.scss +126 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +130 -0
- package/styles/pivotview/_fusionnew-definition.scss +130 -0
- package/styles/pivotview/_highcontrast-definition.scss +125 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +126 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +131 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +130 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +129 -0
- package/styles/pivotview/_theme.scss +1556 -0
- package/styles/pivotview/bootstrap-dark.css +7 -12
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +7 -12
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +7 -12
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +11 -50
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +11 -50
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +7 -12
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +7 -12
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +9 -16
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +9 -16
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +7 -12
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +7 -12
- 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 +7 -12
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +7 -12
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +11 -18
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +11 -18
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +19 -37
- package/styles/tailwind.css +19 -37
- 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 -665
- package/dist/ej2-angular-pivotview.umd.js +0 -662
- 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
|
@@ -966,6 +966,7 @@
|
|
|
966
966
|
}
|
|
967
967
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
968
968
|
font-size: 12px !important;
|
|
969
|
+
padding: 3px 4px 4px 4px !important;
|
|
969
970
|
}
|
|
970
971
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
971
972
|
margin: -10px 0 !important;
|
|
@@ -1005,6 +1006,11 @@
|
|
|
1005
1006
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1006
1007
|
visibility: hidden !important;
|
|
1007
1008
|
}
|
|
1009
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1010
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1011
|
+
text-overflow: ellipsis;
|
|
1012
|
+
white-space: nowrap;
|
|
1013
|
+
}
|
|
1008
1014
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1009
1015
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1010
1016
|
padding-left: 8px !important;
|
|
@@ -1467,7 +1473,6 @@
|
|
|
1467
1473
|
width: 18px;
|
|
1468
1474
|
}
|
|
1469
1475
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1470
|
-
margin-top: 3px;
|
|
1471
1476
|
transform: rotateX(180deg);
|
|
1472
1477
|
}
|
|
1473
1478
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1640,12 +1645,6 @@
|
|
|
1640
1645
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1641
1646
|
line-height: 1em !important;
|
|
1642
1647
|
}
|
|
1643
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1644
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1645
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1646
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1647
|
-
margin-top: 2px !important;
|
|
1648
|
-
}
|
|
1649
1648
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1650
1649
|
max-width: 155px;
|
|
1651
1650
|
}
|
|
@@ -1656,9 +1655,6 @@
|
|
|
1656
1655
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1657
1656
|
max-width: 200px;
|
|
1658
1657
|
}
|
|
1659
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1660
|
-
width: 100% !important;
|
|
1661
|
-
}
|
|
1662
1658
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1663
1659
|
width: 0 !important;
|
|
1664
1660
|
}
|
|
@@ -1818,7 +1814,6 @@
|
|
|
1818
1814
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1819
1815
|
font-size: 14px !important;
|
|
1820
1816
|
height: 20px;
|
|
1821
|
-
margin-top: 0;
|
|
1822
1817
|
width: 20px;
|
|
1823
1818
|
}
|
|
1824
1819
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1902,7 +1897,7 @@
|
|
|
1902
1897
|
}
|
|
1903
1898
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1904
1899
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1905
|
-
margin: -
|
|
1900
|
+
margin: -30px -18px !important;
|
|
1906
1901
|
}
|
|
1907
1902
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1908
1903
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2300,6 +2295,7 @@
|
|
|
2300
2295
|
|
|
2301
2296
|
.e-pivot-formatting-dialog {
|
|
2302
2297
|
max-height: 480px !important;
|
|
2298
|
+
min-width: 625px !important;
|
|
2303
2299
|
width: 625px !important;
|
|
2304
2300
|
}
|
|
2305
2301
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2314,7 +2310,6 @@
|
|
|
2314
2310
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2315
2311
|
padding-bottom: 14px;
|
|
2316
2312
|
padding-right: 18px;
|
|
2317
|
-
white-space: nowrap;
|
|
2318
2313
|
}
|
|
2319
2314
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2320
2315
|
vertical-align: bottom;
|
|
@@ -2407,9 +2402,6 @@
|
|
|
2407
2402
|
min-width: 320px !important;
|
|
2408
2403
|
width: 100% !important;
|
|
2409
2404
|
}
|
|
2410
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2411
|
-
width: 100% !important;
|
|
2412
|
-
}
|
|
2413
2405
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2414
2406
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2415
2407
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2454,6 +2446,7 @@
|
|
|
2454
2446
|
|
|
2455
2447
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2456
2448
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2449
|
+
min-width: 670px !important;
|
|
2457
2450
|
width: 670px !important;
|
|
2458
2451
|
}
|
|
2459
2452
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2845,7 +2838,7 @@
|
|
|
2845
2838
|
|
|
2846
2839
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2847
2840
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2848
|
-
max-height:
|
|
2841
|
+
max-height: 590px !important;
|
|
2849
2842
|
min-width: 401px !important;
|
|
2850
2843
|
}
|
|
2851
2844
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2888,7 +2881,7 @@
|
|
|
2888
2881
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2889
2882
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2890
2883
|
max-height: 750px !important;
|
|
2891
|
-
min-width: 580px
|
|
2884
|
+
min-width: 580px;
|
|
2892
2885
|
}
|
|
2893
2886
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2894
2887
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4313,7 +4306,7 @@
|
|
|
4313
4306
|
height: 261px;
|
|
4314
4307
|
}
|
|
4315
4308
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4316
|
-
|
|
4309
|
+
height: 540px;
|
|
4317
4310
|
}
|
|
4318
4311
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4319
4312
|
height: 369px;
|
|
@@ -4505,11 +4498,6 @@
|
|
|
4505
4498
|
background-color: transparent;
|
|
4506
4499
|
color: #fff;
|
|
4507
4500
|
}
|
|
4508
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4509
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4510
|
-
height: 210px;
|
|
4511
|
-
overflow: auto;
|
|
4512
|
-
}
|
|
4513
4501
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4514
4502
|
display: -ms-flexbox;
|
|
4515
4503
|
display: flex;
|
|
@@ -5415,8 +5403,8 @@
|
|
|
5415
5403
|
}
|
|
5416
5404
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5417
5405
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5406
|
+
height: 565px !important;
|
|
5418
5407
|
max-height: 600px !important;
|
|
5419
|
-
min-height: 580px !important;
|
|
5420
5408
|
}
|
|
5421
5409
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5422
5410
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5433,8 +5421,4 @@
|
|
|
5433
5421
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5434
5422
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5435
5423
|
height: 165px !important;
|
|
5436
|
-
}
|
|
5437
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5438
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5439
|
-
max-height: 190px;
|
|
5440
5424
|
}
|
package/styles/bootstrap.css
CHANGED
|
@@ -965,6 +965,7 @@
|
|
|
965
965
|
}
|
|
966
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
967
967
|
font-size: 12px !important;
|
|
968
|
+
padding: 3px 4px 4px 4px !important;
|
|
968
969
|
}
|
|
969
970
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
970
971
|
margin: -10px 0 !important;
|
|
@@ -1004,6 +1005,11 @@
|
|
|
1004
1005
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1005
1006
|
visibility: hidden !important;
|
|
1006
1007
|
}
|
|
1008
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1009
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1010
|
+
text-overflow: ellipsis;
|
|
1011
|
+
white-space: nowrap;
|
|
1012
|
+
}
|
|
1007
1013
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1008
1014
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1009
1015
|
padding-left: 8px !important;
|
|
@@ -1466,7 +1472,6 @@
|
|
|
1466
1472
|
width: 18px;
|
|
1467
1473
|
}
|
|
1468
1474
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1469
|
-
margin-top: 3px;
|
|
1470
1475
|
transform: rotateX(180deg);
|
|
1471
1476
|
}
|
|
1472
1477
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1639,12 +1644,6 @@
|
|
|
1639
1644
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1640
1645
|
line-height: 1em !important;
|
|
1641
1646
|
}
|
|
1642
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1643
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1644
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1645
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1646
|
-
margin-top: 2px !important;
|
|
1647
|
-
}
|
|
1648
1647
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1649
1648
|
max-width: 155px;
|
|
1650
1649
|
}
|
|
@@ -1655,9 +1654,6 @@
|
|
|
1655
1654
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1656
1655
|
max-width: 200px;
|
|
1657
1656
|
}
|
|
1658
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1659
|
-
width: 100% !important;
|
|
1660
|
-
}
|
|
1661
1657
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1662
1658
|
width: 0 !important;
|
|
1663
1659
|
}
|
|
@@ -1817,7 +1813,6 @@
|
|
|
1817
1813
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1818
1814
|
font-size: 14px !important;
|
|
1819
1815
|
height: 20px;
|
|
1820
|
-
margin-top: 1px;
|
|
1821
1816
|
width: 20px;
|
|
1822
1817
|
}
|
|
1823
1818
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1901,7 +1896,7 @@
|
|
|
1901
1896
|
}
|
|
1902
1897
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1903
1898
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1904
|
-
margin: -
|
|
1899
|
+
margin: -30px -18px !important;
|
|
1905
1900
|
}
|
|
1906
1901
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1907
1902
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2297,6 +2292,7 @@
|
|
|
2297
2292
|
|
|
2298
2293
|
.e-pivot-formatting-dialog {
|
|
2299
2294
|
max-height: 480px !important;
|
|
2295
|
+
min-width: 625px !important;
|
|
2300
2296
|
width: 625px !important;
|
|
2301
2297
|
}
|
|
2302
2298
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2311,7 +2307,6 @@
|
|
|
2311
2307
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2312
2308
|
padding-bottom: 14px;
|
|
2313
2309
|
padding-right: 18px;
|
|
2314
|
-
white-space: nowrap;
|
|
2315
2310
|
}
|
|
2316
2311
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2317
2312
|
vertical-align: bottom;
|
|
@@ -2404,9 +2399,6 @@
|
|
|
2404
2399
|
min-width: 320px !important;
|
|
2405
2400
|
width: 100% !important;
|
|
2406
2401
|
}
|
|
2407
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2408
|
-
width: 100% !important;
|
|
2409
|
-
}
|
|
2410
2402
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2411
2403
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2412
2404
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2451,6 +2443,7 @@
|
|
|
2451
2443
|
|
|
2452
2444
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2453
2445
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2446
|
+
min-width: 670px !important;
|
|
2454
2447
|
width: 670px !important;
|
|
2455
2448
|
}
|
|
2456
2449
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2842,7 +2835,7 @@
|
|
|
2842
2835
|
|
|
2843
2836
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2844
2837
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2845
|
-
max-height:
|
|
2838
|
+
max-height: 590px !important;
|
|
2846
2839
|
min-width: 401px !important;
|
|
2847
2840
|
}
|
|
2848
2841
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2885,7 +2878,7 @@
|
|
|
2885
2878
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2886
2879
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2887
2880
|
max-height: 750px !important;
|
|
2888
|
-
min-width: 580px
|
|
2881
|
+
min-width: 580px;
|
|
2889
2882
|
}
|
|
2890
2883
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2891
2884
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4310,7 +4303,7 @@
|
|
|
4310
4303
|
height: 261px;
|
|
4311
4304
|
}
|
|
4312
4305
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4313
|
-
|
|
4306
|
+
height: 540px;
|
|
4314
4307
|
}
|
|
4315
4308
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4316
4309
|
height: 369px;
|
|
@@ -4502,11 +4495,6 @@
|
|
|
4502
4495
|
background-color: transparent;
|
|
4503
4496
|
color: #333;
|
|
4504
4497
|
}
|
|
4505
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4506
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4507
|
-
height: 210px;
|
|
4508
|
-
overflow: auto;
|
|
4509
|
-
}
|
|
4510
4498
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4511
4499
|
display: -ms-flexbox;
|
|
4512
4500
|
display: flex;
|
|
@@ -5412,8 +5400,8 @@
|
|
|
5412
5400
|
}
|
|
5413
5401
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5414
5402
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5403
|
+
height: 565px !important;
|
|
5415
5404
|
max-height: 600px !important;
|
|
5416
|
-
min-height: 582px !important;
|
|
5417
5405
|
}
|
|
5418
5406
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5419
5407
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5430,8 +5418,4 @@
|
|
|
5430
5418
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5431
5419
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5432
5420
|
height: 165px !important;
|
|
5433
|
-
}
|
|
5434
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5435
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5436
|
-
max-height: 176px;
|
|
5437
5421
|
}
|
package/styles/bootstrap4.css
CHANGED
|
@@ -1022,6 +1022,7 @@
|
|
|
1022
1022
|
}
|
|
1023
1023
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1024
1024
|
font-size: 12px !important;
|
|
1025
|
+
padding: 3px 0 4px 0 !important;
|
|
1025
1026
|
}
|
|
1026
1027
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
1027
1028
|
margin: -10px 0 !important;
|
|
@@ -1064,6 +1065,11 @@
|
|
|
1064
1065
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1065
1066
|
visibility: hidden !important;
|
|
1066
1067
|
}
|
|
1068
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1069
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1070
|
+
text-overflow: ellipsis;
|
|
1071
|
+
white-space: nowrap;
|
|
1072
|
+
}
|
|
1067
1073
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1068
1074
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1069
1075
|
padding-left: 8px !important;
|
|
@@ -1549,7 +1555,6 @@
|
|
|
1549
1555
|
width: 18px;
|
|
1550
1556
|
}
|
|
1551
1557
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1552
|
-
margin-top: 3px;
|
|
1553
1558
|
transform: rotateX(180deg);
|
|
1554
1559
|
}
|
|
1555
1560
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1722,12 +1727,6 @@
|
|
|
1722
1727
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1723
1728
|
line-height: 1em !important;
|
|
1724
1729
|
}
|
|
1725
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1726
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1727
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1728
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1729
|
-
margin-top: 2px !important;
|
|
1730
|
-
}
|
|
1731
1730
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1732
1731
|
max-width: 155px;
|
|
1733
1732
|
padding: 3px 10px;
|
|
@@ -1763,9 +1762,6 @@
|
|
|
1763
1762
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1764
1763
|
margin-top: 2px;
|
|
1765
1764
|
}
|
|
1766
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1767
|
-
width: 100% !important;
|
|
1768
|
-
}
|
|
1769
1765
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1770
1766
|
width: 0 !important;
|
|
1771
1767
|
}
|
|
@@ -1936,7 +1932,6 @@
|
|
|
1936
1932
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1937
1933
|
font-size: 12px !important;
|
|
1938
1934
|
height: 20px;
|
|
1939
|
-
margin-top: 2px;
|
|
1940
1935
|
width: 20px;
|
|
1941
1936
|
padding-left: 12px;
|
|
1942
1937
|
}
|
|
@@ -2048,7 +2043,7 @@
|
|
|
2048
2043
|
}
|
|
2049
2044
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
2050
2045
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
2051
|
-
margin: -
|
|
2046
|
+
margin: -28px -18px !important;
|
|
2052
2047
|
font-size: 12px !important;
|
|
2053
2048
|
}
|
|
2054
2049
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
@@ -2445,6 +2440,7 @@
|
|
|
2445
2440
|
|
|
2446
2441
|
.e-pivot-formatting-dialog {
|
|
2447
2442
|
max-height: 480px !important;
|
|
2443
|
+
min-width: 625px !important;
|
|
2448
2444
|
width: 625px !important;
|
|
2449
2445
|
}
|
|
2450
2446
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2462,7 +2458,6 @@
|
|
|
2462
2458
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2463
2459
|
padding-bottom: 14px;
|
|
2464
2460
|
padding-right: 18px;
|
|
2465
|
-
white-space: nowrap;
|
|
2466
2461
|
}
|
|
2467
2462
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2468
2463
|
vertical-align: bottom;
|
|
@@ -2563,9 +2558,6 @@
|
|
|
2563
2558
|
min-width: 320px !important;
|
|
2564
2559
|
width: 100% !important;
|
|
2565
2560
|
}
|
|
2566
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2567
|
-
width: 100% !important;
|
|
2568
|
-
}
|
|
2569
2561
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2570
2562
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2571
2563
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2610,6 +2602,7 @@
|
|
|
2610
2602
|
|
|
2611
2603
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2612
2604
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2605
|
+
min-width: 670px !important;
|
|
2613
2606
|
width: 670px !important;
|
|
2614
2607
|
}
|
|
2615
2608
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -3005,7 +2998,7 @@
|
|
|
3005
2998
|
|
|
3006
2999
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
3007
3000
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
3008
|
-
max-height:
|
|
3001
|
+
max-height: 590px !important;
|
|
3009
3002
|
min-width: 401px !important;
|
|
3010
3003
|
}
|
|
3011
3004
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -3048,7 +3041,7 @@
|
|
|
3048
3041
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
3049
3042
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
3050
3043
|
max-height: 750px !important;
|
|
3051
|
-
min-width: 580px
|
|
3044
|
+
min-width: 580px;
|
|
3052
3045
|
}
|
|
3053
3046
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
3054
3047
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4526,7 +4519,7 @@
|
|
|
4526
4519
|
height: 261px;
|
|
4527
4520
|
}
|
|
4528
4521
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4529
|
-
|
|
4522
|
+
height: 540px;
|
|
4530
4523
|
}
|
|
4531
4524
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4532
4525
|
height: 369px;
|
|
@@ -4719,11 +4712,6 @@
|
|
|
4719
4712
|
background-color: transparent;
|
|
4720
4713
|
color: #333;
|
|
4721
4714
|
}
|
|
4722
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4723
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4724
|
-
height: 210px;
|
|
4725
|
-
overflow: auto;
|
|
4726
|
-
}
|
|
4727
4715
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4728
4716
|
display: -ms-flexbox;
|
|
4729
4717
|
display: flex;
|
|
@@ -5654,8 +5642,8 @@
|
|
|
5654
5642
|
}
|
|
5655
5643
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5656
5644
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5645
|
+
height: 566px !important;
|
|
5657
5646
|
max-height: 600px !important;
|
|
5658
|
-
min-height: 578px !important;
|
|
5659
5647
|
}
|
|
5660
5648
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5661
5649
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5672,8 +5660,4 @@
|
|
|
5672
5660
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5673
5661
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5674
5662
|
height: 161px !important;
|
|
5675
|
-
}
|
|
5676
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5677
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5678
|
-
max-height: 177px;
|
|
5679
5663
|
}
|
|
@@ -977,7 +977,7 @@
|
|
|
977
977
|
}
|
|
978
978
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
979
979
|
font-size: 12px !important;
|
|
980
|
-
padding
|
|
980
|
+
padding: 6px 0 4px 0 !important;
|
|
981
981
|
}
|
|
982
982
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
983
983
|
margin: -10px 0 !important;
|
|
@@ -1020,6 +1020,11 @@
|
|
|
1020
1020
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1021
1021
|
visibility: hidden !important;
|
|
1022
1022
|
}
|
|
1023
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1024
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1025
|
+
text-overflow: ellipsis;
|
|
1026
|
+
white-space: nowrap;
|
|
1027
|
+
}
|
|
1023
1028
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1024
1029
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1025
1030
|
padding-left: 8px !important;
|
|
@@ -1184,38 +1189,6 @@
|
|
|
1184
1189
|
font-size: 14px;
|
|
1185
1190
|
font-weight: normal;
|
|
1186
1191
|
}
|
|
1187
|
-
.e-pivotview .e-group-values .e-pivot-button .e-sort,
|
|
1188
|
-
.e-pivotview .e-group-values .e-pivot-button .e-dropdown-icon,
|
|
1189
|
-
.e-pivotview .e-group-values .e-pivot-button .e-pv-filter,
|
|
1190
|
-
.e-pivotview .e-group-values .e-pivot-button .e-pv-filtered,
|
|
1191
|
-
.e-pivotview .e-group-values .e-pivot-button .e-remove,
|
|
1192
|
-
.e-pivotview .e-group-values .e-pivot-button .e-edit,
|
|
1193
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-sort,
|
|
1194
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-dropdown-icon,
|
|
1195
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filter,
|
|
1196
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filtered,
|
|
1197
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-remove,
|
|
1198
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-edit,
|
|
1199
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-sort,
|
|
1200
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-dropdown-icon,
|
|
1201
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filter,
|
|
1202
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filtered,
|
|
1203
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-remove,
|
|
1204
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-edit,
|
|
1205
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-sort,
|
|
1206
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-dropdown-icon,
|
|
1207
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filter,
|
|
1208
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered,
|
|
1209
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-remove,
|
|
1210
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-edit,
|
|
1211
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-sort,
|
|
1212
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-dropdown-icon,
|
|
1213
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filter,
|
|
1214
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filtered,
|
|
1215
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-remove,
|
|
1216
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-edit {
|
|
1217
|
-
margin-top: 1px;
|
|
1218
|
-
}
|
|
1219
1192
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
1220
1193
|
.e-pivotview .e-group-rows .e-pvt-btn-div {
|
|
1221
1194
|
display: -ms-inline-flexbox;
|
|
@@ -1253,7 +1226,7 @@
|
|
|
1253
1226
|
font-weight: normal;
|
|
1254
1227
|
height: 24px;
|
|
1255
1228
|
line-height: 0.9em;
|
|
1256
|
-
padding:
|
|
1229
|
+
padding: 5px 8px;
|
|
1257
1230
|
text-transform: none;
|
|
1258
1231
|
vertical-align: bottom;
|
|
1259
1232
|
z-index: 1;
|
|
@@ -1442,7 +1415,7 @@
|
|
|
1442
1415
|
pointer-events: none;
|
|
1443
1416
|
}
|
|
1444
1417
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1445
|
-
padding:
|
|
1418
|
+
padding: 5px 8px;
|
|
1446
1419
|
width: 180px;
|
|
1447
1420
|
}
|
|
1448
1421
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1519,7 +1492,6 @@
|
|
|
1519
1492
|
width: 18px;
|
|
1520
1493
|
}
|
|
1521
1494
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1522
|
-
margin-top: 3px;
|
|
1523
1495
|
transform: rotateX(180deg);
|
|
1524
1496
|
}
|
|
1525
1497
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1574,7 +1546,7 @@
|
|
|
1574
1546
|
width: auto;
|
|
1575
1547
|
}
|
|
1576
1548
|
.e-pivotview .e-collapse::before {
|
|
1577
|
-
font-size:
|
|
1549
|
+
font-size: 18px;
|
|
1578
1550
|
}
|
|
1579
1551
|
.e-pivotview .e-expand,
|
|
1580
1552
|
.e-pivotview .e-collapse {
|
|
@@ -1695,12 +1667,6 @@
|
|
|
1695
1667
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1696
1668
|
line-height: 1em !important;
|
|
1697
1669
|
}
|
|
1698
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1699
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1700
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1701
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1702
|
-
margin-top: 2px !important;
|
|
1703
|
-
}
|
|
1704
1670
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1705
1671
|
max-width: 155px;
|
|
1706
1672
|
}
|
|
@@ -1711,9 +1677,6 @@
|
|
|
1711
1677
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1712
1678
|
max-width: 200px;
|
|
1713
1679
|
}
|
|
1714
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1715
|
-
width: 100% !important;
|
|
1716
|
-
}
|
|
1717
1680
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1718
1681
|
width: 0 !important;
|
|
1719
1682
|
}
|
|
@@ -1873,7 +1836,6 @@
|
|
|
1873
1836
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1874
1837
|
font-size: 14px !important;
|
|
1875
1838
|
height: 20px;
|
|
1876
|
-
margin-top: 2px;
|
|
1877
1839
|
width: 20px;
|
|
1878
1840
|
}
|
|
1879
1841
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1969,9 +1931,8 @@
|
|
|
1969
1931
|
}
|
|
1970
1932
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1971
1933
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1972
|
-
margin: -
|
|
1934
|
+
margin: -23px -15px !important;
|
|
1973
1935
|
font-size: 12px !important;
|
|
1974
|
-
padding-top: 28px;
|
|
1975
1936
|
}
|
|
1976
1937
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1977
1938
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2048,7 +2009,7 @@
|
|
|
2048
2009
|
}
|
|
2049
2010
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2050
2011
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2051
|
-
font-size:
|
|
2012
|
+
font-size: 22px;
|
|
2052
2013
|
}
|
|
2053
2014
|
|
|
2054
2015
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -2374,6 +2335,7 @@
|
|
|
2374
2335
|
|
|
2375
2336
|
.e-pivot-formatting-dialog {
|
|
2376
2337
|
max-height: 480px !important;
|
|
2338
|
+
min-width: 628px !important;
|
|
2377
2339
|
width: 628px !important;
|
|
2378
2340
|
}
|
|
2379
2341
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2388,7 +2350,6 @@
|
|
|
2388
2350
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2389
2351
|
padding-bottom: 14px;
|
|
2390
2352
|
padding-right: 18px;
|
|
2391
|
-
white-space: nowrap;
|
|
2392
2353
|
padding-right: 8px;
|
|
2393
2354
|
}
|
|
2394
2355
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
@@ -2487,9 +2448,6 @@
|
|
|
2487
2448
|
min-width: 320px !important;
|
|
2488
2449
|
width: 100% !important;
|
|
2489
2450
|
}
|
|
2490
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2491
|
-
width: 100% !important;
|
|
2492
|
-
}
|
|
2493
2451
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2494
2452
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2495
2453
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2534,6 +2492,7 @@
|
|
|
2534
2492
|
|
|
2535
2493
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2536
2494
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2495
|
+
min-width: 680px !important;
|
|
2537
2496
|
width: 680px !important;
|
|
2538
2497
|
}
|
|
2539
2498
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2930,7 +2889,7 @@
|
|
|
2930
2889
|
|
|
2931
2890
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2932
2891
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2933
|
-
max-height:
|
|
2892
|
+
max-height: 590px !important;
|
|
2934
2893
|
min-width: 401px !important;
|
|
2935
2894
|
}
|
|
2936
2895
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2978,7 +2937,7 @@
|
|
|
2978
2937
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2979
2938
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2980
2939
|
max-height: 750px !important;
|
|
2981
|
-
min-width: 580px
|
|
2940
|
+
min-width: 580px;
|
|
2982
2941
|
}
|
|
2983
2942
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2984
2943
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4426,7 +4385,7 @@
|
|
|
4426
4385
|
height: 261px;
|
|
4427
4386
|
}
|
|
4428
4387
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4429
|
-
|
|
4388
|
+
height: 540px;
|
|
4430
4389
|
}
|
|
4431
4390
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4432
4391
|
height: 369px;
|
|
@@ -4618,11 +4577,6 @@
|
|
|
4618
4577
|
background-color: transparent;
|
|
4619
4578
|
color: #ced4da;
|
|
4620
4579
|
}
|
|
4621
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4622
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4623
|
-
height: 210px;
|
|
4624
|
-
overflow: auto;
|
|
4625
|
-
}
|
|
4626
4580
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4627
4581
|
display: -ms-flexbox;
|
|
4628
4582
|
display: flex;
|
|
@@ -5535,8 +5489,8 @@
|
|
|
5535
5489
|
}
|
|
5536
5490
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5537
5491
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5492
|
+
height: 565px !important;
|
|
5538
5493
|
max-height: 600px !important;
|
|
5539
|
-
min-height: 580px !important;
|
|
5540
5494
|
}
|
|
5541
5495
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5542
5496
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5553,8 +5507,4 @@
|
|
|
5553
5507
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5554
5508
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5555
5509
|
height: 165px !important;
|
|
5556
|
-
}
|
|
5557
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5558
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5559
|
-
max-height: 187px;
|
|
5560
5510
|
}
|