@syncfusion/ej2-pivotview 20.1.61 → 20.2.39
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 +30 -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 +391 -157
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +403 -166
- 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 +13 -11
- package/src/base/olap/engine.js +14 -2
- 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/constant.d.ts +8 -0
- package/src/common/base/constant.js +8 -0
- 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/pivotchart/base/pivotchart.js +16 -6
- 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 +11 -6
- 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/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +61 -32
- 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 +25 -12
- package/src/pivotview/renderer/render.js +4 -1
- package/styles/bootstrap-dark.css +166 -33
- package/styles/bootstrap.css +166 -33
- package/styles/bootstrap4.css +167 -37
- package/styles/bootstrap5-dark.css +210 -46
- package/styles/bootstrap5.css +210 -46
- package/styles/fabric-dark.css +166 -33
- package/styles/fabric.css +166 -33
- package/styles/fluent-dark.css +184 -50
- package/styles/fluent.css +184 -50
- package/styles/highcontrast-light.css +166 -33
- package/styles/highcontrast.css +166 -33
- package/styles/material-dark.css +166 -33
- package/styles/material.css +166 -33
- 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 +31 -15
- package/styles/pivotfieldlist/_material-dark-definition.scss +10 -0
- package/styles/pivotfieldlist/_material-definition.scss +10 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +19 -10
- package/styles/pivotfieldlist/_theme.scss +142 -7
- package/styles/pivotfieldlist/bootstrap-dark.css +147 -11
- package/styles/pivotfieldlist/bootstrap.css +147 -11
- package/styles/pivotfieldlist/bootstrap4.css +148 -12
- package/styles/pivotfieldlist/bootstrap5-dark.css +152 -16
- package/styles/pivotfieldlist/bootstrap5.css +152 -16
- package/styles/pivotfieldlist/fabric-dark.css +147 -11
- package/styles/pivotfieldlist/fabric.css +147 -11
- package/styles/pivotfieldlist/fluent-dark.css +155 -19
- package/styles/pivotfieldlist/fluent.css +155 -19
- package/styles/pivotfieldlist/highcontrast-light.css +147 -11
- package/styles/pivotfieldlist/highcontrast.css +147 -11
- 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 +147 -11
- package/styles/pivotfieldlist/material.css +147 -11
- package/styles/pivotfieldlist/tailwind-dark.css +156 -22
- package/styles/pivotfieldlist/tailwind.css +157 -22
- 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 +183 -53
- package/styles/tailwind.css +184 -53
|
@@ -844,18 +844,6 @@
|
|
|
844
844
|
margin-top: 12px;
|
|
845
845
|
}
|
|
846
846
|
|
|
847
|
-
.e-bigger .e-dialog .e-footer-content {
|
|
848
|
-
height: 62px;
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
.e-bigger .e-dialog .e-dlg-header-content {
|
|
852
|
-
padding-left: 10px;
|
|
853
|
-
}
|
|
854
|
-
|
|
855
|
-
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
856
|
-
margin-left: 24px !important;
|
|
857
|
-
}
|
|
858
|
-
|
|
859
847
|
/*! PivotView theme */
|
|
860
848
|
.e-pivotview .e-nextspan {
|
|
861
849
|
display: inline-block;
|
|
@@ -914,6 +902,8 @@
|
|
|
914
902
|
}
|
|
915
903
|
.e-pivotview .e-member-editor-dialog,
|
|
916
904
|
.e-pivotview .e-olap-editor-dialog {
|
|
905
|
+
min-height: 385px !important;
|
|
906
|
+
min-width: 350px !important;
|
|
917
907
|
visibility: hidden;
|
|
918
908
|
}
|
|
919
909
|
.e-pivotview .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
@@ -986,10 +976,8 @@
|
|
|
986
976
|
padding: 15px;
|
|
987
977
|
}
|
|
988
978
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
989
|
-
padding: 1px 4px !important;
|
|
990
979
|
font-size: 12px !important;
|
|
991
|
-
padding-
|
|
992
|
-
padding-top: 4px !important;
|
|
980
|
+
padding-right: 5px !important;
|
|
993
981
|
}
|
|
994
982
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
995
983
|
margin: -10px 0 !important;
|
|
@@ -1030,12 +1018,7 @@
|
|
|
1030
1018
|
z-index: 1 !important;
|
|
1031
1019
|
}
|
|
1032
1020
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1033
|
-
visibility: hidden;
|
|
1034
|
-
}
|
|
1035
|
-
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1036
|
-
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1037
|
-
text-overflow: ellipsis;
|
|
1038
|
-
white-space: nowrap;
|
|
1021
|
+
visibility: hidden !important;
|
|
1039
1022
|
}
|
|
1040
1023
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1041
1024
|
.e-pivotview .e-grid .e-columnsheader {
|
|
@@ -1201,6 +1184,38 @@
|
|
|
1201
1184
|
font-size: 14px;
|
|
1202
1185
|
font-weight: normal;
|
|
1203
1186
|
}
|
|
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
|
+
}
|
|
1204
1219
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
1205
1220
|
.e-pivotview .e-group-rows .e-pvt-btn-div {
|
|
1206
1221
|
display: -ms-inline-flexbox;
|
|
@@ -1231,14 +1246,14 @@
|
|
|
1231
1246
|
border: 1px solid #495057;
|
|
1232
1247
|
border-radius: 4px;
|
|
1233
1248
|
box-shadow: none;
|
|
1234
|
-
color: #e9ecef;
|
|
1249
|
+
color: #e9ecef !important;
|
|
1235
1250
|
cursor: default;
|
|
1236
1251
|
display: -ms-flexbox;
|
|
1237
1252
|
display: flex;
|
|
1238
1253
|
font-weight: normal;
|
|
1239
1254
|
height: 24px;
|
|
1240
1255
|
line-height: 0.9em;
|
|
1241
|
-
padding:
|
|
1256
|
+
padding: 3px 8px;
|
|
1242
1257
|
text-transform: none;
|
|
1243
1258
|
vertical-align: bottom;
|
|
1244
1259
|
z-index: 1;
|
|
@@ -1427,7 +1442,7 @@
|
|
|
1427
1442
|
pointer-events: none;
|
|
1428
1443
|
}
|
|
1429
1444
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1430
|
-
padding:
|
|
1445
|
+
padding: 3px 8px;
|
|
1431
1446
|
width: 180px;
|
|
1432
1447
|
}
|
|
1433
1448
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1479,8 +1494,9 @@
|
|
|
1479
1494
|
color: #fff !important;
|
|
1480
1495
|
font-size: 12px;
|
|
1481
1496
|
height: 18px;
|
|
1482
|
-
margin-left: 4px;
|
|
1497
|
+
margin-left: 4px !important;
|
|
1483
1498
|
width: 18px;
|
|
1499
|
+
padding-top: 2px;
|
|
1484
1500
|
}
|
|
1485
1501
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
1486
1502
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon:hover,
|
|
@@ -1503,6 +1519,7 @@
|
|
|
1503
1519
|
width: 18px;
|
|
1504
1520
|
}
|
|
1505
1521
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1522
|
+
margin-top: 3px;
|
|
1506
1523
|
transform: rotateX(180deg);
|
|
1507
1524
|
}
|
|
1508
1525
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1557,7 +1574,7 @@
|
|
|
1557
1574
|
width: auto;
|
|
1558
1575
|
}
|
|
1559
1576
|
.e-pivotview .e-collapse::before {
|
|
1560
|
-
font-size:
|
|
1577
|
+
font-size: 20px;
|
|
1561
1578
|
}
|
|
1562
1579
|
.e-pivotview .e-expand,
|
|
1563
1580
|
.e-pivotview .e-collapse {
|
|
@@ -1575,7 +1592,7 @@
|
|
|
1575
1592
|
.e-pivotview th .e-collapse {
|
|
1576
1593
|
font-size: 10px !important;
|
|
1577
1594
|
margin-left: 0px;
|
|
1578
|
-
margin-top:
|
|
1595
|
+
margin-top: 0;
|
|
1579
1596
|
}
|
|
1580
1597
|
.e-pivotview .e-expand::before {
|
|
1581
1598
|
font-size: 20px;
|
|
@@ -1678,6 +1695,12 @@
|
|
|
1678
1695
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1679
1696
|
line-height: 1em !important;
|
|
1680
1697
|
}
|
|
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
|
+
}
|
|
1681
1704
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1682
1705
|
max-width: 155px;
|
|
1683
1706
|
}
|
|
@@ -1688,6 +1711,9 @@
|
|
|
1688
1711
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1689
1712
|
max-width: 200px;
|
|
1690
1713
|
}
|
|
1714
|
+
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1715
|
+
width: 100% !important;
|
|
1716
|
+
}
|
|
1691
1717
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1692
1718
|
width: 0 !important;
|
|
1693
1719
|
}
|
|
@@ -1803,7 +1829,7 @@
|
|
|
1803
1829
|
.e-bigger .e-pivotview th .e-collapse,
|
|
1804
1830
|
.e-bigger.e-pivotview th .e-expand,
|
|
1805
1831
|
.e-bigger.e-pivotview th .e-collapse {
|
|
1806
|
-
margin-top:
|
|
1832
|
+
margin-top: 0;
|
|
1807
1833
|
}
|
|
1808
1834
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
1809
1835
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
@@ -1847,6 +1873,7 @@
|
|
|
1847
1873
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1848
1874
|
font-size: 14px !important;
|
|
1849
1875
|
height: 20px;
|
|
1876
|
+
margin-top: 2px;
|
|
1850
1877
|
width: 20px;
|
|
1851
1878
|
}
|
|
1852
1879
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1942,8 +1969,9 @@
|
|
|
1942
1969
|
}
|
|
1943
1970
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1944
1971
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1945
|
-
margin: -
|
|
1972
|
+
margin: -15px -8px !important;
|
|
1946
1973
|
font-size: 12px !important;
|
|
1974
|
+
padding-top: 28px;
|
|
1947
1975
|
}
|
|
1948
1976
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1949
1977
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2020,7 +2048,7 @@
|
|
|
2020
2048
|
}
|
|
2021
2049
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2022
2050
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2023
|
-
font-size:
|
|
2051
|
+
font-size: 24px;
|
|
2024
2052
|
}
|
|
2025
2053
|
|
|
2026
2054
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -2307,6 +2335,10 @@
|
|
|
2307
2335
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2308
2336
|
content: "\e7d8" !important;
|
|
2309
2337
|
}
|
|
2338
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
2339
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
2340
|
+
content: "\e754" !important;
|
|
2341
|
+
}
|
|
2310
2342
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2311
2343
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2312
2344
|
content: "\e740";
|
|
@@ -2342,7 +2374,6 @@
|
|
|
2342
2374
|
|
|
2343
2375
|
.e-pivot-formatting-dialog {
|
|
2344
2376
|
max-height: 480px !important;
|
|
2345
|
-
min-width: 628px !important;
|
|
2346
2377
|
width: 628px !important;
|
|
2347
2378
|
}
|
|
2348
2379
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2357,6 +2388,7 @@
|
|
|
2357
2388
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2358
2389
|
padding-bottom: 14px;
|
|
2359
2390
|
padding-right: 18px;
|
|
2391
|
+
white-space: nowrap;
|
|
2360
2392
|
padding-right: 8px;
|
|
2361
2393
|
}
|
|
2362
2394
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
@@ -2374,6 +2406,7 @@
|
|
|
2374
2406
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
2375
2407
|
padding-left: 14px;
|
|
2376
2408
|
padding-top: 14px;
|
|
2409
|
+
width: 579px;
|
|
2377
2410
|
}
|
|
2378
2411
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
2379
2412
|
background-color: #212529;
|
|
@@ -2454,6 +2487,9 @@
|
|
|
2454
2487
|
min-width: 320px !important;
|
|
2455
2488
|
width: 100% !important;
|
|
2456
2489
|
}
|
|
2490
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2491
|
+
width: 100% !important;
|
|
2492
|
+
}
|
|
2457
2493
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2458
2494
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2459
2495
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2498,7 +2534,6 @@
|
|
|
2498
2534
|
|
|
2499
2535
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2500
2536
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2501
|
-
min-width: 680px !important;
|
|
2502
2537
|
width: 680px !important;
|
|
2503
2538
|
}
|
|
2504
2539
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2516,6 +2551,7 @@
|
|
|
2516
2551
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
2517
2552
|
padding-left: 16px;
|
|
2518
2553
|
padding-top: 16px;
|
|
2554
|
+
width: 656px;
|
|
2519
2555
|
}
|
|
2520
2556
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
2521
2557
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -2754,7 +2790,7 @@
|
|
|
2754
2790
|
display: flex;
|
|
2755
2791
|
}
|
|
2756
2792
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
2757
|
-
height:
|
|
2793
|
+
height: 495px;
|
|
2758
2794
|
width: 50%;
|
|
2759
2795
|
}
|
|
2760
2796
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer {
|
|
@@ -2764,9 +2800,9 @@
|
|
|
2764
2800
|
}
|
|
2765
2801
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
2766
2802
|
display: inline-block;
|
|
2767
|
-
height:
|
|
2803
|
+
height: 460px;
|
|
2768
2804
|
overflow: auto;
|
|
2769
|
-
width:
|
|
2805
|
+
width: 100% !important;
|
|
2770
2806
|
}
|
|
2771
2807
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview {
|
|
2772
2808
|
display: inline-table;
|
|
@@ -2894,8 +2930,8 @@
|
|
|
2894
2930
|
|
|
2895
2931
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2896
2932
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2897
|
-
max-height:
|
|
2898
|
-
min-width:
|
|
2933
|
+
max-height: 600px !important;
|
|
2934
|
+
min-width: 401px !important;
|
|
2899
2935
|
}
|
|
2900
2936
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2901
2937
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2941,17 +2977,17 @@
|
|
|
2941
2977
|
}
|
|
2942
2978
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2943
2979
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2944
|
-
max-height:
|
|
2945
|
-
min-width: 580px;
|
|
2980
|
+
max-height: 750px !important;
|
|
2981
|
+
min-width: 580px !important;
|
|
2946
2982
|
}
|
|
2947
2983
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2948
2984
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
2949
|
-
height:
|
|
2985
|
+
height: 570px;
|
|
2950
2986
|
width: 283px;
|
|
2951
2987
|
}
|
|
2952
2988
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div,
|
|
2953
2989
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
2954
|
-
height:
|
|
2990
|
+
height: 520px;
|
|
2955
2991
|
width: 325px;
|
|
2956
2992
|
}
|
|
2957
2993
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-all-field-title,
|
|
@@ -3018,7 +3054,7 @@
|
|
|
3018
3054
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3019
3055
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3020
3056
|
margin-left: -22px;
|
|
3021
|
-
overflow:
|
|
3057
|
+
overflow: auto !important;
|
|
3022
3058
|
}
|
|
3023
3059
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3024
3060
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3055,6 +3091,9 @@
|
|
|
3055
3091
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
3056
3092
|
margin-right: 0;
|
|
3057
3093
|
}
|
|
3094
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
3095
|
+
margin-left: 20px;
|
|
3096
|
+
}
|
|
3058
3097
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
3059
3098
|
float: left;
|
|
3060
3099
|
margin: 0;
|
|
@@ -3150,6 +3189,10 @@
|
|
|
3150
3189
|
opacity: 56%;
|
|
3151
3190
|
padding: 14px 10px 9px 20px;
|
|
3152
3191
|
}
|
|
3192
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
3193
|
+
margin-left: 0;
|
|
3194
|
+
margin-right: 20px;
|
|
3195
|
+
}
|
|
3153
3196
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
3154
3197
|
margin-left: 0;
|
|
3155
3198
|
margin-right: 10px;
|
|
@@ -3174,6 +3217,10 @@
|
|
|
3174
3217
|
margin-left: 0;
|
|
3175
3218
|
margin-right: 10px;
|
|
3176
3219
|
}
|
|
3220
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
3221
|
+
min-height: 170px;
|
|
3222
|
+
overflow: auto;
|
|
3223
|
+
}
|
|
3177
3224
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
3178
3225
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
3179
3226
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -3289,7 +3336,7 @@
|
|
|
3289
3336
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
3290
3337
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3291
3338
|
overflow: hidden;
|
|
3292
|
-
padding: 0;
|
|
3339
|
+
padding: 0 !important;
|
|
3293
3340
|
}
|
|
3294
3341
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3295
3342
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3529,7 +3576,7 @@
|
|
|
3529
3576
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
3530
3577
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
3531
3578
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
3532
|
-
height:
|
|
3579
|
+
height: 227px;
|
|
3533
3580
|
}
|
|
3534
3581
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3535
3582
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div,
|
|
@@ -3559,7 +3606,7 @@
|
|
|
3559
3606
|
}
|
|
3560
3607
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
3561
3608
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
3562
|
-
min-width: 350px;
|
|
3609
|
+
min-width: 350px !important;
|
|
3563
3610
|
}
|
|
3564
3611
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
3565
3612
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -3674,6 +3721,25 @@
|
|
|
3674
3721
|
min-height: 36px;
|
|
3675
3722
|
min-width: 36px;
|
|
3676
3723
|
}
|
|
3724
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
3725
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
3726
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
3727
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
3728
|
+
max-height: 400px !important;
|
|
3729
|
+
min-width: 370px !important;
|
|
3730
|
+
}
|
|
3731
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3732
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
3733
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3734
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
3735
|
+
min-height: 113px !important;
|
|
3736
|
+
}
|
|
3737
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3738
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3739
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3740
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
3741
|
+
height: auto;
|
|
3742
|
+
}
|
|
3677
3743
|
|
|
3678
3744
|
.e-pivotfieldlist-container {
|
|
3679
3745
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
@@ -3902,6 +3968,9 @@
|
|
|
3902
3968
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
3903
3969
|
font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
|
|
3904
3970
|
}
|
|
3971
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
3972
|
+
display: none !important;
|
|
3973
|
+
}
|
|
3905
3974
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
3906
3975
|
margin-left: 0;
|
|
3907
3976
|
margin-right: 0;
|
|
@@ -4350,6 +4419,59 @@
|
|
|
4350
4419
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
4351
4420
|
width: 60%;
|
|
4352
4421
|
}
|
|
4422
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
4423
|
+
max-height: 750px;
|
|
4424
|
+
}
|
|
4425
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
4426
|
+
height: 261px;
|
|
4427
|
+
}
|
|
4428
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4429
|
+
min-height: 540px;
|
|
4430
|
+
}
|
|
4431
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4432
|
+
height: 369px;
|
|
4433
|
+
}
|
|
4434
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4435
|
+
height: 392px !important;
|
|
4436
|
+
}
|
|
4437
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
4438
|
+
height: 392px;
|
|
4439
|
+
}
|
|
4440
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
4441
|
+
height: 162px !important;
|
|
4442
|
+
}
|
|
4443
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
4444
|
+
color: #adb5bd;
|
|
4445
|
+
padding: 25px 12px;
|
|
4446
|
+
text-align: center;
|
|
4447
|
+
width: 100%;
|
|
4448
|
+
}
|
|
4449
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
4450
|
+
display: none;
|
|
4451
|
+
}
|
|
4452
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
4453
|
+
display: -ms-flexbox;
|
|
4454
|
+
display: flex;
|
|
4455
|
+
padding: 10px 18px;
|
|
4456
|
+
}
|
|
4457
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4458
|
+
float: right;
|
|
4459
|
+
font-size: 14px;
|
|
4460
|
+
}
|
|
4461
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
4462
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
4463
|
+
border-width: 0 !important;
|
|
4464
|
+
cursor: text !important;
|
|
4465
|
+
}
|
|
4466
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
4467
|
+
background-color: transparent !important;
|
|
4468
|
+
border: transparent !important;
|
|
4469
|
+
color: currentColor !important;
|
|
4470
|
+
}
|
|
4471
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
4472
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
4473
|
+
display: none !important;
|
|
4474
|
+
}
|
|
4353
4475
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
4354
4476
|
color: #fff;
|
|
4355
4477
|
font-size: 14px;
|
|
@@ -4434,7 +4556,7 @@
|
|
|
4434
4556
|
width: 100%;
|
|
4435
4557
|
}
|
|
4436
4558
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
4437
|
-
height:
|
|
4559
|
+
height: 180px;
|
|
4438
4560
|
}
|
|
4439
4561
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
4440
4562
|
display: none;
|
|
@@ -4496,6 +4618,11 @@
|
|
|
4496
4618
|
background-color: transparent;
|
|
4497
4619
|
color: #ced4da;
|
|
4498
4620
|
}
|
|
4621
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4622
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4623
|
+
height: 210px;
|
|
4624
|
+
overflow: auto;
|
|
4625
|
+
}
|
|
4499
4626
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4500
4627
|
display: -ms-flexbox;
|
|
4501
4628
|
display: flex;
|
|
@@ -5393,4 +5520,41 @@
|
|
|
5393
5520
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
5394
5521
|
padding-left: 0;
|
|
5395
5522
|
padding-right: 4px;
|
|
5523
|
+
}
|
|
5524
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5525
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5526
|
+
max-height: 750px;
|
|
5527
|
+
}
|
|
5528
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
5529
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
5530
|
+
max-height: 800px;
|
|
5531
|
+
}
|
|
5532
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
5533
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
5534
|
+
height: 270px;
|
|
5535
|
+
}
|
|
5536
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5537
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5538
|
+
max-height: 600px !important;
|
|
5539
|
+
min-height: 580px !important;
|
|
5540
|
+
}
|
|
5541
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5542
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
5543
|
+
height: 387px;
|
|
5544
|
+
}
|
|
5545
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
5546
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
5547
|
+
height: 400px !important;
|
|
5548
|
+
}
|
|
5549
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
5550
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
5551
|
+
height: 404px;
|
|
5552
|
+
}
|
|
5553
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5554
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5555
|
+
height: 165px !important;
|
|
5556
|
+
}
|
|
5557
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5558
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5559
|
+
max-height: 187px;
|
|
5396
5560
|
}
|