@syncfusion/ej2-angular-pivotview 20.2.36-ngcc → 20.2.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +13 -29
- package/styles/bootstrap.css +13 -29
- package/styles/bootstrap4.css +13 -29
- package/styles/bootstrap5-dark.css +17 -67
- package/styles/bootstrap5.css +17 -67
- package/styles/fabric-dark.css +13 -29
- package/styles/fabric.css +13 -29
- package/styles/fluent-dark.css +15 -33
- package/styles/fluent.css +15 -33
- package/styles/highcontrast-light.css +13 -29
- package/styles/highcontrast.css +13 -29
- package/styles/material-dark.css +13 -29
- package/styles/material.css +13 -29
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +185 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +189 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +185 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +186 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +186 -0
- package/styles/pivotfieldlist/_layout.scss +1855 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +186 -0
- package/styles/pivotfieldlist/_material-definition.scss +186 -0
- package/styles/pivotfieldlist/_material3-definition.scss +188 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +189 -0
- package/styles/pivotfieldlist/_theme.scss +1855 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +6 -17
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +6 -17
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +6 -17
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +6 -17
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +6 -17
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +6 -17
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +6 -17
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +6 -17
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +6 -17
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +6 -17
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +357 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +358 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +357 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +352 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +357 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +357 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +358 -0
- package/styles/pivotfieldlist/icons/_material.scss +357 -0
- package/styles/pivotfieldlist/icons/_material3.scss +352 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +356 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +356 -0
- package/styles/pivotfieldlist/material-dark.css +6 -17
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +6 -17
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +8 -19
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +8 -19
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +130 -0
- package/styles/pivotview/_bootstrap-definition.scss +127 -0
- package/styles/pivotview/_bootstrap4-definition.scss +127 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +130 -0
- package/styles/pivotview/_fabric-dark-definition.scss +129 -0
- package/styles/pivotview/_fabric-definition.scss +126 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +130 -0
- package/styles/pivotview/_fusionnew-definition.scss +130 -0
- package/styles/pivotview/_highcontrast-definition.scss +125 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +126 -0
- package/styles/pivotview/_layout.scss +1073 -0
- package/styles/pivotview/_material-dark-definition.scss +131 -0
- package/styles/pivotview/_material-definition.scss +128 -0
- package/styles/pivotview/_material3-definition.scss +130 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +129 -0
- package/styles/pivotview/_theme.scss +1556 -0
- package/styles/pivotview/bootstrap-dark.css +7 -12
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +7 -12
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +7 -12
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +11 -50
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +11 -50
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +7 -12
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +7 -12
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +9 -16
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +9 -16
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +7 -12
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +7 -12
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +7 -12
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +7 -12
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +11 -18
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +11 -18
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +19 -37
- package/styles/tailwind.css +19 -37
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -665
- package/dist/ej2-angular-pivotview.umd.js +0 -662
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/bootstrap5.css
CHANGED
|
@@ -979,7 +979,7 @@
|
|
|
979
979
|
}
|
|
980
980
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
981
981
|
font-size: 12px !important;
|
|
982
|
-
padding
|
|
982
|
+
padding: 6px 0 4px 0 !important;
|
|
983
983
|
}
|
|
984
984
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
985
985
|
margin: -10px 0 !important;
|
|
@@ -1022,6 +1022,11 @@
|
|
|
1022
1022
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1023
1023
|
visibility: hidden !important;
|
|
1024
1024
|
}
|
|
1025
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1026
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1027
|
+
text-overflow: ellipsis;
|
|
1028
|
+
white-space: nowrap;
|
|
1029
|
+
}
|
|
1025
1030
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1026
1031
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1027
1032
|
padding-left: 8px !important;
|
|
@@ -1186,38 +1191,6 @@
|
|
|
1186
1191
|
font-size: 14px;
|
|
1187
1192
|
font-weight: normal;
|
|
1188
1193
|
}
|
|
1189
|
-
.e-pivotview .e-group-values .e-pivot-button .e-sort,
|
|
1190
|
-
.e-pivotview .e-group-values .e-pivot-button .e-dropdown-icon,
|
|
1191
|
-
.e-pivotview .e-group-values .e-pivot-button .e-pv-filter,
|
|
1192
|
-
.e-pivotview .e-group-values .e-pivot-button .e-pv-filtered,
|
|
1193
|
-
.e-pivotview .e-group-values .e-pivot-button .e-remove,
|
|
1194
|
-
.e-pivotview .e-group-values .e-pivot-button .e-edit,
|
|
1195
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-sort,
|
|
1196
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-dropdown-icon,
|
|
1197
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filter,
|
|
1198
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-pv-filtered,
|
|
1199
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-remove,
|
|
1200
|
-
.e-pivotview .e-group-columns .e-pivot-button .e-edit,
|
|
1201
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-sort,
|
|
1202
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-dropdown-icon,
|
|
1203
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filter,
|
|
1204
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-pv-filtered,
|
|
1205
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-remove,
|
|
1206
|
-
.e-pivotview .e-group-filters .e-pivot-button .e-edit,
|
|
1207
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-sort,
|
|
1208
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-dropdown-icon,
|
|
1209
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filter,
|
|
1210
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered,
|
|
1211
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-remove,
|
|
1212
|
-
.e-pivotview .e-group-rows .e-pivot-button .e-edit,
|
|
1213
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-sort,
|
|
1214
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-dropdown-icon,
|
|
1215
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filter,
|
|
1216
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-pv-filtered,
|
|
1217
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-remove,
|
|
1218
|
-
.e-pivotview .e-group-all-fields .e-pivot-button .e-edit {
|
|
1219
|
-
margin-top: 1px;
|
|
1220
|
-
}
|
|
1221
1194
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
1222
1195
|
.e-pivotview .e-group-rows .e-pvt-btn-div {
|
|
1223
1196
|
display: -ms-inline-flexbox;
|
|
@@ -1255,7 +1228,7 @@
|
|
|
1255
1228
|
font-weight: normal;
|
|
1256
1229
|
height: 24px;
|
|
1257
1230
|
line-height: 0.9em;
|
|
1258
|
-
padding:
|
|
1231
|
+
padding: 5px 8px;
|
|
1259
1232
|
text-transform: none;
|
|
1260
1233
|
vertical-align: bottom;
|
|
1261
1234
|
z-index: 1;
|
|
@@ -1444,7 +1417,7 @@
|
|
|
1444
1417
|
pointer-events: none;
|
|
1445
1418
|
}
|
|
1446
1419
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1447
|
-
padding:
|
|
1420
|
+
padding: 5px 8px;
|
|
1448
1421
|
width: 180px;
|
|
1449
1422
|
}
|
|
1450
1423
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button:hover {
|
|
@@ -1521,7 +1494,6 @@
|
|
|
1521
1494
|
width: 18px;
|
|
1522
1495
|
}
|
|
1523
1496
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1524
|
-
margin-top: 3px;
|
|
1525
1497
|
transform: rotateX(180deg);
|
|
1526
1498
|
}
|
|
1527
1499
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1576,7 +1548,7 @@
|
|
|
1576
1548
|
width: auto;
|
|
1577
1549
|
}
|
|
1578
1550
|
.e-pivotview .e-collapse::before {
|
|
1579
|
-
font-size:
|
|
1551
|
+
font-size: 18px;
|
|
1580
1552
|
}
|
|
1581
1553
|
.e-pivotview .e-expand,
|
|
1582
1554
|
.e-pivotview .e-collapse {
|
|
@@ -1697,12 +1669,6 @@
|
|
|
1697
1669
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1698
1670
|
line-height: 1em !important;
|
|
1699
1671
|
}
|
|
1700
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1701
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1702
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1703
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1704
|
-
margin-top: 2px !important;
|
|
1705
|
-
}
|
|
1706
1672
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1707
1673
|
max-width: 155px;
|
|
1708
1674
|
}
|
|
@@ -1713,9 +1679,6 @@
|
|
|
1713
1679
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1714
1680
|
max-width: 200px;
|
|
1715
1681
|
}
|
|
1716
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1717
|
-
width: 100% !important;
|
|
1718
|
-
}
|
|
1719
1682
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1720
1683
|
width: 0 !important;
|
|
1721
1684
|
}
|
|
@@ -1875,7 +1838,6 @@
|
|
|
1875
1838
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1876
1839
|
font-size: 14px !important;
|
|
1877
1840
|
height: 20px;
|
|
1878
|
-
margin-top: 2px;
|
|
1879
1841
|
width: 20px;
|
|
1880
1842
|
}
|
|
1881
1843
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1971,9 +1933,8 @@
|
|
|
1971
1933
|
}
|
|
1972
1934
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1973
1935
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1974
|
-
margin: -
|
|
1936
|
+
margin: -23px -15px !important;
|
|
1975
1937
|
font-size: 12px !important;
|
|
1976
|
-
padding-top: 28px;
|
|
1977
1938
|
}
|
|
1978
1939
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1979
1940
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2050,7 +2011,7 @@
|
|
|
2050
2011
|
}
|
|
2051
2012
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
2052
2013
|
.e-bigger.e-pivotview .e-collapse::before {
|
|
2053
|
-
font-size:
|
|
2014
|
+
font-size: 22px;
|
|
2054
2015
|
}
|
|
2055
2016
|
|
|
2056
2017
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -2376,6 +2337,7 @@
|
|
|
2376
2337
|
|
|
2377
2338
|
.e-pivot-formatting-dialog {
|
|
2378
2339
|
max-height: 480px !important;
|
|
2340
|
+
min-width: 628px !important;
|
|
2379
2341
|
width: 628px !important;
|
|
2380
2342
|
}
|
|
2381
2343
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2390,7 +2352,6 @@
|
|
|
2390
2352
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2391
2353
|
padding-bottom: 14px;
|
|
2392
2354
|
padding-right: 18px;
|
|
2393
|
-
white-space: nowrap;
|
|
2394
2355
|
padding-right: 8px;
|
|
2395
2356
|
}
|
|
2396
2357
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
@@ -2489,9 +2450,6 @@
|
|
|
2489
2450
|
min-width: 320px !important;
|
|
2490
2451
|
width: 100% !important;
|
|
2491
2452
|
}
|
|
2492
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2493
|
-
width: 100% !important;
|
|
2494
|
-
}
|
|
2495
2453
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2496
2454
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2497
2455
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2536,6 +2494,7 @@
|
|
|
2536
2494
|
|
|
2537
2495
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2538
2496
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2497
|
+
min-width: 680px !important;
|
|
2539
2498
|
width: 680px !important;
|
|
2540
2499
|
}
|
|
2541
2500
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2932,7 +2891,7 @@
|
|
|
2932
2891
|
|
|
2933
2892
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2934
2893
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2935
|
-
max-height:
|
|
2894
|
+
max-height: 590px !important;
|
|
2936
2895
|
min-width: 401px !important;
|
|
2937
2896
|
}
|
|
2938
2897
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2980,7 +2939,7 @@
|
|
|
2980
2939
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2981
2940
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2982
2941
|
max-height: 750px !important;
|
|
2983
|
-
min-width: 580px
|
|
2942
|
+
min-width: 580px;
|
|
2984
2943
|
}
|
|
2985
2944
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2986
2945
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4428,7 +4387,7 @@
|
|
|
4428
4387
|
height: 261px;
|
|
4429
4388
|
}
|
|
4430
4389
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4431
|
-
|
|
4390
|
+
height: 540px;
|
|
4432
4391
|
}
|
|
4433
4392
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4434
4393
|
height: 369px;
|
|
@@ -4620,11 +4579,6 @@
|
|
|
4620
4579
|
background-color: transparent;
|
|
4621
4580
|
color: #495057;
|
|
4622
4581
|
}
|
|
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
|
-
}
|
|
4628
4582
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4629
4583
|
display: -ms-flexbox;
|
|
4630
4584
|
display: flex;
|
|
@@ -5537,8 +5491,8 @@
|
|
|
5537
5491
|
}
|
|
5538
5492
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5539
5493
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5494
|
+
height: 565px !important;
|
|
5540
5495
|
max-height: 600px !important;
|
|
5541
|
-
min-height: 580px !important;
|
|
5542
5496
|
}
|
|
5543
5497
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5544
5498
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5555,8 +5509,4 @@
|
|
|
5555
5509
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5556
5510
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5557
5511
|
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;
|
|
5562
5512
|
}
|
package/styles/fabric-dark.css
CHANGED
|
@@ -965,6 +965,7 @@
|
|
|
965
965
|
}
|
|
966
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
967
967
|
font-size: 12px !important;
|
|
968
|
+
padding: 3px 4px 4px 4px !important;
|
|
968
969
|
}
|
|
969
970
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
970
971
|
margin: -10px 0 !important;
|
|
@@ -1004,6 +1005,11 @@
|
|
|
1004
1005
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1005
1006
|
visibility: hidden !important;
|
|
1006
1007
|
}
|
|
1008
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1009
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1010
|
+
text-overflow: ellipsis;
|
|
1011
|
+
white-space: nowrap;
|
|
1012
|
+
}
|
|
1007
1013
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1008
1014
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1009
1015
|
padding-left: 8px !important;
|
|
@@ -1465,7 +1471,6 @@
|
|
|
1465
1471
|
width: 18px;
|
|
1466
1472
|
}
|
|
1467
1473
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1468
|
-
margin-top: 3px;
|
|
1469
1474
|
transform: rotateX(180deg);
|
|
1470
1475
|
}
|
|
1471
1476
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1638,12 +1643,6 @@
|
|
|
1638
1643
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1639
1644
|
line-height: 1em !important;
|
|
1640
1645
|
}
|
|
1641
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1642
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1643
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1644
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1645
|
-
margin-top: 2px !important;
|
|
1646
|
-
}
|
|
1647
1646
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1648
1647
|
max-width: 155px;
|
|
1649
1648
|
}
|
|
@@ -1654,9 +1653,6 @@
|
|
|
1654
1653
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1655
1654
|
max-width: 200px;
|
|
1656
1655
|
}
|
|
1657
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1658
|
-
width: 100% !important;
|
|
1659
|
-
}
|
|
1660
1656
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1661
1657
|
width: 0 !important;
|
|
1662
1658
|
}
|
|
@@ -1816,7 +1812,6 @@
|
|
|
1816
1812
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1817
1813
|
font-size: 14px !important;
|
|
1818
1814
|
height: 20px;
|
|
1819
|
-
margin-top: 1px;
|
|
1820
1815
|
width: 20px;
|
|
1821
1816
|
}
|
|
1822
1817
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1900,7 +1895,7 @@
|
|
|
1900
1895
|
}
|
|
1901
1896
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1902
1897
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1903
|
-
margin: -
|
|
1898
|
+
margin: -23px -5px !important;
|
|
1904
1899
|
}
|
|
1905
1900
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1906
1901
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2297,6 +2292,7 @@
|
|
|
2297
2292
|
|
|
2298
2293
|
.e-pivot-formatting-dialog {
|
|
2299
2294
|
max-height: 480px !important;
|
|
2295
|
+
min-width: 645px !important;
|
|
2300
2296
|
width: 645px !important;
|
|
2301
2297
|
}
|
|
2302
2298
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2311,7 +2307,6 @@
|
|
|
2311
2307
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2312
2308
|
padding-bottom: 14px;
|
|
2313
2309
|
padding-right: 18px;
|
|
2314
|
-
white-space: nowrap;
|
|
2315
2310
|
}
|
|
2316
2311
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2317
2312
|
vertical-align: bottom;
|
|
@@ -2404,9 +2399,6 @@
|
|
|
2404
2399
|
min-width: 320px !important;
|
|
2405
2400
|
width: 100% !important;
|
|
2406
2401
|
}
|
|
2407
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2408
|
-
width: 100% !important;
|
|
2409
|
-
}
|
|
2410
2402
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2411
2403
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2412
2404
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2451,6 +2443,7 @@
|
|
|
2451
2443
|
|
|
2452
2444
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2453
2445
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2446
|
+
min-width: 706px !important;
|
|
2454
2447
|
width: 706px !important;
|
|
2455
2448
|
}
|
|
2456
2449
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2842,7 +2835,7 @@
|
|
|
2842
2835
|
|
|
2843
2836
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2844
2837
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2845
|
-
max-height:
|
|
2838
|
+
max-height: 590px !important;
|
|
2846
2839
|
min-width: 401px !important;
|
|
2847
2840
|
}
|
|
2848
2841
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2885,7 +2878,7 @@
|
|
|
2885
2878
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2886
2879
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2887
2880
|
max-height: 750px !important;
|
|
2888
|
-
min-width: 580px
|
|
2881
|
+
min-width: 580px;
|
|
2889
2882
|
}
|
|
2890
2883
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2891
2884
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4310,7 +4303,7 @@
|
|
|
4310
4303
|
height: 261px;
|
|
4311
4304
|
}
|
|
4312
4305
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4313
|
-
|
|
4306
|
+
height: 540px;
|
|
4314
4307
|
}
|
|
4315
4308
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4316
4309
|
height: 369px;
|
|
@@ -4502,11 +4495,6 @@
|
|
|
4502
4495
|
background-color: transparent;
|
|
4503
4496
|
color: #dadada;
|
|
4504
4497
|
}
|
|
4505
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4506
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4507
|
-
height: 210px;
|
|
4508
|
-
overflow: auto;
|
|
4509
|
-
}
|
|
4510
4498
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4511
4499
|
display: -ms-flexbox;
|
|
4512
4500
|
display: flex;
|
|
@@ -5412,8 +5400,8 @@
|
|
|
5412
5400
|
}
|
|
5413
5401
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5414
5402
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5403
|
+
height: 565px !important;
|
|
5415
5404
|
max-height: 600px !important;
|
|
5416
|
-
min-height: 570px !important;
|
|
5417
5405
|
}
|
|
5418
5406
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5419
5407
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5430,8 +5418,4 @@
|
|
|
5430
5418
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5431
5419
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5432
5420
|
height: 165px !important;
|
|
5433
|
-
}
|
|
5434
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5435
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5436
|
-
max-height: 164px;
|
|
5437
5421
|
}
|
package/styles/fabric.css
CHANGED
|
@@ -965,6 +965,7 @@
|
|
|
965
965
|
}
|
|
966
966
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
967
967
|
font-size: 12px !important;
|
|
968
|
+
padding: 3px 4px 4px 4px !important;
|
|
968
969
|
}
|
|
969
970
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
970
971
|
margin: -10px 0 !important;
|
|
@@ -1004,6 +1005,11 @@
|
|
|
1004
1005
|
.e-pivotview.sf-pivotview .e-spinner-pane.e-pivot-outer-spinner .e-spinner-inner {
|
|
1005
1006
|
visibility: hidden !important;
|
|
1006
1007
|
}
|
|
1008
|
+
.e-pivotview .e-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1009
|
+
.e-pivotview .e-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1010
|
+
text-overflow: ellipsis;
|
|
1011
|
+
white-space: nowrap;
|
|
1012
|
+
}
|
|
1007
1013
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1008
1014
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1009
1015
|
padding-left: 8px !important;
|
|
@@ -1463,7 +1469,6 @@
|
|
|
1463
1469
|
width: 18px;
|
|
1464
1470
|
}
|
|
1465
1471
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-sort.e-descend {
|
|
1466
|
-
margin-top: 3px;
|
|
1467
1472
|
transform: rotateX(180deg);
|
|
1468
1473
|
}
|
|
1469
1474
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button .e-dropdown-icon {
|
|
@@ -1636,12 +1641,6 @@
|
|
|
1636
1641
|
.e-pivotview.e-device .e-grouping-bar .e-pivot-button {
|
|
1637
1642
|
line-height: 1em !important;
|
|
1638
1643
|
}
|
|
1639
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-dropdown-icon,
|
|
1640
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-pv-filtered,
|
|
1641
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-remove,
|
|
1642
|
-
.e-pivotview.e-device .e-grouping-bar .e-pivot-button .e-sort {
|
|
1643
|
-
margin-top: 2px !important;
|
|
1644
|
-
}
|
|
1645
1644
|
.e-pivotview.e-device .e-grouping-bar .e-group-all-fields .e-pvt-btn-div .e-pivot-button {
|
|
1646
1645
|
max-width: 155px;
|
|
1647
1646
|
}
|
|
@@ -1652,9 +1651,6 @@
|
|
|
1652
1651
|
.e-pivotview.e-device .e-grouping-bar .e-group-columns .e-pvt-btn-div .e-pivot-button {
|
|
1653
1652
|
max-width: 200px;
|
|
1654
1653
|
}
|
|
1655
|
-
.e-pivotview.e-device .e-drillthrough-dialog {
|
|
1656
|
-
width: 100% !important;
|
|
1657
|
-
}
|
|
1658
1654
|
.e-pivotview.e-device .e-group-row .e-group-rows .e-pvt-btn-div .e-indent-div {
|
|
1659
1655
|
width: 0 !important;
|
|
1660
1656
|
}
|
|
@@ -1814,7 +1810,6 @@
|
|
|
1814
1810
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
1815
1811
|
font-size: 14px !important;
|
|
1816
1812
|
height: 20px;
|
|
1817
|
-
margin-top: 1px;
|
|
1818
1813
|
width: 20px;
|
|
1819
1814
|
}
|
|
1820
1815
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -1898,7 +1893,7 @@
|
|
|
1898
1893
|
}
|
|
1899
1894
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
1900
1895
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
1901
|
-
margin: -
|
|
1896
|
+
margin: -23px -5px !important;
|
|
1902
1897
|
}
|
|
1903
1898
|
.e-bigger .e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1904
1899
|
.e-bigger .e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv,
|
|
@@ -2294,6 +2289,7 @@
|
|
|
2294
2289
|
|
|
2295
2290
|
.e-pivot-formatting-dialog {
|
|
2296
2291
|
max-height: 480px !important;
|
|
2292
|
+
min-width: 645px !important;
|
|
2297
2293
|
width: 645px !important;
|
|
2298
2294
|
}
|
|
2299
2295
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -2308,7 +2304,6 @@
|
|
|
2308
2304
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
2309
2305
|
padding-bottom: 14px;
|
|
2310
2306
|
padding-right: 18px;
|
|
2311
|
-
white-space: nowrap;
|
|
2312
2307
|
}
|
|
2313
2308
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
2314
2309
|
vertical-align: bottom;
|
|
@@ -2401,9 +2396,6 @@
|
|
|
2401
2396
|
min-width: 320px !important;
|
|
2402
2397
|
width: 100% !important;
|
|
2403
2398
|
}
|
|
2404
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
2405
|
-
width: 100% !important;
|
|
2406
|
-
}
|
|
2407
2399
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
2408
2400
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
2409
2401
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -2448,6 +2440,7 @@
|
|
|
2448
2440
|
|
|
2449
2441
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2450
2442
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2443
|
+
min-width: 706px !important;
|
|
2451
2444
|
width: 706px !important;
|
|
2452
2445
|
}
|
|
2453
2446
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -2839,7 +2832,7 @@
|
|
|
2839
2832
|
|
|
2840
2833
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
2841
2834
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
2842
|
-
max-height:
|
|
2835
|
+
max-height: 590px !important;
|
|
2843
2836
|
min-width: 401px !important;
|
|
2844
2837
|
}
|
|
2845
2838
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -2882,7 +2875,7 @@
|
|
|
2882
2875
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
2883
2876
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
2884
2877
|
max-height: 750px !important;
|
|
2885
|
-
min-width: 580px
|
|
2878
|
+
min-width: 580px;
|
|
2886
2879
|
}
|
|
2887
2880
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
2888
2881
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -4307,7 +4300,7 @@
|
|
|
4307
4300
|
height: 261px;
|
|
4308
4301
|
}
|
|
4309
4302
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
4310
|
-
|
|
4303
|
+
height: 540px;
|
|
4311
4304
|
}
|
|
4312
4305
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
4313
4306
|
height: 369px;
|
|
@@ -4499,11 +4492,6 @@
|
|
|
4499
4492
|
background-color: transparent;
|
|
4500
4493
|
color: #333;
|
|
4501
4494
|
}
|
|
4502
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
4503
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
4504
|
-
height: 210px;
|
|
4505
|
-
overflow: auto;
|
|
4506
|
-
}
|
|
4507
4495
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
4508
4496
|
display: -ms-flexbox;
|
|
4509
4497
|
display: flex;
|
|
@@ -5409,8 +5397,8 @@
|
|
|
5409
5397
|
}
|
|
5410
5398
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
5411
5399
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
5400
|
+
height: 565px !important;
|
|
5412
5401
|
max-height: 600px !important;
|
|
5413
|
-
min-height: 575px !important;
|
|
5414
5402
|
}
|
|
5415
5403
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
5416
5404
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -5427,8 +5415,4 @@
|
|
|
5427
5415
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
5428
5416
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
5429
5417
|
height: 165px !important;
|
|
5430
|
-
}
|
|
5431
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
5432
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
5433
|
-
max-height: 166px;
|
|
5434
5418
|
}
|