@syncfusion/ej2-pivotview 20.1.58 → 20.2.38
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 +29 -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 +530 -235
- package/dist/es6/ej2-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-pivotview.es5.js +544 -246
- 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.d.ts +1 -1
- package/src/base/engine.js +129 -82
- package/src/base/olap/engine.js +2 -2
- package/src/base/olap/mdx-query.js +1 -1
- package/src/base/util.js +2 -2
- package/src/common/actions/event-base.d.ts +4 -2
- package/src/common/actions/event-base.js +45 -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 +10 -10
- 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.d.ts +1 -0
- package/src/common/popups/toolbar.js +26 -16
- package/src/pivotchart/base/pivotchart.js +3 -0
- 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/drill-through.js +2 -2
- package/src/pivotview/actions/virtualscroll.d.ts +1 -0
- package/src/pivotview/actions/virtualscroll.js +59 -30
- 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/model/chartsettings-model.d.ts +2 -2
- package/src/pivotview/model/chartsettings.d.ts +2 -2
- package/src/pivotview/model/chartsettings.js +2 -2
- package/src/pivotview/renderer/render.js +5 -2
- 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 +190 -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
package/styles/bootstrap5.css
CHANGED
|
@@ -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 {
|
|
@@ -2309,6 +2337,10 @@
|
|
|
2309
2337
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2310
2338
|
content: "\e7d8" !important;
|
|
2311
2339
|
}
|
|
2340
|
+
.e-pivotfieldlist-wrapper .e-field-list-search-icon::before,
|
|
2341
|
+
.e-pivotfieldlist-container .e-field-list-search-icon::before {
|
|
2342
|
+
content: "\e754" !important;
|
|
2343
|
+
}
|
|
2312
2344
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2313
2345
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2314
2346
|
content: "\e740";
|
|
@@ -2344,7 +2376,6 @@
|
|
|
2344
2376
|
|
|
2345
2377
|
.e-pivot-formatting-dialog {
|
|
2346
2378
|
max-height: 480px !important;
|
|
2347
|
-
min-width: 628px !important;
|
|
2348
2379
|
width: 628px !important;
|
|
2349
2380
|
}
|
|
2350
2381
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2359,6 +2390,7 @@
|
|
|
2359
2390
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2360
2391
|
padding-bottom: 14px;
|
|
2361
2392
|
padding-right: 18px;
|
|
2393
|
+
white-space: nowrap;
|
|
2362
2394
|
padding-right: 8px;
|
|
2363
2395
|
}
|
|
2364
2396
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
@@ -2376,6 +2408,7 @@
|
|
|
2376
2408
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
2377
2409
|
padding-left: 14px;
|
|
2378
2410
|
padding-top: 14px;
|
|
2411
|
+
width: 579px;
|
|
2379
2412
|
}
|
|
2380
2413
|
.e-pivot-formatting-dialog .e-format-outer-div {
|
|
2381
2414
|
background-color: #fff;
|
|
@@ -2456,6 +2489,9 @@
|
|
|
2456
2489
|
min-width: 320px !important;
|
|
2457
2490
|
width: 100% !important;
|
|
2458
2491
|
}
|
|
2492
|
+
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2493
|
+
width: 100% !important;
|
|
2494
|
+
}
|
|
2459
2495
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2460
2496
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2461
2497
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2500,7 +2536,6 @@
|
|
|
2500
2536
|
|
|
2501
2537
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2502
2538
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2503
|
-
min-width: 680px !important;
|
|
2504
2539
|
width: 680px !important;
|
|
2505
2540
|
}
|
|
2506
2541
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2518,6 +2553,7 @@
|
|
|
2518
2553
|
.e-bigger .e-pivot-formatting-dialog .e-format-inner-div {
|
|
2519
2554
|
padding-left: 16px;
|
|
2520
2555
|
padding-top: 16px;
|
|
2556
|
+
width: 656px;
|
|
2521
2557
|
}
|
|
2522
2558
|
.e-bigger.e-pivot-formatting-dialog .e-format-outer-div,
|
|
2523
2559
|
.e-bigger .e-pivot-formatting-dialog .e-format-outer-div {
|
|
@@ -2756,7 +2792,7 @@
|
|
|
2756
2792
|
display: flex;
|
|
2757
2793
|
}
|
|
2758
2794
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
2759
|
-
height:
|
|
2795
|
+
height: 495px;
|
|
2760
2796
|
width: 50%;
|
|
2761
2797
|
}
|
|
2762
2798
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer {
|
|
@@ -2766,7 +2802,7 @@
|
|
|
2766
2802
|
}
|
|
2767
2803
|
.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 {
|
|
2768
2804
|
display: inline-block;
|
|
2769
|
-
height:
|
|
2805
|
+
height: 460px;
|
|
2770
2806
|
overflow: auto;
|
|
2771
2807
|
width: 310px;
|
|
2772
2808
|
}
|
|
@@ -2896,8 +2932,8 @@
|
|
|
2896
2932
|
|
|
2897
2933
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2898
2934
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2899
|
-
max-height:
|
|
2900
|
-
min-width:
|
|
2935
|
+
max-height: 600px !important;
|
|
2936
|
+
min-width: 401px !important;
|
|
2901
2937
|
}
|
|
2902
2938
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
2903
2939
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -2943,17 +2979,17 @@
|
|
|
2943
2979
|
}
|
|
2944
2980
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2945
2981
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2946
|
-
max-height:
|
|
2947
|
-
min-width: 580px;
|
|
2982
|
+
max-height: 750px !important;
|
|
2983
|
+
min-width: 580px !important;
|
|
2948
2984
|
}
|
|
2949
2985
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2950
2986
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
2951
|
-
height:
|
|
2987
|
+
height: 570px;
|
|
2952
2988
|
width: 283px;
|
|
2953
2989
|
}
|
|
2954
2990
|
.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,
|
|
2955
2991
|
.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 {
|
|
2956
|
-
height:
|
|
2992
|
+
height: 520px;
|
|
2957
2993
|
width: 325px;
|
|
2958
2994
|
}
|
|
2959
2995
|
.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,
|
|
@@ -3020,7 +3056,7 @@
|
|
|
3020
3056
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
3021
3057
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
3022
3058
|
margin-left: -22px;
|
|
3023
|
-
overflow:
|
|
3059
|
+
overflow: auto !important;
|
|
3024
3060
|
}
|
|
3025
3061
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
3026
3062
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -3057,6 +3093,9 @@
|
|
|
3057
3093
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog.e-rtl .e-member-editor-outer-container ul {
|
|
3058
3094
|
margin-right: 0;
|
|
3059
3095
|
}
|
|
3096
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-toolbar .e-toolbar-items {
|
|
3097
|
+
margin-left: 20px;
|
|
3098
|
+
}
|
|
3060
3099
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-clear-filter-button {
|
|
3061
3100
|
float: left;
|
|
3062
3101
|
margin: 0;
|
|
@@ -3152,6 +3191,10 @@
|
|
|
3152
3191
|
opacity: 56%;
|
|
3153
3192
|
padding: 14px 10px 9px 20px;
|
|
3154
3193
|
}
|
|
3194
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-toolbar .e-toolbar-items {
|
|
3195
|
+
margin-left: 0;
|
|
3196
|
+
margin-right: 20px;
|
|
3197
|
+
}
|
|
3155
3198
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container .e-editor-search-container .e-filter-sort {
|
|
3156
3199
|
margin-left: 0;
|
|
3157
3200
|
margin-right: 10px;
|
|
@@ -3176,6 +3219,10 @@
|
|
|
3176
3219
|
margin-left: 0;
|
|
3177
3220
|
margin-right: 10px;
|
|
3178
3221
|
}
|
|
3222
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul {
|
|
3223
|
+
min-height: 170px;
|
|
3224
|
+
overflow: auto;
|
|
3225
|
+
}
|
|
3179
3226
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-measure-icon,
|
|
3180
3227
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-calc-dimension-icon,
|
|
3181
3228
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-attributeCDB-icon,
|
|
@@ -3291,7 +3338,7 @@
|
|
|
3291
3338
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content,
|
|
3292
3339
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
3293
3340
|
overflow: hidden;
|
|
3294
|
-
padding: 0;
|
|
3341
|
+
padding: 0 !important;
|
|
3295
3342
|
}
|
|
3296
3343
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
3297
3344
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -3531,7 +3578,7 @@
|
|
|
3531
3578
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
3532
3579
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
3533
3580
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
3534
|
-
height:
|
|
3581
|
+
height: 227px;
|
|
3535
3582
|
}
|
|
3536
3583
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
3537
3584
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div,
|
|
@@ -3561,7 +3608,7 @@
|
|
|
3561
3608
|
}
|
|
3562
3609
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
3563
3610
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
3564
|
-
min-width: 350px;
|
|
3611
|
+
min-width: 350px !important;
|
|
3565
3612
|
}
|
|
3566
3613
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
3567
3614
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -3676,6 +3723,25 @@
|
|
|
3676
3723
|
min-height: 36px;
|
|
3677
3724
|
min-width: 36px;
|
|
3678
3725
|
}
|
|
3726
|
+
.e-bigger .e-pivotfieldlist .e-member-editor-dialog,
|
|
3727
|
+
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
3728
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
3729
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
3730
|
+
max-height: 400px !important;
|
|
3731
|
+
min-width: 370px !important;
|
|
3732
|
+
}
|
|
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
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
3736
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
3737
|
+
min-height: 113px !important;
|
|
3738
|
+
}
|
|
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
|
+
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
3742
|
+
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul {
|
|
3743
|
+
height: auto;
|
|
3744
|
+
}
|
|
3679
3745
|
|
|
3680
3746
|
.e-pivotfieldlist-container {
|
|
3681
3747
|
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,6 +3970,9 @@
|
|
|
3904
3970
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-list-text {
|
|
3905
3971
|
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";
|
|
3906
3972
|
}
|
|
3973
|
+
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li.e-disable {
|
|
3974
|
+
display: none !important;
|
|
3975
|
+
}
|
|
3907
3976
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list.e-olap-field-list-tree ul li {
|
|
3908
3977
|
margin-left: 0;
|
|
3909
3978
|
margin-right: 0;
|
|
@@ -4352,6 +4421,59 @@
|
|
|
4352
4421
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table.e-olap-axis-table {
|
|
4353
4422
|
width: 60%;
|
|
4354
4423
|
}
|
|
4424
|
+
.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
4425
|
+
max-height: 750px;
|
|
4426
|
+
}
|
|
4427
|
+
.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
4428
|
+
height: 261px;
|
|
4429
|
+
}
|
|
4430
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4431
|
+
min-height: 540px;
|
|
4432
|
+
}
|
|
4433
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4434
|
+
height: 369px;
|
|
4435
|
+
}
|
|
4436
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
4437
|
+
height: 392px !important;
|
|
4438
|
+
}
|
|
4439
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
4440
|
+
height: 392px;
|
|
4441
|
+
}
|
|
4442
|
+
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
4443
|
+
height: 162px !important;
|
|
4444
|
+
}
|
|
4445
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt {
|
|
4446
|
+
color: #adb5bd;
|
|
4447
|
+
padding: 25px 12px;
|
|
4448
|
+
text-align: center;
|
|
4449
|
+
width: 100%;
|
|
4450
|
+
}
|
|
4451
|
+
.e-pivotfieldlist-container.e-search-mode .e-member-prompt.e-disable {
|
|
4452
|
+
display: none;
|
|
4453
|
+
}
|
|
4454
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search {
|
|
4455
|
+
display: -ms-flexbox;
|
|
4456
|
+
display: flex;
|
|
4457
|
+
padding: 10px 18px;
|
|
4458
|
+
}
|
|
4459
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
4460
|
+
float: right;
|
|
4461
|
+
font-size: 14px;
|
|
4462
|
+
}
|
|
4463
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group .e-input-group-icon,
|
|
4464
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group.e-control-wrapper .e-input-group-icon {
|
|
4465
|
+
border-width: 0 !important;
|
|
4466
|
+
cursor: text !important;
|
|
4467
|
+
}
|
|
4468
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-input-group-icon:hover {
|
|
4469
|
+
background-color: transparent !important;
|
|
4470
|
+
border: transparent !important;
|
|
4471
|
+
color: currentColor !important;
|
|
4472
|
+
}
|
|
4473
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-tree-outer-div .e-disable,
|
|
4474
|
+
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-disable {
|
|
4475
|
+
display: none !important;
|
|
4476
|
+
}
|
|
4355
4477
|
.e-pivotfieldlist-container .e-calculated-field {
|
|
4356
4478
|
color: #fff;
|
|
4357
4479
|
font-size: 14px;
|
|
@@ -4436,7 +4558,7 @@
|
|
|
4436
4558
|
width: 100%;
|
|
4437
4559
|
}
|
|
4438
4560
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-field-table .e-field-list-tree-outer-div {
|
|
4439
|
-
height:
|
|
4561
|
+
height: 180px;
|
|
4440
4562
|
}
|
|
4441
4563
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-center-div {
|
|
4442
4564
|
display: none;
|
|
@@ -4498,6 +4620,11 @@
|
|
|
4498
4620
|
background-color: transparent;
|
|
4499
4621
|
color: #495057;
|
|
4500
4622
|
}
|
|
4623
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4624
|
+
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4625
|
+
height: 210px;
|
|
4626
|
+
overflow: auto;
|
|
4627
|
+
}
|
|
4501
4628
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4502
4629
|
display: -ms-flexbox;
|
|
4503
4630
|
display: flex;
|
|
@@ -5395,4 +5522,41 @@
|
|
|
5395
5522
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-pivot-button .e-edit {
|
|
5396
5523
|
padding-left: 0;
|
|
5397
5524
|
padding-right: 4px;
|
|
5525
|
+
}
|
|
5526
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
5527
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
5528
|
+
max-height: 750px;
|
|
5529
|
+
}
|
|
5530
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container,
|
|
5531
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container {
|
|
5532
|
+
max-height: 800px;
|
|
5533
|
+
}
|
|
5534
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table,
|
|
5535
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static .e-field-list-container .e-field-table {
|
|
5536
|
+
height: 270px;
|
|
5537
|
+
}
|
|
5538
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5539
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5540
|
+
max-height: 600px !important;
|
|
5541
|
+
min-height: 580px !important;
|
|
5542
|
+
}
|
|
5543
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5544
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
5545
|
+
height: 387px;
|
|
5546
|
+
}
|
|
5547
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table,
|
|
5548
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
5549
|
+
height: 400px !important;
|
|
5550
|
+
}
|
|
5551
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table,
|
|
5552
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table {
|
|
5553
|
+
height: 404px;
|
|
5554
|
+
}
|
|
5555
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5556
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5557
|
+
height: 165px !important;
|
|
5558
|
+
}
|
|
5559
|
+
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5560
|
+
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5561
|
+
max-height: 187px;
|
|
5398
5562
|
}
|