@syncfusion/ej2-pivotview 20.1.61 → 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/CHANGELOG.md +12 -0
- package/dist/ej2-pivotview.umd.min.js +2 -2
- package/dist/ej2-pivotview.umd.min.js.map +1 -1
- package/dist/es6/ej2-pivotview.es2015.js +281 -99
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +283 -100
- package/dist/es6/ej2-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-pivotview.min.js +2 -2
- package/dist/global/ej2-pivotview.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/helpers/e2e/index.js +9 -7
- package/helpers/e2e/pivotfieldlist.js +47 -31
- package/helpers/e2e/pivotview.js +68 -52
- package/package.json +22 -22
- package/src/base/engine.js +2 -2
- package/src/base/olap/engine.js +12 -0
- package/src/base/olap/mdx-query.js +1 -1
- package/src/common/actions/event-base.d.ts +4 -2
- package/src/common/actions/event-base.js +18 -10
- package/src/common/actions/field-list.js +2 -1
- package/src/common/actions/pivot-button.js +4 -4
- package/src/common/base/css-constant.d.ts +16 -0
- package/src/common/base/css-constant.js +16 -0
- package/src/common/calculatedfield/calculated-field.js +24 -15
- package/src/common/conditionalformatting/conditional-formatting.js +5 -5
- package/src/common/grouping-bar/grouping-bar.js +1 -1
- package/src/common/popups/aggregate-menu.js +4 -3
- package/src/common/popups/drillthrough-dialog.js +5 -4
- package/src/common/popups/error-dialog.js +1 -1
- package/src/common/popups/filter-dialog.js +25 -14
- package/src/common/popups/formatting-dialog.js +2 -2
- package/src/common/popups/grouping.js +14 -7
- package/src/common/popups/toolbar.js +11 -10
- package/src/pivotfieldlist/base/field-list-model.d.ts +5 -0
- package/src/pivotfieldlist/base/field-list.d.ts +4 -0
- package/src/pivotfieldlist/base/field-list.js +5 -0
- package/src/pivotfieldlist/renderer/dialog-renderer.js +17 -9
- package/src/pivotfieldlist/renderer/tree-renderer.d.ts +4 -0
- package/src/pivotfieldlist/renderer/tree-renderer.js +102 -8
- package/src/pivotview/base/pivotview-model.d.ts +7 -0
- package/src/pivotview/base/pivotview.d.ts +6 -0
- package/src/pivotview/base/pivotview.js +9 -3
- package/src/pivotview/renderer/render.js +3 -0
- package/styles/bootstrap-dark.css +165 -32
- package/styles/bootstrap.css +165 -32
- package/styles/bootstrap4.css +166 -36
- package/styles/bootstrap5-dark.css +209 -45
- package/styles/bootstrap5.css +209 -45
- package/styles/fabric-dark.css +165 -32
- package/styles/fabric.css +165 -32
- package/styles/fluent-dark.css +183 -49
- package/styles/fluent.css +183 -49
- package/styles/highcontrast-light.css +165 -32
- package/styles/highcontrast.css +165 -32
- package/styles/material-dark.css +165 -32
- package/styles/material.css +165 -32
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +10 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +11 -1
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +15 -6
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +10 -1
- package/styles/pivotfieldlist/_fabric-definition.scss +10 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +18 -8
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +10 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +10 -0
- package/styles/pivotfieldlist/_layout.scss +30 -14
- package/styles/pivotfieldlist/_material-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_material-definition.scss +10 -0
- package/styles/pivotfieldlist/_material3-definition.scss +189 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +19 -10
- package/styles/pivotfieldlist/_theme.scss +142 -7
- package/styles/pivotfieldlist/bootstrap-dark.css +146 -10
- package/styles/pivotfieldlist/bootstrap.css +146 -10
- package/styles/pivotfieldlist/bootstrap4.css +147 -11
- package/styles/pivotfieldlist/bootstrap5-dark.css +151 -15
- package/styles/pivotfieldlist/bootstrap5.css +151 -15
- package/styles/pivotfieldlist/fabric-dark.css +146 -10
- package/styles/pivotfieldlist/fabric.css +146 -10
- package/styles/pivotfieldlist/fluent-dark.css +154 -18
- package/styles/pivotfieldlist/fluent.css +154 -18
- package/styles/pivotfieldlist/highcontrast-light.css +146 -10
- package/styles/pivotfieldlist/highcontrast.css +146 -10
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +5 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +5 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +5 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +5 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +5 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +5 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +5 -0
- package/styles/pivotfieldlist/icons/_material.scss +4 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +4 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +4 -0
- package/styles/pivotfieldlist/material-dark.css +146 -10
- package/styles/pivotfieldlist/material.css +146 -10
- package/styles/pivotfieldlist/tailwind-dark.css +155 -21
- package/styles/pivotfieldlist/tailwind.css +156 -21
- package/styles/pivotview/_bootstrap-dark-definition.scss +4 -2
- package/styles/pivotview/_bootstrap-definition.scss +4 -2
- package/styles/pivotview/_bootstrap4-definition.scss +4 -2
- package/styles/pivotview/_bootstrap5-definition.scss +9 -8
- package/styles/pivotview/_fabric-dark-definition.scss +4 -1
- package/styles/pivotview/_fabric-definition.scss +4 -2
- package/styles/pivotview/_fluent-definition.scss +11 -9
- package/styles/pivotview/_fusionnew-definition.scss +131 -0
- package/styles/pivotview/_highcontrast-definition.scss +4 -2
- package/styles/pivotview/_highcontrast-light-definition.scss +4 -2
- package/styles/pivotview/_layout.scss +3 -17
- package/styles/pivotview/_material-dark-definition.scss +4 -1
- package/styles/pivotview/_material-definition.scss +4 -2
- package/styles/pivotview/_material3-definition.scss +131 -0
- package/styles/pivotview/_tailwind-definition.scss +8 -5
- package/styles/pivotview/_theme.scss +47 -27
- package/styles/pivotview/bootstrap-dark.css +19 -22
- package/styles/pivotview/bootstrap.css +19 -22
- package/styles/pivotview/bootstrap4.css +19 -25
- package/styles/pivotview/bootstrap5-dark.css +58 -30
- package/styles/pivotview/bootstrap5.css +58 -30
- package/styles/pivotview/fabric-dark.css +19 -22
- package/styles/pivotview/fabric.css +19 -22
- package/styles/pivotview/fluent-dark.css +29 -31
- package/styles/pivotview/fluent.css +29 -31
- package/styles/pivotview/highcontrast-light.css +19 -22
- package/styles/pivotview/highcontrast.css +19 -22
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/material-dark.css +19 -22
- package/styles/pivotview/material.css +19 -22
- package/styles/pivotview/tailwind-dark.css +27 -31
- package/styles/pivotview/tailwind.css +27 -31
- package/styles/tailwind-dark.css +182 -52
- package/styles/tailwind.css +183 -52
|
@@ -846,18 +846,6 @@
|
|
|
846
846
|
margin-top: 12px;
|
|
847
847
|
}
|
|
848
848
|
|
|
849
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
850
|
-
height: 62px;
|
|
851
|
-
}
|
|
852
|
-
|
|
853
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
854
|
-
padding-left: 10px;
|
|
855
|
-
}
|
|
856
|
-
|
|
857
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
858
|
-
margin-left: 24px !important;
|
|
859
|
-
}
|
|
860
|
-
|
|
861
849
|
/*! PivotView theme */
|
|
862
850
|
.e-pivotview .e-nextspan {
|
|
863
851
|
display: inline-block;
|
|
@@ -916,6 +904,8 @@
|
|
|
916
904
|
}
|
|
917
905
|
.e-pivotview .e-member-editor-dialog,
|
|
918
906
|
.e-pivotview .e-olap-editor-dialog {
|
|
907
|
+
min-height: 385px !important;
|
|
908
|
+
min-width: 350px !important;
|
|
919
909
|
visibility: hidden;
|
|
920
910
|
}
|
|
921
911
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -988,10 +978,8 @@
|
|
|
988
978
|
padding: 15px;
|
|
989
979
|
}
|
|
990
980
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
991
|
-
padding: 1px 4px !important;
|
|
992
981
|
font-size: 12px !important;
|
|
993
|
-
padding-
|
|
994
|
-
padding-top: 4px !important;
|
|
982
|
+
padding-right: 5px !important;
|
|
995
983
|
}
|
|
996
984
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
997
985
|
margin: -10px 0 !important;
|
|
@@ -1032,12 +1020,7 @@
|
|
|
1032
1020
|
z-index: 1 !important;
|
|
1033
1021
|
}
|
|
1034
1022
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1035
|
-
visibility: hidden;
|
|
1036
|
-
}
|
|
1037
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1038
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1039
|
-
text-overflow: ellipsis;
|
|
1040
|
-
white-space: nowrap;
|
|
1023
|
+
visibility: hidden !important;
|
|
1041
1024
|
}
|
|
1042
1025
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1043
1026
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1203,6 +1186,38 @@
|
|
|
1203
1186
|
font-size: 14px;
|
|
1204
1187
|
font-weight: normal;
|
|
1205
1188
|
}
|
|
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
|
+
}
|
|
1206
1221
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
1207
1222
|
.e-pivotview .e-group-rows .e-pvt-btn-div {
|
|
1208
1223
|
display: -ms-inline-flexbox;
|
|
@@ -1233,14 +1248,14 @@
|
|
|
1233
1248
|
border: 1px solid #dee2e6;
|
|
1234
1249
|
border-radius: 4px;
|
|
1235
1250
|
box-shadow: none;
|
|
1236
|
-
color: #343a40;
|
|
1251
|
+
color: #343a40 !important;
|
|
1237
1252
|
cursor: default;
|
|
1238
1253
|
display: -ms-flexbox;
|
|
1239
1254
|
display: flex;
|
|
1240
1255
|
font-weight: normal;
|
|
1241
1256
|
height: 24px;
|
|
1242
1257
|
line-height: 0.9em;
|
|
1243
|
-
padding:
|
|
1258
|
+
padding: 3px 8px;
|
|
1244
1259
|
text-transform: none;
|
|
1245
1260
|
vertical-align: bottom;
|
|
1246
1261
|
z-index: 1;
|
|
@@ -1429,7 +1444,7 @@
|
|
|
1429
1444
|
pointer-events: none;
|
|
1430
1445
|
}
|
|
1431
1446
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1432
|
-
padding:
|
|
1447
|
+
padding: 3px 8px;
|
|
1433
1448
|
width: 180px;
|
|
1434
1449
|
}
|
|
1435
1450
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1481,8 +1496,9 @@
|
|
|
1481
1496
|
color: #fff !important;
|
|
1482
1497
|
font-size: 12px;
|
|
1483
1498
|
height: 18px;
|
|
1484
|
-
margin-left: 4px;
|
|
1499
|
+
margin-left: 4px !important;
|
|
1485
1500
|
width: 18px;
|
|
1501
|
+
padding-top: 2px;
|
|
1486
1502
|
}
|
|
1487
1503
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1488
1504
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1505,6 +1521,7 @@
|
|
|
1505
1521
|
width: 18px;
|
|
1506
1522
|
}
|
|
1507
1523
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1524
|
+
margin-top: 3px;
|
|
1508
1525
|
transform: rotateX(180deg);
|
|
1509
1526
|
}
|
|
1510
1527
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1559,7 +1576,7 @@
|
|
|
1559
1576
|
width: auto;
|
|
1560
1577
|
}
|
|
1561
1578
|
.e-pivotview .e-collapse::before {
|
|
1562
|
-
font-size:
|
|
1579
|
+
font-size: 20px;
|
|
1563
1580
|
}
|
|
1564
1581
|
.e-pivotview .e-expand,
|
|
1565
1582
|
.e-pivotview .e-collapse {
|
|
@@ -1577,7 +1594,7 @@
|
|
|
1577
1594
|
.e-pivotview th .e-collapse {
|
|
1578
1595
|
font-size: 10px !important;
|
|
1579
1596
|
margin-left: 0px;
|
|
1580
|
-
margin-top:
|
|
1597
|
+
margin-top: 0;
|
|
1581
1598
|
}
|
|
1582
1599
|
.e-pivotview .e-expand::before {
|
|
1583
1600
|
font-size: 20px;
|
|
@@ -1680,6 +1697,12 @@
|
|
|
1680
1697
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1681
1698
|
line-height: 1em !important;
|
|
1682
1699
|
}
|
|
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
|
+
}
|
|
1683
1706
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1684
1707
|
max-width: 155px;
|
|
1685
1708
|
}
|
|
@@ -1690,6 +1713,9 @@
|
|
|
1690
1713
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1691
1714
|
max-width: 200px;
|
|
1692
1715
|
}
|
|
1716
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1717
|
+
width: 100% !important;
|
|
1718
|
+
}
|
|
1693
1719
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1694
1720
|
width: 0 !important;
|
|
1695
1721
|
}
|
|
@@ -1805,7 +1831,7 @@
|
|
|
1805
1831
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1806
1832
|
.e-bigger.e-pivotview th .e-expand,
|
|
1807
1833
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1808
|
-
margin-top:
|
|
1834
|
+
margin-top: 0;
|
|
1809
1835
|
}
|
|
1810
1836
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1811
1837
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1849,6 +1875,7 @@
|
|
|
1849
1875
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1850
1876
|
font-size: 14px !important;
|
|
1851
1877
|
height: 20px;
|
|
1878
|
+
margin-top: 2px;
|
|
1852
1879
|
width: 20px;
|
|
1853
1880
|
}
|
|
1854
1881
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1944,8 +1971,9 @@
|
|
|
1944
1971
|
}
|
|
1945
1972
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1946
1973
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1947
|
-
margin: -
|
|
1974
|
+
margin: -15px -8px !important;
|
|
1948
1975
|
font-size: 12px !important;
|
|
1976
|
+
padding-top: 28px;
|
|
1949
1977
|
}
|
|
1950
1978
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1951
1979
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2022,7 +2050,7 @@
|
|
|
2022
2050
|
}
|
|
2023
2051
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2024
2052
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2025
|
-
font-size:
|
|
2053
|
+
font-size: 24px;
|
|
2026
2054
|
}
|
|
2027
2055
|
|
|
2028
2056
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -836,18 +836,6 @@
|
|
|
836
836
|
margin-top: 5px;
|
|
837
837
|
}
|
|
838
838
|
|
|
839
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
840
|
-
height: 62px;
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
844
|
-
padding-left: 10px;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
848
|
-
margin-left: 24px !important;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
839
|
/*! PivotView theme */
|
|
852
840
|
.e-pivotview .e-nextspan {
|
|
853
841
|
display: inline-block;
|
|
@@ -905,6 +893,8 @@
|
|
|
905
893
|
}
|
|
906
894
|
.e-pivotview .e-member-editor-dialog,
|
|
907
895
|
.e-pivotview .e-olap-editor-dialog {
|
|
896
|
+
min-height: 385px !important;
|
|
897
|
+
min-width: 350px !important;
|
|
908
898
|
visibility: hidden;
|
|
909
899
|
}
|
|
910
900
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -974,7 +964,7 @@
|
|
|
974
964
|
margin: -21px 0 !important;
|
|
975
965
|
}
|
|
976
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
977
|
-
|
|
967
|
+
font-size: 12px !important;
|
|
978
968
|
}
|
|
979
969
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
980
970
|
margin: -10px 0 !important;
|
|
@@ -1012,12 +1002,7 @@
|
|
|
1012
1002
|
z-index: 1 !important;
|
|
1013
1003
|
}
|
|
1014
1004
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1015
|
-
visibility: hidden;
|
|
1016
|
-
}
|
|
1017
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1018
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1019
|
-
text-overflow: ellipsis;
|
|
1020
|
-
white-space: nowrap;
|
|
1005
|
+
visibility: hidden !important;
|
|
1021
1006
|
}
|
|
1022
1007
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1023
1008
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1208,7 +1193,7 @@
|
|
|
1208
1193
|
border: 1px solid #414040;
|
|
1209
1194
|
border-radius: 0;
|
|
1210
1195
|
box-shadow: none;
|
|
1211
|
-
color: #dadada;
|
|
1196
|
+
color: #dadada !important;
|
|
1212
1197
|
cursor: default;
|
|
1213
1198
|
display: -ms-flexbox;
|
|
1214
1199
|
display: flex;
|
|
@@ -1455,8 +1440,9 @@
|
|
|
1455
1440
|
color: #dadada !important;
|
|
1456
1441
|
font-size: 12px;
|
|
1457
1442
|
height: 18px;
|
|
1458
|
-
margin-left: 4px;
|
|
1443
|
+
margin-left: 4px !important;
|
|
1459
1444
|
width: 18px;
|
|
1445
|
+
padding-top: 2px;
|
|
1460
1446
|
}
|
|
1461
1447
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1462
1448
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1479,6 +1465,7 @@
|
|
|
1479
1465
|
width: 18px;
|
|
1480
1466
|
}
|
|
1481
1467
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1468
|
+
margin-top: 3px;
|
|
1482
1469
|
transform: rotateX(180deg);
|
|
1483
1470
|
}
|
|
1484
1471
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1651,6 +1638,12 @@
|
|
|
1651
1638
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1652
1639
|
line-height: 1em !important;
|
|
1653
1640
|
}
|
|
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
|
+
}
|
|
1654
1647
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1655
1648
|
max-width: 155px;
|
|
1656
1649
|
}
|
|
@@ -1661,6 +1654,9 @@
|
|
|
1661
1654
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1662
1655
|
max-width: 200px;
|
|
1663
1656
|
}
|
|
1657
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1658
|
+
width: 100% !important;
|
|
1659
|
+
}
|
|
1664
1660
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1665
1661
|
width: 0 !important;
|
|
1666
1662
|
}
|
|
@@ -1820,6 +1816,7 @@
|
|
|
1820
1816
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1821
1817
|
font-size: 14px !important;
|
|
1822
1818
|
height: 20px;
|
|
1819
|
+
margin-top: 1px;
|
|
1823
1820
|
width: 20px;
|
|
1824
1821
|
}
|
|
1825
1822
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1903,7 +1900,7 @@
|
|
|
1903
1900
|
}
|
|
1904
1901
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1905
1902
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1906
|
-
margin: -
|
|
1903
|
+
margin: -18px -5px !important;
|
|
1907
1904
|
}
|
|
1908
1905
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1909
1906
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -836,18 +836,6 @@
|
|
|
836
836
|
margin-top: 5px;
|
|
837
837
|
}
|
|
838
838
|
|
|
839
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
840
|
-
height: 62px;
|
|
841
|
-
}
|
|
842
|
-
|
|
843
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
844
|
-
padding-left: 10px;
|
|
845
|
-
}
|
|
846
|
-
|
|
847
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
848
|
-
margin-left: 24px !important;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
839
|
/*! PivotView theme */
|
|
852
840
|
.e-pivotview .e-nextspan {
|
|
853
841
|
display: inline-block;
|
|
@@ -905,6 +893,8 @@
|
|
|
905
893
|
}
|
|
906
894
|
.e-pivotview .e-member-editor-dialog,
|
|
907
895
|
.e-pivotview .e-olap-editor-dialog {
|
|
896
|
+
min-height: 385px !important;
|
|
897
|
+
min-width: 350px !important;
|
|
908
898
|
visibility: hidden;
|
|
909
899
|
}
|
|
910
900
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -974,7 +964,7 @@
|
|
|
974
964
|
margin: -21px 0 !important;
|
|
975
965
|
}
|
|
976
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
977
|
-
|
|
967
|
+
font-size: 12px !important;
|
|
978
968
|
}
|
|
979
969
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
980
970
|
margin: -10px 0 !important;
|
|
@@ -1012,12 +1002,7 @@
|
|
|
1012
1002
|
z-index: 1 !important;
|
|
1013
1003
|
}
|
|
1014
1004
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1015
|
-
visibility: hidden;
|
|
1016
|
-
}
|
|
1017
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1018
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1019
|
-
text-overflow: ellipsis;
|
|
1020
|
-
white-space: nowrap;
|
|
1005
|
+
visibility: hidden !important;
|
|
1021
1006
|
}
|
|
1022
1007
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1023
1008
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1206,7 +1191,7 @@
|
|
|
1206
1191
|
border: 1px solid #dadada;
|
|
1207
1192
|
border-radius: 0;
|
|
1208
1193
|
box-shadow: none;
|
|
1209
|
-
color: #333;
|
|
1194
|
+
color: #333 !important;
|
|
1210
1195
|
cursor: default;
|
|
1211
1196
|
display: -ms-flexbox;
|
|
1212
1197
|
display: flex;
|
|
@@ -1453,8 +1438,9 @@
|
|
|
1453
1438
|
color: #666 !important;
|
|
1454
1439
|
font-size: 12px;
|
|
1455
1440
|
height: 18px;
|
|
1456
|
-
margin-left: 4px;
|
|
1441
|
+
margin-left: 4px !important;
|
|
1457
1442
|
width: 18px;
|
|
1443
|
+
padding-top: 2px;
|
|
1458
1444
|
}
|
|
1459
1445
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1460
1446
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1477,6 +1463,7 @@
|
|
|
1477
1463
|
width: 18px;
|
|
1478
1464
|
}
|
|
1479
1465
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1466
|
+
margin-top: 3px;
|
|
1480
1467
|
transform: rotateX(180deg);
|
|
1481
1468
|
}
|
|
1482
1469
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1649,6 +1636,12 @@
|
|
|
1649
1636
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1650
1637
|
line-height: 1em !important;
|
|
1651
1638
|
}
|
|
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
|
+
}
|
|
1652
1645
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1653
1646
|
max-width: 155px;
|
|
1654
1647
|
}
|
|
@@ -1659,6 +1652,9 @@
|
|
|
1659
1652
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1660
1653
|
max-width: 200px;
|
|
1661
1654
|
}
|
|
1655
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1656
|
+
width: 100% !important;
|
|
1657
|
+
}
|
|
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,6 +1814,7 @@
|
|
|
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;
|
|
1817
|
+
margin-top: 1px;
|
|
1821
1818
|
width: 20px;
|
|
1822
1819
|
}
|
|
1823
1820
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1901,7 +1898,7 @@
|
|
|
1901
1898
|
}
|
|
1902
1899
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1903
1900
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1904
|
-
margin: -
|
|
1901
|
+
margin: -18px -5px !important;
|
|
1905
1902
|
}
|
|
1906
1903
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1907
1904
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -561,13 +561,14 @@
|
|
|
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;
|
|
564
565
|
}
|
|
565
566
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu {
|
|
566
567
|
background-color: transparent;
|
|
567
568
|
border: none;
|
|
568
569
|
}
|
|
569
570
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
570
|
-
height:
|
|
571
|
+
height: 26px !important;
|
|
571
572
|
overflow: hidden;
|
|
572
573
|
padding-left: 10px;
|
|
573
574
|
}
|
|
@@ -576,11 +577,11 @@
|
|
|
576
577
|
margin-right: 0;
|
|
577
578
|
font-size: 16px;
|
|
578
579
|
color: #a19f9d;
|
|
579
|
-
line-height:
|
|
580
|
+
line-height: 26px;
|
|
580
581
|
}
|
|
581
582
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item .e-caret {
|
|
582
583
|
color: #a19f9d;
|
|
583
|
-
line-height:
|
|
584
|
+
line-height: 26px;
|
|
584
585
|
}
|
|
585
586
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item.e-focused .e-menu-icon,
|
|
586
587
|
.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item.e-focused .e-icons {
|
|
@@ -650,7 +651,7 @@
|
|
|
650
651
|
|
|
651
652
|
.e-pivotview-report-label {
|
|
652
653
|
float: left;
|
|
653
|
-
margin-top:
|
|
654
|
+
margin-top: 4px;
|
|
654
655
|
width: 40%;
|
|
655
656
|
}
|
|
656
657
|
|
|
@@ -702,7 +703,7 @@
|
|
|
702
703
|
|
|
703
704
|
.e-bigger .e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item,
|
|
704
705
|
.e-bigger.e-pivotview .e-pivot-toolbar .e-pivot-toolbar-menu ul .e-menu-item {
|
|
705
|
-
height:
|
|
706
|
+
height: 26px !important;
|
|
706
707
|
}
|
|
707
708
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
708
709
|
.e-bigger.e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div {
|
|
@@ -857,18 +858,6 @@
|
|
|
857
858
|
margin-top: 5px;
|
|
858
859
|
}
|
|
859
860
|
|
|
860
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
861
|
-
height: 62px;
|
|
862
|
-
}
|
|
863
|
-
|
|
864
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
865
|
-
padding-left: 10px;
|
|
866
|
-
}
|
|
867
|
-
|
|
868
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
869
|
-
margin-left: 24px !important;
|
|
870
|
-
}
|
|
871
|
-
|
|
872
861
|
/*! PivotView theme */
|
|
873
862
|
.e-pivotview .e-nextspan {
|
|
874
863
|
display: inline-block;
|
|
@@ -926,6 +915,8 @@
|
|
|
926
915
|
}
|
|
927
916
|
.e-pivotview .e-member-editor-dialog,
|
|
928
917
|
.e-pivotview .e-olap-editor-dialog {
|
|
918
|
+
min-height: 385px !important;
|
|
919
|
+
min-width: 350px !important;
|
|
929
920
|
visibility: hidden;
|
|
930
921
|
}
|
|
931
922
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -997,7 +988,6 @@
|
|
|
997
988
|
font-size: 14px !important;
|
|
998
989
|
}
|
|
999
990
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1000
|
-
padding: 1px 4px !important;
|
|
1001
991
|
font-size: 14px !important;
|
|
1002
992
|
}
|
|
1003
993
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
@@ -1036,12 +1026,7 @@
|
|
|
1036
1026
|
z-index: 1 !important;
|
|
1037
1027
|
}
|
|
1038
1028
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1039
|
-
visibility: hidden;
|
|
1040
|
-
}
|
|
1041
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1042
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1043
|
-
text-overflow: ellipsis;
|
|
1044
|
-
white-space: nowrap;
|
|
1029
|
+
visibility: hidden !important;
|
|
1045
1030
|
}
|
|
1046
1031
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1047
1032
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1237,7 +1222,7 @@
|
|
|
1237
1222
|
border: 1px solid #252423;
|
|
1238
1223
|
border-radius: 2px;
|
|
1239
1224
|
box-shadow: none;
|
|
1240
|
-
color: #d2d0ce;
|
|
1225
|
+
color: #d2d0ce !important;
|
|
1241
1226
|
cursor: default;
|
|
1242
1227
|
display: -ms-flexbox;
|
|
1243
1228
|
display: flex;
|
|
@@ -1485,8 +1470,9 @@
|
|
|
1485
1470
|
color: #a19f9d !important;
|
|
1486
1471
|
font-size: 12px;
|
|
1487
1472
|
height: 18px;
|
|
1488
|
-
margin-left: 4px;
|
|
1473
|
+
margin-left: 4px !important;
|
|
1489
1474
|
width: 18px;
|
|
1475
|
+
padding-top: 2px;
|
|
1490
1476
|
}
|
|
1491
1477
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1492
1478
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1509,6 +1495,7 @@
|
|
|
1509
1495
|
width: 18px;
|
|
1510
1496
|
}
|
|
1511
1497
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1498
|
+
margin-top: 3px;
|
|
1512
1499
|
transform: rotateX(180deg);
|
|
1513
1500
|
}
|
|
1514
1501
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1563,7 +1550,7 @@
|
|
|
1563
1550
|
width: auto;
|
|
1564
1551
|
}
|
|
1565
1552
|
.e-pivotview .e-collapse::before {
|
|
1566
|
-
font-size:
|
|
1553
|
+
font-size: 18px;
|
|
1567
1554
|
}
|
|
1568
1555
|
.e-pivotview .e-expand,
|
|
1569
1556
|
.e-pivotview .e-collapse {
|
|
@@ -1581,7 +1568,7 @@
|
|
|
1581
1568
|
.e-pivotview th .e-collapse {
|
|
1582
1569
|
font-size: 10px !important;
|
|
1583
1570
|
margin-left: 0px;
|
|
1584
|
-
margin-top:
|
|
1571
|
+
margin-top: 0;
|
|
1585
1572
|
}
|
|
1586
1573
|
.e-pivotview .e-expand::before {
|
|
1587
1574
|
font-size: 18px;
|
|
@@ -1684,6 +1671,12 @@
|
|
|
1684
1671
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1685
1672
|
line-height: 1em !important;
|
|
1686
1673
|
}
|
|
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
|
+
}
|
|
1687
1680
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1688
1681
|
max-width: 155px;
|
|
1689
1682
|
}
|
|
@@ -1694,6 +1687,9 @@
|
|
|
1694
1687
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1695
1688
|
max-width: 200px;
|
|
1696
1689
|
}
|
|
1690
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1691
|
+
width: 100% !important;
|
|
1692
|
+
}
|
|
1697
1693
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1698
1694
|
width: 0 !important;
|
|
1699
1695
|
}
|
|
@@ -1809,7 +1805,7 @@
|
|
|
1809
1805
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1810
1806
|
.e-bigger.e-pivotview th .e-expand,
|
|
1811
1807
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1812
|
-
margin-top:
|
|
1808
|
+
margin-top: 0;
|
|
1813
1809
|
}
|
|
1814
1810
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1815
1811
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1853,6 +1849,7 @@
|
|
|
1853
1849
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1854
1850
|
font-size: 14px !important;
|
|
1855
1851
|
height: 20px;
|
|
1852
|
+
margin-top: 2px;
|
|
1856
1853
|
width: 20px;
|
|
1857
1854
|
}
|
|
1858
1855
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1948,7 +1945,8 @@
|
|
|
1948
1945
|
}
|
|
1949
1946
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1950
1947
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1951
|
-
margin: -
|
|
1948
|
+
margin: -14px -10px !important;
|
|
1949
|
+
padding-top: 28px;
|
|
1952
1950
|
}
|
|
1953
1951
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1954
1952
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2025,7 +2023,7 @@
|
|
|
2025
2023
|
}
|
|
2026
2024
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2027
2025
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2028
|
-
font-size:
|
|
2026
|
+
font-size: 24px;
|
|
2029
2027
|
}
|
|
2030
2028
|
|
|
2031
2029
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|