@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
package/styles/fluent-dark.css
CHANGED
|
@@ -561,7 +561,6 @@
|
|
|
561
561
|
}
|
|
562
562
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
563
563
|
font-size: 16px;
|
|
564
|
-
margin: 4px;
|
|
565
564
|
}
|
|
566
565
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu {
|
|
567
566
|
background-color: transparent;
|
|
@@ -989,6 +988,7 @@
|
|
|
989
988
|
}
|
|
990
989
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
991
990
|
font-size: 14px !important;
|
|
991
|
+
padding: 3px 4px 4px 4px !important;
|
|
992
992
|
}
|
|
993
993
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
994
994
|
margin: -10px 0 !important;
|
|
@@ -1028,6 +1028,11 @@
|
|
|
1028
1028
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1029
1029
|
visibility: hidden !important;
|
|
1030
1030
|
}
|
|
1031
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1032
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1033
|
+
text-overflow: ellipsis;
|
|
1034
|
+
white-space: nowrap;
|
|
1035
|
+
}
|
|
1031
1036
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1032
1037
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1033
1038
|
padding-left: 8px !important;
|
|
@@ -1495,7 +1500,6 @@
|
|
|
1495
1500
|
width: 18px;
|
|
1496
1501
|
}
|
|
1497
1502
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1498
|
-
margin-top: 3px;
|
|
1499
1503
|
transform: rotateX(180deg);
|
|
1500
1504
|
}
|
|
1501
1505
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1550,7 +1554,7 @@
|
|
|
1550
1554
|
width: auto;
|
|
1551
1555
|
}
|
|
1552
1556
|
.e-pivotview .e-collapse::before {
|
|
1553
|
-
font-size:
|
|
1557
|
+
font-size: 16px;
|
|
1554
1558
|
}
|
|
1555
1559
|
.e-pivotview .e-expand,
|
|
1556
1560
|
.e-pivotview .e-collapse {
|
|
@@ -1671,12 +1675,6 @@
|
|
|
1671
1675
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1672
1676
|
line-height: 1em !important;
|
|
1673
1677
|
}
|
|
1674
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1675
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1676
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1677
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1678
|
-
margin-top: 2px !important;
|
|
1679
|
-
}
|
|
1680
1678
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1681
1679
|
max-width: 155px;
|
|
1682
1680
|
}
|
|
@@ -1687,9 +1685,6 @@
|
|
|
1687
1685
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1688
1686
|
max-width: 200px;
|
|
1689
1687
|
}
|
|
1690
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1691
|
-
width: 100% !important;
|
|
1692
|
-
}
|
|
1693
1688
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1694
1689
|
width: 0 !important;
|
|
1695
1690
|
}
|
|
@@ -1849,7 +1844,6 @@
|
|
|
1849
1844
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1850
1845
|
font-size: 14px !important;
|
|
1851
1846
|
height: 20px;
|
|
1852
|
-
margin-top: 2px;
|
|
1853
1847
|
width: 20px;
|
|
1854
1848
|
}
|
|
1855
1849
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1945,8 +1939,7 @@
|
|
|
1945
1939
|
}
|
|
1946
1940
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1947
1941
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1948
|
-
margin: -
|
|
1949
|
-
padding-top: 28px;
|
|
1942
|
+
margin: -26px -10px !important;
|
|
1950
1943
|
}
|
|
1951
1944
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1952
1945
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2023,7 +2016,7 @@
|
|
|
2023
2016
|
}
|
|
2024
2017
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2025
2018
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2026
|
-
font-size:
|
|
2019
|
+
font-size: 20px;
|
|
2027
2020
|
}
|
|
2028
2021
|
|
|
2029
2022
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -2349,6 +2342,7 @@
|
|
|
2349
2342
|
|
|
2350
2343
|
.e-pivot-formatting-dialog {
|
|
2351
2344
|
max-height: 480px !important;
|
|
2345
|
+
min-width: 629px !important;
|
|
2352
2346
|
width: 629px !important;
|
|
2353
2347
|
}
|
|
2354
2348
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2363,7 +2357,6 @@
|
|
|
2363
2357
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2364
2358
|
padding-bottom: 14px;
|
|
2365
2359
|
padding-right: 18px;
|
|
2366
|
-
white-space: nowrap;
|
|
2367
2360
|
}
|
|
2368
2361
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2369
2362
|
vertical-align: bottom;
|
|
@@ -2456,9 +2449,6 @@
|
|
|
2456
2449
|
min-width: 320px !important;
|
|
2457
2450
|
width: 100% !important;
|
|
2458
2451
|
}
|
|
2459
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2460
|
-
width: 100% !important;
|
|
2461
|
-
}
|
|
2462
2452
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2463
2453
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2464
2454
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2503,6 +2493,7 @@
|
|
|
2503
2493
|
|
|
2504
2494
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2505
2495
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2496
|
+
min-width: 714px !important;
|
|
2506
2497
|
width: 714px !important;
|
|
2507
2498
|
}
|
|
2508
2499
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2904,7 +2895,7 @@
|
|
|
2904
2895
|
|
|
2905
2896
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2906
2897
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2907
|
-
max-height:
|
|
2898
|
+
max-height: 590px !important;
|
|
2908
2899
|
min-width: 401px !important;
|
|
2909
2900
|
}
|
|
2910
2901
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2952,7 +2943,7 @@
|
|
|
2952
2943
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2953
2944
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2954
2945
|
max-height: 750px !important;
|
|
2955
|
-
min-width: 580px
|
|
2946
|
+
min-width: 580px;
|
|
2956
2947
|
}
|
|
2957
2948
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2958
2949
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4395,7 +4386,7 @@
|
|
|
4395
4386
|
height: 261px;
|
|
4396
4387
|
}
|
|
4397
4388
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4398
|
-
|
|
4389
|
+
height: 540px;
|
|
4399
4390
|
}
|
|
4400
4391
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4401
4392
|
height: 369px;
|
|
@@ -4591,11 +4582,6 @@
|
|
|
4591
4582
|
background-color: transparent;
|
|
4592
4583
|
color: #c8c6c4;
|
|
4593
4584
|
}
|
|
4594
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4595
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4596
|
-
height: 210px;
|
|
4597
|
-
overflow: auto;
|
|
4598
|
-
}
|
|
4599
4585
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4600
4586
|
display: -ms-flexbox;
|
|
4601
4587
|
display: flex;
|
|
@@ -5509,8 +5495,8 @@
|
|
|
5509
5495
|
}
|
|
5510
5496
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5511
5497
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5498
|
+
height: 565px !important;
|
|
5512
5499
|
max-height: 600px !important;
|
|
5513
|
-
min-height: 588px !important;
|
|
5514
5500
|
}
|
|
5515
5501
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5516
5502
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5527,8 +5513,4 @@
|
|
|
5527
5513
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5528
5514
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5529
5515
|
height: 165px !important;
|
|
5530
|
-
}
|
|
5531
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5532
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5533
|
-
max-height: 184px;
|
|
5534
5516
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -563,7 +563,6 @@
|
|
|
563
563
|
}
|
|
564
564
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
565
565
|
font-size: 16px;
|
|
566
|
-
margin: 4px;
|
|
567
566
|
}
|
|
568
567
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu {
|
|
569
568
|
background-color: transparent;
|
|
@@ -991,6 +990,7 @@
|
|
|
991
990
|
}
|
|
992
991
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
993
992
|
font-size: 14px !important;
|
|
993
|
+
padding: 3px 4px 4px 4px !important;
|
|
994
994
|
}
|
|
995
995
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
996
996
|
margin: -10px 0 !important;
|
|
@@ -1030,6 +1030,11 @@
|
|
|
1030
1030
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1031
1031
|
visibility: hidden !important;
|
|
1032
1032
|
}
|
|
1033
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1034
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1035
|
+
text-overflow: ellipsis;
|
|
1036
|
+
white-space: nowrap;
|
|
1037
|
+
}
|
|
1033
1038
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1034
1039
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1035
1040
|
padding-left: 8px !important;
|
|
@@ -1497,7 +1502,6 @@
|
|
|
1497
1502
|
width: 18px;
|
|
1498
1503
|
}
|
|
1499
1504
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1500
|
-
margin-top: 3px;
|
|
1501
1505
|
transform: rotateX(180deg);
|
|
1502
1506
|
}
|
|
1503
1507
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1552,7 +1556,7 @@
|
|
|
1552
1556
|
width: auto;
|
|
1553
1557
|
}
|
|
1554
1558
|
.e-pivotview .e-collapse::before {
|
|
1555
|
-
font-size:
|
|
1559
|
+
font-size: 16px;
|
|
1556
1560
|
}
|
|
1557
1561
|
.e-pivotview .e-expand,
|
|
1558
1562
|
.e-pivotview .e-collapse {
|
|
@@ -1673,12 +1677,6 @@
|
|
|
1673
1677
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1674
1678
|
line-height: 1em !important;
|
|
1675
1679
|
}
|
|
1676
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1677
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1678
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1679
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1680
|
-
margin-top: 2px !important;
|
|
1681
|
-
}
|
|
1682
1680
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1683
1681
|
max-width: 155px;
|
|
1684
1682
|
}
|
|
@@ -1689,9 +1687,6 @@
|
|
|
1689
1687
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1690
1688
|
max-width: 200px;
|
|
1691
1689
|
}
|
|
1692
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1693
|
-
width: 100% !important;
|
|
1694
|
-
}
|
|
1695
1690
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1696
1691
|
width: 0 !important;
|
|
1697
1692
|
}
|
|
@@ -1851,7 +1846,6 @@
|
|
|
1851
1846
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1852
1847
|
font-size: 14px !important;
|
|
1853
1848
|
height: 20px;
|
|
1854
|
-
margin-top: 2px;
|
|
1855
1849
|
width: 20px;
|
|
1856
1850
|
}
|
|
1857
1851
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1947,8 +1941,7 @@
|
|
|
1947
1941
|
}
|
|
1948
1942
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1949
1943
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1950
|
-
margin: -
|
|
1951
|
-
padding-top: 28px;
|
|
1944
|
+
margin: -26px -10px !important;
|
|
1952
1945
|
}
|
|
1953
1946
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1954
1947
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2025,7 +2018,7 @@
|
|
|
2025
2018
|
}
|
|
2026
2019
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2027
2020
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2028
|
-
font-size:
|
|
2021
|
+
font-size: 20px;
|
|
2029
2022
|
}
|
|
2030
2023
|
|
|
2031
2024
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -2351,6 +2344,7 @@
|
|
|
2351
2344
|
|
|
2352
2345
|
.e-pivot-formatting-dialog {
|
|
2353
2346
|
max-height: 480px !important;
|
|
2347
|
+
min-width: 629px !important;
|
|
2354
2348
|
width: 629px !important;
|
|
2355
2349
|
}
|
|
2356
2350
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2365,7 +2359,6 @@
|
|
|
2365
2359
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2366
2360
|
padding-bottom: 14px;
|
|
2367
2361
|
padding-right: 18px;
|
|
2368
|
-
white-space: nowrap;
|
|
2369
2362
|
}
|
|
2370
2363
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2371
2364
|
vertical-align: bottom;
|
|
@@ -2458,9 +2451,6 @@
|
|
|
2458
2451
|
min-width: 320px !important;
|
|
2459
2452
|
width: 100% !important;
|
|
2460
2453
|
}
|
|
2461
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2462
|
-
width: 100% !important;
|
|
2463
|
-
}
|
|
2464
2454
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2465
2455
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2466
2456
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2505,6 +2495,7 @@
|
|
|
2505
2495
|
|
|
2506
2496
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2507
2497
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2498
|
+
min-width: 714px !important;
|
|
2508
2499
|
width: 714px !important;
|
|
2509
2500
|
}
|
|
2510
2501
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2906,7 +2897,7 @@
|
|
|
2906
2897
|
|
|
2907
2898
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2908
2899
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2909
|
-
max-height:
|
|
2900
|
+
max-height: 590px !important;
|
|
2910
2901
|
min-width: 401px !important;
|
|
2911
2902
|
}
|
|
2912
2903
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2954,7 +2945,7 @@
|
|
|
2954
2945
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2955
2946
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2956
2947
|
max-height: 750px !important;
|
|
2957
|
-
min-width: 580px
|
|
2948
|
+
min-width: 580px;
|
|
2958
2949
|
}
|
|
2959
2950
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2960
2951
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4397,7 +4388,7 @@
|
|
|
4397
4388
|
height: 261px;
|
|
4398
4389
|
}
|
|
4399
4390
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4400
|
-
|
|
4391
|
+
height: 540px;
|
|
4401
4392
|
}
|
|
4402
4393
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4403
4394
|
height: 369px;
|
|
@@ -4593,11 +4584,6 @@
|
|
|
4593
4584
|
background-color: transparent;
|
|
4594
4585
|
color: #3b3a39;
|
|
4595
4586
|
}
|
|
4596
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4597
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4598
|
-
height: 210px;
|
|
4599
|
-
overflow: auto;
|
|
4600
|
-
}
|
|
4601
4587
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4602
4588
|
display: -ms-flexbox;
|
|
4603
4589
|
display: flex;
|
|
@@ -5511,8 +5497,8 @@
|
|
|
5511
5497
|
}
|
|
5512
5498
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5513
5499
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5500
|
+
height: 565px !important;
|
|
5514
5501
|
max-height: 600px !important;
|
|
5515
|
-
min-height: 588px !important;
|
|
5516
5502
|
}
|
|
5517
5503
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5518
5504
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5529,8 +5515,4 @@
|
|
|
5529
5515
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5530
5516
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5531
5517
|
height: 165px !important;
|
|
5532
|
-
}
|
|
5533
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5534
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5535
|
-
max-height: 184px;
|
|
5536
5518
|
}
|
|
@@ -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;
|
|
@@ -1465,7 +1471,6 @@
|
|
|
1465
1471
|
width: 18px;
|
|
1466
1472
|
}
|
|
1467
1473
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1468
|
-
margin-top: 3px;
|
|
1469
1474
|
transform: rotateX(180deg);
|
|
1470
1475
|
}
|
|
1471
1476
|
.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: 16px !important;
|
|
1819
1815
|
height: 20px;
|
|
1820
|
-
margin-top: 0;
|
|
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: -23px -6px !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,
|
|
@@ -2296,6 +2291,7 @@
|
|
|
2296
2291
|
|
|
2297
2292
|
.e-pivot-formatting-dialog {
|
|
2298
2293
|
max-height: 480px !important;
|
|
2294
|
+
min-width: 640px !important;
|
|
2299
2295
|
width: 640px !important;
|
|
2300
2296
|
}
|
|
2301
2297
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2310,7 +2306,6 @@
|
|
|
2310
2306
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2311
2307
|
padding-bottom: 14px;
|
|
2312
2308
|
padding-right: 18px;
|
|
2313
|
-
white-space: nowrap;
|
|
2314
2309
|
}
|
|
2315
2310
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2316
2311
|
vertical-align: bottom;
|
|
@@ -2403,9 +2398,6 @@
|
|
|
2403
2398
|
min-width: 320px !important;
|
|
2404
2399
|
width: 100% !important;
|
|
2405
2400
|
}
|
|
2406
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2407
|
-
width: 100% !important;
|
|
2408
|
-
}
|
|
2409
2401
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2410
2402
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2411
2403
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2450,6 +2442,7 @@
|
|
|
2450
2442
|
|
|
2451
2443
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2452
2444
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2445
|
+
min-width: 707px !important;
|
|
2453
2446
|
width: 707px !important;
|
|
2454
2447
|
}
|
|
2455
2448
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2841,7 +2834,7 @@
|
|
|
2841
2834
|
|
|
2842
2835
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2843
2836
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2844
|
-
max-height:
|
|
2837
|
+
max-height: 590px !important;
|
|
2845
2838
|
min-width: 401px !important;
|
|
2846
2839
|
}
|
|
2847
2840
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2884,7 +2877,7 @@
|
|
|
2884
2877
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2885
2878
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2886
2879
|
max-height: 750px !important;
|
|
2887
|
-
min-width: 580px
|
|
2880
|
+
min-width: 580px;
|
|
2888
2881
|
}
|
|
2889
2882
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2890
2883
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4309,7 +4302,7 @@
|
|
|
4309
4302
|
height: 261px;
|
|
4310
4303
|
}
|
|
4311
4304
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4312
|
-
|
|
4305
|
+
height: 540px;
|
|
4313
4306
|
}
|
|
4314
4307
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4315
4308
|
height: 369px;
|
|
@@ -4501,11 +4494,6 @@
|
|
|
4501
4494
|
background-color: transparent;
|
|
4502
4495
|
color: #000;
|
|
4503
4496
|
}
|
|
4504
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4505
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4506
|
-
height: 210px;
|
|
4507
|
-
overflow: auto;
|
|
4508
|
-
}
|
|
4509
4497
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4510
4498
|
display: -ms-flexbox;
|
|
4511
4499
|
display: flex;
|
|
@@ -5411,8 +5399,8 @@
|
|
|
5411
5399
|
}
|
|
5412
5400
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5413
5401
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5402
|
+
height: 565px !important;
|
|
5414
5403
|
max-height: 600px !important;
|
|
5415
|
-
min-height: 572px !important;
|
|
5416
5404
|
}
|
|
5417
5405
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5418
5406
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5429,8 +5417,4 @@
|
|
|
5429
5417
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5430
5418
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5431
5419
|
height: 165px !important;
|
|
5432
|
-
}
|
|
5433
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5434
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5435
|
-
max-height: 164px;
|
|
5436
5420
|
}
|
package/styles/highcontrast.css
CHANGED
|
@@ -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;
|
|
@@ -1465,7 +1471,6 @@
|
|
|
1465
1471
|
width: 18px;
|
|
1466
1472
|
}
|
|
1467
1473
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1468
|
-
margin-top: 3px;
|
|
1469
1474
|
transform: rotateX(180deg);
|
|
1470
1475
|
}
|
|
1471
1476
|
.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: 0;
|
|
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: -23px -6px !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,
|
|
@@ -2296,6 +2291,7 @@
|
|
|
2296
2291
|
|
|
2297
2292
|
.e-pivot-formatting-dialog {
|
|
2298
2293
|
max-height: 480px !important;
|
|
2294
|
+
min-width: 640px !important;
|
|
2299
2295
|
width: 640px !important;
|
|
2300
2296
|
}
|
|
2301
2297
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2310,7 +2306,6 @@
|
|
|
2310
2306
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2311
2307
|
padding-bottom: 14px;
|
|
2312
2308
|
padding-right: 18px;
|
|
2313
|
-
white-space: nowrap;
|
|
2314
2309
|
}
|
|
2315
2310
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2316
2311
|
vertical-align: bottom;
|
|
@@ -2403,9 +2398,6 @@
|
|
|
2403
2398
|
min-width: 320px !important;
|
|
2404
2399
|
width: 100% !important;
|
|
2405
2400
|
}
|
|
2406
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2407
|
-
width: 100% !important;
|
|
2408
|
-
}
|
|
2409
2401
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2410
2402
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2411
2403
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2450,6 +2442,7 @@
|
|
|
2450
2442
|
|
|
2451
2443
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2452
2444
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2445
|
+
min-width: 707px !important;
|
|
2453
2446
|
width: 707px !important;
|
|
2454
2447
|
}
|
|
2455
2448
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2841,7 +2834,7 @@
|
|
|
2841
2834
|
|
|
2842
2835
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2843
2836
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2844
|
-
max-height:
|
|
2837
|
+
max-height: 590px !important;
|
|
2845
2838
|
min-width: 401px !important;
|
|
2846
2839
|
}
|
|
2847
2840
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2884,7 +2877,7 @@
|
|
|
2884
2877
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2885
2878
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2886
2879
|
max-height: 750px !important;
|
|
2887
|
-
min-width: 580px
|
|
2880
|
+
min-width: 580px;
|
|
2888
2881
|
}
|
|
2889
2882
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2890
2883
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4309,7 +4302,7 @@
|
|
|
4309
4302
|
height: 261px;
|
|
4310
4303
|
}
|
|
4311
4304
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4312
|
-
|
|
4305
|
+
height: 540px;
|
|
4313
4306
|
}
|
|
4314
4307
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4315
4308
|
height: 369px;
|
|
@@ -4501,11 +4494,6 @@
|
|
|
4501
4494
|
background-color: transparent;
|
|
4502
4495
|
color: #fff;
|
|
4503
4496
|
}
|
|
4504
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4505
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4506
|
-
height: 210px;
|
|
4507
|
-
overflow: auto;
|
|
4508
|
-
}
|
|
4509
4497
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4510
4498
|
display: -ms-flexbox;
|
|
4511
4499
|
display: flex;
|
|
@@ -5411,8 +5399,8 @@
|
|
|
5411
5399
|
}
|
|
5412
5400
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5413
5401
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5402
|
+
height: 565px !important;
|
|
5414
5403
|
max-height: 600px !important;
|
|
5415
|
-
min-height: 575px !important;
|
|
5416
5404
|
}
|
|
5417
5405
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5418
5406
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5429,8 +5417,4 @@
|
|
|
5429
5417
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5430
5418
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5431
5419
|
height: 165px !important;
|
|
5432
|
-
}
|
|
5433
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5434
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5435
|
-
max-height: 164px;
|
|
5436
5420
|
}
|