@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
|
@@ -320,6 +320,7 @@
|
|
|
320
320
|
|
|
321
321
|
.e-pivot-formatting-dialog {
|
|
322
322
|
max-height: 480px !important;
|
|
323
|
+
min-width: 625px !important;
|
|
323
324
|
width: 625px !important;
|
|
324
325
|
}
|
|
325
326
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -334,7 +335,6 @@
|
|
|
334
335
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
335
336
|
padding-bottom: 14px;
|
|
336
337
|
padding-right: 18px;
|
|
337
|
-
white-space: nowrap;
|
|
338
338
|
}
|
|
339
339
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
340
340
|
vertical-align: bottom;
|
|
@@ -427,9 +427,6 @@
|
|
|
427
427
|
min-width: 320px !important;
|
|
428
428
|
width: 100% !important;
|
|
429
429
|
}
|
|
430
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
431
|
-
width: 100% !important;
|
|
432
|
-
}
|
|
433
430
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
434
431
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
435
432
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -474,6 +471,7 @@
|
|
|
474
471
|
|
|
475
472
|
.e-bigger.e-pivot-formatting-dialog,
|
|
476
473
|
.e-bigger .e-pivot-formatting-dialog {
|
|
474
|
+
min-width: 670px !important;
|
|
477
475
|
width: 670px !important;
|
|
478
476
|
}
|
|
479
477
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -865,7 +863,7 @@
|
|
|
865
863
|
|
|
866
864
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
867
865
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
868
|
-
max-height:
|
|
866
|
+
max-height: 590px !important;
|
|
869
867
|
min-width: 401px !important;
|
|
870
868
|
}
|
|
871
869
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -908,7 +906,7 @@
|
|
|
908
906
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
909
907
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
910
908
|
max-height: 750px !important;
|
|
911
|
-
min-width: 580px
|
|
909
|
+
min-width: 580px;
|
|
912
910
|
}
|
|
913
911
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
914
912
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2333,7 +2331,7 @@
|
|
|
2333
2331
|
height: 261px;
|
|
2334
2332
|
}
|
|
2335
2333
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2336
|
-
|
|
2334
|
+
height: 540px;
|
|
2337
2335
|
}
|
|
2338
2336
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2339
2337
|
height: 369px;
|
|
@@ -2525,11 +2523,6 @@
|
|
|
2525
2523
|
background-color: transparent;
|
|
2526
2524
|
color: #fff;
|
|
2527
2525
|
}
|
|
2528
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2529
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2530
|
-
height: 210px;
|
|
2531
|
-
overflow: auto;
|
|
2532
|
-
}
|
|
2533
2526
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2534
2527
|
display: -ms-flexbox;
|
|
2535
2528
|
display: flex;
|
|
@@ -3435,8 +3428,8 @@
|
|
|
3435
3428
|
}
|
|
3436
3429
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3437
3430
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3431
|
+
height: 565px !important;
|
|
3438
3432
|
max-height: 600px !important;
|
|
3439
|
-
min-height: 580px !important;
|
|
3440
3433
|
}
|
|
3441
3434
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3442
3435
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3453,8 +3446,4 @@
|
|
|
3453
3446
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3454
3447
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3455
3448
|
height: 165px !important;
|
|
3456
|
-
}
|
|
3457
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3458
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3459
|
-
max-height: 190px;
|
|
3460
3449
|
}
|
|
@@ -318,6 +318,7 @@
|
|
|
318
318
|
|
|
319
319
|
.e-pivot-formatting-dialog {
|
|
320
320
|
max-height: 480px !important;
|
|
321
|
+
min-width: 625px !important;
|
|
321
322
|
width: 625px !important;
|
|
322
323
|
}
|
|
323
324
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -332,7 +333,6 @@
|
|
|
332
333
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
333
334
|
padding-bottom: 14px;
|
|
334
335
|
padding-right: 18px;
|
|
335
|
-
white-space: nowrap;
|
|
336
336
|
}
|
|
337
337
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
338
338
|
vertical-align: bottom;
|
|
@@ -425,9 +425,6 @@
|
|
|
425
425
|
min-width: 320px !important;
|
|
426
426
|
width: 100% !important;
|
|
427
427
|
}
|
|
428
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
429
|
-
width: 100% !important;
|
|
430
|
-
}
|
|
431
428
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
433
430
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -472,6 +469,7 @@
|
|
|
472
469
|
|
|
473
470
|
.e-bigger.e-pivot-formatting-dialog,
|
|
474
471
|
.e-bigger .e-pivot-formatting-dialog {
|
|
472
|
+
min-width: 670px !important;
|
|
475
473
|
width: 670px !important;
|
|
476
474
|
}
|
|
477
475
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -863,7 +861,7 @@
|
|
|
863
861
|
|
|
864
862
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
865
863
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
866
|
-
max-height:
|
|
864
|
+
max-height: 590px !important;
|
|
867
865
|
min-width: 401px !important;
|
|
868
866
|
}
|
|
869
867
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -906,7 +904,7 @@
|
|
|
906
904
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
907
905
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
908
906
|
max-height: 750px !important;
|
|
909
|
-
min-width: 580px
|
|
907
|
+
min-width: 580px;
|
|
910
908
|
}
|
|
911
909
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
912
910
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2331,7 +2329,7 @@
|
|
|
2331
2329
|
height: 261px;
|
|
2332
2330
|
}
|
|
2333
2331
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2334
|
-
|
|
2332
|
+
height: 540px;
|
|
2335
2333
|
}
|
|
2336
2334
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2337
2335
|
height: 369px;
|
|
@@ -2523,11 +2521,6 @@
|
|
|
2523
2521
|
background-color: transparent;
|
|
2524
2522
|
color: #333;
|
|
2525
2523
|
}
|
|
2526
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2527
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2528
|
-
height: 210px;
|
|
2529
|
-
overflow: auto;
|
|
2530
|
-
}
|
|
2531
2524
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2532
2525
|
display: -ms-flexbox;
|
|
2533
2526
|
display: flex;
|
|
@@ -3433,8 +3426,8 @@
|
|
|
3433
3426
|
}
|
|
3434
3427
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3435
3428
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3429
|
+
height: 565px !important;
|
|
3436
3430
|
max-height: 600px !important;
|
|
3437
|
-
min-height: 582px !important;
|
|
3438
3431
|
}
|
|
3439
3432
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3440
3433
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3451,8 +3444,4 @@
|
|
|
3451
3444
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3452
3445
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3453
3446
|
height: 165px !important;
|
|
3454
|
-
}
|
|
3455
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3456
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3457
|
-
max-height: 176px;
|
|
3458
3447
|
}
|
|
@@ -318,6 +318,7 @@
|
|
|
318
318
|
|
|
319
319
|
.e-pivot-formatting-dialog {
|
|
320
320
|
max-height: 480px !important;
|
|
321
|
+
min-width: 625px !important;
|
|
321
322
|
width: 625px !important;
|
|
322
323
|
}
|
|
323
324
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -335,7 +336,6 @@
|
|
|
335
336
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
336
337
|
padding-bottom: 14px;
|
|
337
338
|
padding-right: 18px;
|
|
338
|
-
white-space: nowrap;
|
|
339
339
|
}
|
|
340
340
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
341
341
|
vertical-align: bottom;
|
|
@@ -436,9 +436,6 @@
|
|
|
436
436
|
min-width: 320px !important;
|
|
437
437
|
width: 100% !important;
|
|
438
438
|
}
|
|
439
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
440
|
-
width: 100% !important;
|
|
441
|
-
}
|
|
442
439
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
443
440
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
444
441
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -483,6 +480,7 @@
|
|
|
483
480
|
|
|
484
481
|
.e-bigger.e-pivot-formatting-dialog,
|
|
485
482
|
.e-bigger .e-pivot-formatting-dialog {
|
|
483
|
+
min-width: 670px !important;
|
|
486
484
|
width: 670px !important;
|
|
487
485
|
}
|
|
488
486
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -878,7 +876,7 @@
|
|
|
878
876
|
|
|
879
877
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
880
878
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
881
|
-
max-height:
|
|
879
|
+
max-height: 590px !important;
|
|
882
880
|
min-width: 401px !important;
|
|
883
881
|
}
|
|
884
882
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -921,7 +919,7 @@
|
|
|
921
919
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
922
920
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
923
921
|
max-height: 750px !important;
|
|
924
|
-
min-width: 580px
|
|
922
|
+
min-width: 580px;
|
|
925
923
|
}
|
|
926
924
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
927
925
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2399,7 +2397,7 @@
|
|
|
2399
2397
|
height: 261px;
|
|
2400
2398
|
}
|
|
2401
2399
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2402
|
-
|
|
2400
|
+
height: 540px;
|
|
2403
2401
|
}
|
|
2404
2402
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2405
2403
|
height: 369px;
|
|
@@ -2592,11 +2590,6 @@
|
|
|
2592
2590
|
background-color: transparent;
|
|
2593
2591
|
color: #333;
|
|
2594
2592
|
}
|
|
2595
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2596
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2597
|
-
height: 210px;
|
|
2598
|
-
overflow: auto;
|
|
2599
|
-
}
|
|
2600
2593
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2601
2594
|
display: -ms-flexbox;
|
|
2602
2595
|
display: flex;
|
|
@@ -3527,8 +3520,8 @@
|
|
|
3527
3520
|
}
|
|
3528
3521
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3529
3522
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3523
|
+
height: 566px !important;
|
|
3530
3524
|
max-height: 600px !important;
|
|
3531
|
-
min-height: 578px !important;
|
|
3532
3525
|
}
|
|
3533
3526
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3534
3527
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3545,8 +3538,4 @@
|
|
|
3545
3538
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3546
3539
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3547
3540
|
height: 161px !important;
|
|
3548
|
-
}
|
|
3549
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3550
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3551
|
-
max-height: 177px;
|
|
3552
3541
|
}
|
|
@@ -317,6 +317,7 @@
|
|
|
317
317
|
|
|
318
318
|
.e-pivot-formatting-dialog {
|
|
319
319
|
max-height: 480px !important;
|
|
320
|
+
min-width: 628px !important;
|
|
320
321
|
width: 628px !important;
|
|
321
322
|
}
|
|
322
323
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,7 +332,6 @@
|
|
|
331
332
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
333
|
padding-bottom: 14px;
|
|
333
334
|
padding-right: 18px;
|
|
334
|
-
white-space: nowrap;
|
|
335
335
|
padding-right: 8px;
|
|
336
336
|
}
|
|
337
337
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
@@ -430,9 +430,6 @@
|
|
|
430
430
|
min-width: 320px !important;
|
|
431
431
|
width: 100% !important;
|
|
432
432
|
}
|
|
433
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
434
|
-
width: 100% !important;
|
|
435
|
-
}
|
|
436
433
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
437
434
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
438
435
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -477,6 +474,7 @@
|
|
|
477
474
|
|
|
478
475
|
.e-bigger.e-pivot-formatting-dialog,
|
|
479
476
|
.e-bigger .e-pivot-formatting-dialog {
|
|
477
|
+
min-width: 680px !important;
|
|
480
478
|
width: 680px !important;
|
|
481
479
|
}
|
|
482
480
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -873,7 +871,7 @@
|
|
|
873
871
|
|
|
874
872
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
875
873
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
876
|
-
max-height:
|
|
874
|
+
max-height: 590px !important;
|
|
877
875
|
min-width: 401px !important;
|
|
878
876
|
}
|
|
879
877
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -921,7 +919,7 @@
|
|
|
921
919
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
922
920
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
923
921
|
max-height: 750px !important;
|
|
924
|
-
min-width: 580px
|
|
922
|
+
min-width: 580px;
|
|
925
923
|
}
|
|
926
924
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
927
925
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2369,7 +2367,7 @@
|
|
|
2369
2367
|
height: 261px;
|
|
2370
2368
|
}
|
|
2371
2369
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2372
|
-
|
|
2370
|
+
height: 540px;
|
|
2373
2371
|
}
|
|
2374
2372
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2375
2373
|
height: 369px;
|
|
@@ -2561,11 +2559,6 @@
|
|
|
2561
2559
|
background-color: transparent;
|
|
2562
2560
|
color: #ced4da;
|
|
2563
2561
|
}
|
|
2564
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2565
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2566
|
-
height: 210px;
|
|
2567
|
-
overflow: auto;
|
|
2568
|
-
}
|
|
2569
2562
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2570
2563
|
display: -ms-flexbox;
|
|
2571
2564
|
display: flex;
|
|
@@ -3478,8 +3471,8 @@
|
|
|
3478
3471
|
}
|
|
3479
3472
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3480
3473
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3474
|
+
height: 565px !important;
|
|
3481
3475
|
max-height: 600px !important;
|
|
3482
|
-
min-height: 580px !important;
|
|
3483
3476
|
}
|
|
3484
3477
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3485
3478
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3496,8 +3489,4 @@
|
|
|
3496
3489
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3497
3490
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3498
3491
|
height: 165px !important;
|
|
3499
|
-
}
|
|
3500
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3501
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3502
|
-
max-height: 187px;
|
|
3503
3492
|
}
|
|
@@ -317,6 +317,7 @@
|
|
|
317
317
|
|
|
318
318
|
.e-pivot-formatting-dialog {
|
|
319
319
|
max-height: 480px !important;
|
|
320
|
+
min-width: 628px !important;
|
|
320
321
|
width: 628px !important;
|
|
321
322
|
}
|
|
322
323
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -331,7 +332,6 @@
|
|
|
331
332
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
332
333
|
padding-bottom: 14px;
|
|
333
334
|
padding-right: 18px;
|
|
334
|
-
white-space: nowrap;
|
|
335
335
|
padding-right: 8px;
|
|
336
336
|
}
|
|
337
337
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
@@ -430,9 +430,6 @@
|
|
|
430
430
|
min-width: 320px !important;
|
|
431
431
|
width: 100% !important;
|
|
432
432
|
}
|
|
433
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
434
|
-
width: 100% !important;
|
|
435
|
-
}
|
|
436
433
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
437
434
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
438
435
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -477,6 +474,7 @@
|
|
|
477
474
|
|
|
478
475
|
.e-bigger.e-pivot-formatting-dialog,
|
|
479
476
|
.e-bigger .e-pivot-formatting-dialog {
|
|
477
|
+
min-width: 680px !important;
|
|
480
478
|
width: 680px !important;
|
|
481
479
|
}
|
|
482
480
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -873,7 +871,7 @@
|
|
|
873
871
|
|
|
874
872
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
875
873
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
876
|
-
max-height:
|
|
874
|
+
max-height: 590px !important;
|
|
877
875
|
min-width: 401px !important;
|
|
878
876
|
}
|
|
879
877
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -921,7 +919,7 @@
|
|
|
921
919
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
922
920
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
923
921
|
max-height: 750px !important;
|
|
924
|
-
min-width: 580px
|
|
922
|
+
min-width: 580px;
|
|
925
923
|
}
|
|
926
924
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
927
925
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2369,7 +2367,7 @@
|
|
|
2369
2367
|
height: 261px;
|
|
2370
2368
|
}
|
|
2371
2369
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2372
|
-
|
|
2370
|
+
height: 540px;
|
|
2373
2371
|
}
|
|
2374
2372
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2375
2373
|
height: 369px;
|
|
@@ -2561,11 +2559,6 @@
|
|
|
2561
2559
|
background-color: transparent;
|
|
2562
2560
|
color: #495057;
|
|
2563
2561
|
}
|
|
2564
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2565
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2566
|
-
height: 210px;
|
|
2567
|
-
overflow: auto;
|
|
2568
|
-
}
|
|
2569
2562
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2570
2563
|
display: -ms-flexbox;
|
|
2571
2564
|
display: flex;
|
|
@@ -3478,8 +3471,8 @@
|
|
|
3478
3471
|
}
|
|
3479
3472
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3480
3473
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3474
|
+
height: 565px !important;
|
|
3481
3475
|
max-height: 600px !important;
|
|
3482
|
-
min-height: 580px !important;
|
|
3483
3476
|
}
|
|
3484
3477
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3485
3478
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3496,8 +3489,4 @@
|
|
|
3496
3489
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3497
3490
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3498
3491
|
height: 165px !important;
|
|
3499
|
-
}
|
|
3500
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3501
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3502
|
-
max-height: 187px;
|
|
3503
3492
|
}
|
|
@@ -319,6 +319,7 @@
|
|
|
319
319
|
|
|
320
320
|
.e-pivot-formatting-dialog {
|
|
321
321
|
max-height: 480px !important;
|
|
322
|
+
min-width: 645px !important;
|
|
322
323
|
width: 645px !important;
|
|
323
324
|
}
|
|
324
325
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -333,7 +334,6 @@
|
|
|
333
334
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
334
335
|
padding-bottom: 14px;
|
|
335
336
|
padding-right: 18px;
|
|
336
|
-
white-space: nowrap;
|
|
337
337
|
}
|
|
338
338
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
339
339
|
vertical-align: bottom;
|
|
@@ -426,9 +426,6 @@
|
|
|
426
426
|
min-width: 320px !important;
|
|
427
427
|
width: 100% !important;
|
|
428
428
|
}
|
|
429
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
430
|
-
width: 100% !important;
|
|
431
|
-
}
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
433
430
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
434
431
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -473,6 +470,7 @@
|
|
|
473
470
|
|
|
474
471
|
.e-bigger.e-pivot-formatting-dialog,
|
|
475
472
|
.e-bigger .e-pivot-formatting-dialog {
|
|
473
|
+
min-width: 706px !important;
|
|
476
474
|
width: 706px !important;
|
|
477
475
|
}
|
|
478
476
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -864,7 +862,7 @@
|
|
|
864
862
|
|
|
865
863
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
866
864
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
867
|
-
max-height:
|
|
865
|
+
max-height: 590px !important;
|
|
868
866
|
min-width: 401px !important;
|
|
869
867
|
}
|
|
870
868
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -907,7 +905,7 @@
|
|
|
907
905
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
908
906
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
909
907
|
max-height: 750px !important;
|
|
910
|
-
min-width: 580px
|
|
908
|
+
min-width: 580px;
|
|
911
909
|
}
|
|
912
910
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
913
911
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2332,7 +2330,7 @@
|
|
|
2332
2330
|
height: 261px;
|
|
2333
2331
|
}
|
|
2334
2332
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2335
|
-
|
|
2333
|
+
height: 540px;
|
|
2336
2334
|
}
|
|
2337
2335
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2338
2336
|
height: 369px;
|
|
@@ -2524,11 +2522,6 @@
|
|
|
2524
2522
|
background-color: transparent;
|
|
2525
2523
|
color: #dadada;
|
|
2526
2524
|
}
|
|
2527
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2528
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2529
|
-
height: 210px;
|
|
2530
|
-
overflow: auto;
|
|
2531
|
-
}
|
|
2532
2525
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2533
2526
|
display: -ms-flexbox;
|
|
2534
2527
|
display: flex;
|
|
@@ -3434,8 +3427,8 @@
|
|
|
3434
3427
|
}
|
|
3435
3428
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3436
3429
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3430
|
+
height: 565px !important;
|
|
3437
3431
|
max-height: 600px !important;
|
|
3438
|
-
min-height: 570px !important;
|
|
3439
3432
|
}
|
|
3440
3433
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3441
3434
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3452,8 +3445,4 @@
|
|
|
3452
3445
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3453
3446
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3454
3447
|
height: 165px !important;
|
|
3455
|
-
}
|
|
3456
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3457
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3458
|
-
max-height: 164px;
|
|
3459
3448
|
}
|
|
@@ -318,6 +318,7 @@
|
|
|
318
318
|
|
|
319
319
|
.e-pivot-formatting-dialog {
|
|
320
320
|
max-height: 480px !important;
|
|
321
|
+
min-width: 645px !important;
|
|
321
322
|
width: 645px !important;
|
|
322
323
|
}
|
|
323
324
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
@@ -332,7 +333,6 @@
|
|
|
332
333
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(even) td {
|
|
333
334
|
padding-bottom: 14px;
|
|
334
335
|
padding-right: 18px;
|
|
335
|
-
white-space: nowrap;
|
|
336
336
|
}
|
|
337
337
|
.e-pivot-formatting-dialog .e-format-value-span {
|
|
338
338
|
vertical-align: bottom;
|
|
@@ -425,9 +425,6 @@
|
|
|
425
425
|
min-width: 320px !important;
|
|
426
426
|
width: 100% !important;
|
|
427
427
|
}
|
|
428
|
-
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
429
|
-
width: 100% !important;
|
|
430
|
-
}
|
|
431
428
|
.e-pivot-formatting-dialog.e-device .e-format-value1,
|
|
432
429
|
.e-pivot-formatting-dialog.e-device .e-format-value2,
|
|
433
430
|
.e-pivot-formatting-dialog.e-device .e-format-value-span {
|
|
@@ -472,6 +469,7 @@
|
|
|
472
469
|
|
|
473
470
|
.e-bigger.e-pivot-formatting-dialog,
|
|
474
471
|
.e-bigger .e-pivot-formatting-dialog {
|
|
472
|
+
min-width: 706px !important;
|
|
475
473
|
width: 706px !important;
|
|
476
474
|
}
|
|
477
475
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
@@ -863,7 +861,7 @@
|
|
|
863
861
|
|
|
864
862
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
865
863
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
866
|
-
max-height:
|
|
864
|
+
max-height: 590px !important;
|
|
867
865
|
min-width: 401px !important;
|
|
868
866
|
}
|
|
869
867
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
@@ -906,7 +904,7 @@
|
|
|
906
904
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div,
|
|
907
905
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div {
|
|
908
906
|
max-height: 750px !important;
|
|
909
|
-
min-width: 580px
|
|
907
|
+
min-width: 580px;
|
|
910
908
|
}
|
|
911
909
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
912
910
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
@@ -2331,7 +2329,7 @@
|
|
|
2331
2329
|
height: 261px;
|
|
2332
2330
|
}
|
|
2333
2331
|
.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
2334
|
-
|
|
2332
|
+
height: 540px;
|
|
2335
2333
|
}
|
|
2336
2334
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2337
2335
|
height: 369px;
|
|
@@ -2523,11 +2521,6 @@
|
|
|
2523
2521
|
background-color: transparent;
|
|
2524
2522
|
color: #333;
|
|
2525
2523
|
}
|
|
2526
|
-
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
2527
|
-
.e-pivotfieldlist-container.e-device .e-member-editor-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
2528
|
-
height: 210px;
|
|
2529
|
-
overflow: auto;
|
|
2530
|
-
}
|
|
2531
2524
|
.e-pivotfieldlist-container.e-device .e-title-mobile-header {
|
|
2532
2525
|
display: -ms-flexbox;
|
|
2533
2526
|
display: flex;
|
|
@@ -3433,8 +3426,8 @@
|
|
|
3433
3426
|
}
|
|
3434
3427
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup,
|
|
3435
3428
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup {
|
|
3429
|
+
height: 565px !important;
|
|
3436
3430
|
max-height: 600px !important;
|
|
3437
|
-
min-height: 575px !important;
|
|
3438
3431
|
}
|
|
3439
3432
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container,
|
|
3440
3433
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
@@ -3451,8 +3444,4 @@
|
|
|
3451
3444
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content,
|
|
3452
3445
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-axis-table .e-axis-content {
|
|
3453
3446
|
height: 165px !important;
|
|
3454
|
-
}
|
|
3455
|
-
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3456
|
-
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3457
|
-
max-height: 166px;
|
|
3458
3447
|
}
|