@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,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/bootstrap-dark-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/bootstrap-dark-definition.scss';
|
|
3
|
+
@import 'bootstrap-dark-definition.scss';
|
|
4
|
+
@import 'icons/bootstrap-dark.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -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,
|
|
@@ -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,
|
|
@@ -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 {
|
|
@@ -979,7 +979,7 @@
|
|
|
979
979
|
}
|
|
980
980
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
981
981
|
font-size: 12px !important;
|
|
982
|
-
padding
|
|
982
|
+
padding: 6px 0 4px 0 !important;
|
|
983
983
|
}
|
|
984
984
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
985
985
|
margin: -10px 0 !important;
|
|
@@ -1022,6 +1022,11 @@
|
|
|
1022
1022
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1023
1023
|
visibility: hidden !important;
|
|
1024
1024
|
}
|
|
1025
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1026
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1027
|
+
text-overflow: ellipsis;
|
|
1028
|
+
white-space: nowrap;
|
|
1029
|
+
}
|
|
1025
1030
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1026
1031
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1027
1032
|
padding-left: 8px !important;
|
|
@@ -1186,38 +1191,6 @@
|
|
|
1186
1191
|
font-size: 14px;
|
|
1187
1192
|
font-weight: normal;
|
|
1188
1193
|
}
|
|
1189
|
-
.e-pivotview .e-group-values .e-pivot-button .e-sort,
|
|
1190
|
-
.e-pivotview .e-group-values .e-pivot-button .e-dropdown-icon,
|
|
1191
|
-
.e-pivotview .e-group-values .e-pivot-button .e-pv-filter,
|
|
1192
|
-
.e-pivotview .e-group-values .e-pivot-button .e-pv-filtered,
|
|
1193
|
-
.e-pivotview .e-group-values .e-pivot-button .e-remove,
|
|
1194
|
-
.e-pivotview .e-group-values .e-pivot-button .e-edit,
|
|
1195
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-sort,
|
|
1196
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-dropdown-icon,
|
|
1197
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filter,
|
|
1198
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filtered,
|
|
1199
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-remove,
|
|
1200
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-edit,
|
|
1201
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-sort,
|
|
1202
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-dropdown-icon,
|
|
1203
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filter,
|
|
1204
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filtered,
|
|
1205
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-remove,
|
|
1206
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-edit,
|
|
1207
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-sort,
|
|
1208
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-dropdown-icon,
|
|
1209
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filter,
|
|
1210
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered,
|
|
1211
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-remove,
|
|
1212
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-edit,
|
|
1213
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-sort,
|
|
1214
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-dropdown-icon,
|
|
1215
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filter,
|
|
1216
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filtered,
|
|
1217
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-remove,
|
|
1218
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-edit {
|
|
1219
|
-
margin-top: 1px;
|
|
1220
|
-
}
|
|
1221
1194
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
1222
1195
|
.e-pivotview .e-group-rows .e-pvt-btn-div {
|
|
1223
1196
|
display: -ms-inline-flexbox;
|
|
@@ -1255,7 +1228,7 @@
|
|
|
1255
1228
|
font-weight: normal;
|
|
1256
1229
|
height: 24px;
|
|
1257
1230
|
line-height: 0.9em;
|
|
1258
|
-
padding:
|
|
1231
|
+
padding: 5px 8px;
|
|
1259
1232
|
text-transform: none;
|
|
1260
1233
|
vertical-align: bottom;
|
|
1261
1234
|
z-index: 1;
|
|
@@ -1444,7 +1417,7 @@
|
|
|
1444
1417
|
pointer-events: none;
|
|
1445
1418
|
}
|
|
1446
1419
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1447
|
-
padding:
|
|
1420
|
+
padding: 5px 8px;
|
|
1448
1421
|
width: 180px;
|
|
1449
1422
|
}
|
|
1450
1423
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1521,7 +1494,6 @@
|
|
|
1521
1494
|
width: 18px;
|
|
1522
1495
|
}
|
|
1523
1496
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1524
|
-
margin-top: 3px;
|
|
1525
1497
|
transform: rotateX(180deg);
|
|
1526
1498
|
}
|
|
1527
1499
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1576,7 +1548,7 @@
|
|
|
1576
1548
|
width: auto;
|
|
1577
1549
|
}
|
|
1578
1550
|
.e-pivotview .e-collapse::before {
|
|
1579
|
-
font-size:
|
|
1551
|
+
font-size: 18px;
|
|
1580
1552
|
}
|
|
1581
1553
|
.e-pivotview .e-expand,
|
|
1582
1554
|
.e-pivotview .e-collapse {
|
|
@@ -1697,12 +1669,6 @@
|
|
|
1697
1669
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1698
1670
|
line-height: 1em !important;
|
|
1699
1671
|
}
|
|
1700
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1701
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1702
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1703
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1704
|
-
margin-top: 2px !important;
|
|
1705
|
-
}
|
|
1706
1672
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1707
1673
|
max-width: 155px;
|
|
1708
1674
|
}
|
|
@@ -1713,9 +1679,6 @@
|
|
|
1713
1679
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1714
1680
|
max-width: 200px;
|
|
1715
1681
|
}
|
|
1716
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1717
|
-
width: 100% !important;
|
|
1718
|
-
}
|
|
1719
1682
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1720
1683
|
width: 0 !important;
|
|
1721
1684
|
}
|
|
@@ -1875,7 +1838,6 @@
|
|
|
1875
1838
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1876
1839
|
font-size: 14px !important;
|
|
1877
1840
|
height: 20px;
|
|
1878
|
-
margin-top: 2px;
|
|
1879
1841
|
width: 20px;
|
|
1880
1842
|
}
|
|
1881
1843
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1971,9 +1933,8 @@
|
|
|
1971
1933
|
}
|
|
1972
1934
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1973
1935
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1974
|
-
margin: -
|
|
1936
|
+
margin: -23px -15px !important;
|
|
1975
1937
|
font-size: 12px !important;
|
|
1976
|
-
padding-top: 28px;
|
|
1977
1938
|
}
|
|
1978
1939
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1979
1940
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2050,7 +2011,7 @@
|
|
|
2050
2011
|
}
|
|
2051
2012
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2052
2013
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2053
|
-
font-size:
|
|
2014
|
+
font-size: 22px;
|
|
2054
2015
|
}
|
|
2055
2016
|
|
|
2056
2017
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -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;
|
|
@@ -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 {
|
|
@@ -1638,12 +1643,6 @@
|
|
|
1638
1643
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1639
1644
|
line-height: 1em !important;
|
|
1640
1645
|
}
|
|
1641
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1642
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1643
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1644
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1645
|
-
margin-top: 2px !important;
|
|
1646
|
-
}
|
|
1647
1646
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1648
1647
|
max-width: 155px;
|
|
1649
1648
|
}
|
|
@@ -1654,9 +1653,6 @@
|
|
|
1654
1653
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1655
1654
|
max-width: 200px;
|
|
1656
1655
|
}
|
|
1657
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1658
|
-
width: 100% !important;
|
|
1659
|
-
}
|
|
1660
1656
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1661
1657
|
width: 0 !important;
|
|
1662
1658
|
}
|
|
@@ -1816,7 +1812,6 @@
|
|
|
1816
1812
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1817
1813
|
font-size: 14px !important;
|
|
1818
1814
|
height: 20px;
|
|
1819
|
-
margin-top: 1px;
|
|
1820
1815
|
width: 20px;
|
|
1821
1816
|
}
|
|
1822
1817
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1900,7 +1895,7 @@
|
|
|
1900
1895
|
}
|
|
1901
1896
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1902
1897
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1903
|
-
margin: -
|
|
1898
|
+
margin: -23px -5px !important;
|
|
1904
1899
|
}
|
|
1905
1900
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1906
1901
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -1 +1,5 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/fabric-dark-definition.scss';
|
|
2
|
+
@import '../pivotfieldlist/fabric-dark-definition.scss';
|
|
3
|
+
@import 'fabric-dark-definition.scss';
|
|
4
|
+
@import 'icons/fabric-dark.scss';
|
|
5
|
+
@import 'all.scss';
|
|
@@ -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;
|
|
@@ -1463,7 +1469,6 @@
|
|
|
1463
1469
|
width: 18px;
|
|
1464
1470
|
}
|
|
1465
1471
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1466
|
-
margin-top: 3px;
|
|
1467
1472
|
transform: rotateX(180deg);
|
|
1468
1473
|
}
|
|
1469
1474
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1636,12 +1641,6 @@
|
|
|
1636
1641
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1637
1642
|
line-height: 1em !important;
|
|
1638
1643
|
}
|
|
1639
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1640
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1641
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1642
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1643
|
-
margin-top: 2px !important;
|
|
1644
|
-
}
|
|
1645
1644
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1646
1645
|
max-width: 155px;
|
|
1647
1646
|
}
|
|
@@ -1652,9 +1651,6 @@
|
|
|
1652
1651
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1653
1652
|
max-width: 200px;
|
|
1654
1653
|
}
|
|
1655
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1656
|
-
width: 100% !important;
|
|
1657
|
-
}
|
|
1658
1654
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1659
1655
|
width: 0 !important;
|
|
1660
1656
|
}
|
|
@@ -1814,7 +1810,6 @@
|
|
|
1814
1810
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1815
1811
|
font-size: 14px !important;
|
|
1816
1812
|
height: 20px;
|
|
1817
|
-
margin-top: 1px;
|
|
1818
1813
|
width: 20px;
|
|
1819
1814
|
}
|
|
1820
1815
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1898,7 +1893,7 @@
|
|
|
1898
1893
|
}
|
|
1899
1894
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1900
1895
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1901
|
-
margin: -
|
|
1896
|
+
margin: -23px -5px !important;
|
|
1902
1897
|
}
|
|
1903
1898
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1904
1899
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|