@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
|
@@ -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 {
|
|
@@ -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 {
|
|
@@ -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,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-light-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/highcontrast-light-definition.scss';
|
|
3
|
+
@import 'highcontrast-light-definition.scss';
|
|
4
|
+
@import 'icons/highcontrast-light.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -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,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/highcontrast-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/highcontrast-definition.scss';
|
|
3
|
+
@import 'highcontrast-definition.scss';
|
|
4
|
+
@import 'icons/highcontrast.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
@include export-module('pivotview-bootstrap-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e207';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e95d';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e990';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\ea79';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\ebb0';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
color: $pivotgrid-active-color;
|
|
27
|
+
content: '\ebb2';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-remove::before {
|
|
31
|
+
content: '\ea7b';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-selected-option-icon::before {
|
|
35
|
+
content: '\ea84';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-clear-filter-icon::before {
|
|
39
|
+
content: '\ebab';
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-dropdown-icon::before {
|
|
43
|
+
content: '\e95d';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-export::before {
|
|
47
|
+
content: '\e702';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-new-report::before {
|
|
51
|
+
content: '\e709';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-save-report::before {
|
|
55
|
+
content: '\e701';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-saveas-report::before {
|
|
59
|
+
content: '\e703';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-rename-report::before {
|
|
63
|
+
content: '\e704';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-remove-report::before {
|
|
67
|
+
content: '\e70c';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-sub-total::before {
|
|
71
|
+
content: '\e710';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-grand-total::before {
|
|
75
|
+
content: '\e708';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-toolbar-fieldlist::before {
|
|
79
|
+
content: '\e434';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-toolbar-grid::before {
|
|
83
|
+
content: '\e70f';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-toolbar-chart::before {
|
|
87
|
+
content: '\e70d';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-toolbar-formatting::before {
|
|
91
|
+
content: '\e725';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-pivot-button .e-edit::before {
|
|
95
|
+
content: '\e338';
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-sort-ascend-icon::before {
|
|
99
|
+
content: '\e734';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-sort-descend-icon::before {
|
|
103
|
+
content: '\e733';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-pivotview-pdf-export::before {
|
|
108
|
+
content: '\e707';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-pivotview-excel-export::before {
|
|
112
|
+
content: '\e70b';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-pivotview-csv-export::before {
|
|
116
|
+
content: '\e712';
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-pivotview-png-export::before {
|
|
120
|
+
content: '\e715';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-pivotview-jpeg-export::before {
|
|
124
|
+
content: '\e713';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-pivotview-svg-export::before {
|
|
128
|
+
content: '\e716';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-mdx::before {
|
|
132
|
+
content: '\e724';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-pivotview-select-icon::before {
|
|
136
|
+
content: '\e614';
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-pivotview-grid::before {
|
|
140
|
+
content: '\e70f';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-pivotview-export::before {
|
|
144
|
+
content: '\e702';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-pivotview-expand::before {
|
|
148
|
+
content: '\e558';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-pivotview-collapse::before {
|
|
152
|
+
content: '\e557';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-pivot-format-menu::before {
|
|
156
|
+
content: '\e728';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-pivot-number-format-menu::before {
|
|
160
|
+
content: '\e711';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-pivot-conditional-format-menu::before {
|
|
164
|
+
content: '\e725';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-pivot-format-toolbar::before {
|
|
168
|
+
content: '\e711';
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-pivotview-group::before {
|
|
172
|
+
content: '\e740';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-pivotview-ungroup::before {
|
|
176
|
+
content: '\e741';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-level-options {
|
|
180
|
+
.e-selected-level-icon::before {
|
|
181
|
+
content: '\e614';
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
@@ -0,0 +1,184 @@
|
|
|
1
|
+
@include export-module('pivotview-bootstrap-icons') {
|
|
2
|
+
.e-pivotview {
|
|
3
|
+
.e-expand::before {
|
|
4
|
+
content: '\e207';
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.e-collapse::before {
|
|
8
|
+
content: '\e95d';
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
&.e-rtl {
|
|
12
|
+
.e-expand::before {
|
|
13
|
+
content: '\e990';
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.e-sort::before {
|
|
18
|
+
content: '\ea79';
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.e-pv-filter::before {
|
|
22
|
+
content: '\ebb0';
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.e-pv-filtered::before {
|
|
26
|
+
color: $pivotgrid-active-color;
|
|
27
|
+
content: '\ebb2';
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.e-remove::before {
|
|
31
|
+
content: '\ea7b';
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.e-selected-option-icon::before {
|
|
35
|
+
content: '\ea84';
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.e-clear-filter-icon::before {
|
|
39
|
+
content: '\ebab';
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.e-dropdown-icon::before {
|
|
43
|
+
content: '\e95d';
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.e-export::before {
|
|
47
|
+
content: '\e702';
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
.e-new-report::before {
|
|
51
|
+
content: '\e709';
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
.e-save-report::before {
|
|
55
|
+
content: '\e701';
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
.e-saveas-report::before {
|
|
59
|
+
content: '\e703';
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.e-rename-report::before {
|
|
63
|
+
content: '\e704';
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
.e-remove-report::before {
|
|
67
|
+
content: '\e70c';
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
.e-sub-total::before {
|
|
71
|
+
content: '\e710';
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
.e-grand-total::before {
|
|
75
|
+
content: '\e708';
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.e-toolbar-fieldlist::before {
|
|
79
|
+
content: '\e434';
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
.e-toolbar-grid::before {
|
|
83
|
+
content: '\e70f';
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
.e-toolbar-chart::before {
|
|
87
|
+
content: '\e70d';
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.e-toolbar-formatting::before {
|
|
91
|
+
content: '\e725';
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
.e-pivot-button .e-edit::before {
|
|
95
|
+
content: '\e338';
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
.e-sort-ascend-icon::before {
|
|
99
|
+
content: '\e734';
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.e-sort-descend-icon::before {
|
|
103
|
+
content: '\e733';
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.e-pivotview-pdf-export::before {
|
|
108
|
+
content: '\e707';
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
.e-pivotview-excel-export::before {
|
|
112
|
+
content: '\e70b';
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.e-pivotview-csv-export::before {
|
|
116
|
+
content: '\e712';
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.e-pivotview-png-export::before {
|
|
120
|
+
content: '\e715';
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.e-pivotview-jpeg-export::before {
|
|
124
|
+
content: '\e713';
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
.e-pivotview-svg-export::before {
|
|
128
|
+
content: '\e716';
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.e-mdx::before {
|
|
132
|
+
content: '\e724';
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
.e-pivotview-select-icon::before {
|
|
136
|
+
content: '\e614';
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.e-pivotview-grid::before {
|
|
140
|
+
content: '\e70f';
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
.e-pivotview-export::before {
|
|
144
|
+
content: '\e702';
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.e-pivotview-expand::before {
|
|
148
|
+
content: '\e558';
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.e-pivotview-collapse::before {
|
|
152
|
+
content: '\e557';
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.e-pivot-format-menu::before {
|
|
156
|
+
content: '\e728';
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
.e-pivot-number-format-menu::before {
|
|
160
|
+
content: '\e711';
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
.e-pivot-conditional-format-menu::before {
|
|
164
|
+
content: '\e725';
|
|
165
|
+
}
|
|
166
|
+
|
|
167
|
+
.e-pivot-format-toolbar::before {
|
|
168
|
+
content: '\e711';
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-pivotview-group::before {
|
|
172
|
+
content: '\e740';
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
.e-pivotview-ungroup::before {
|
|
176
|
+
content: '\e741';
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
.e-level-options {
|
|
180
|
+
.e-selected-level-icon::before {
|
|
181
|
+
content: '\e614';
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|