@syncfusion/ej2-react-pivotview 20.3.59 → 20.4.40
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 +57 -0
- package/README.md +119 -37
- package/diConfig.json +50 -10
- package/dist/ej2-react-pivotview.min.js +0 -9
- package/dist/ej2-react-pivotview.umd.min.js +0 -9
- package/package.json +108 -66
- package/styles/bootstrap-dark.css +15 -4
- package/styles/bootstrap.css +16 -5
- package/styles/bootstrap4.css +24 -7
- package/styles/bootstrap5-dark.css +23 -10
- package/styles/bootstrap5.css +23 -10
- package/styles/fabric-dark.css +39 -8
- package/styles/fabric.css +42 -8
- package/styles/fluent-dark.css +44 -20
- package/styles/fluent.css +44 -20
- package/styles/highcontrast-light.css +29 -6
- package/styles/highcontrast.css +29 -6
- package/styles/material-dark.css +19 -4
- package/styles/material.css +25 -4
- package/styles/pivotfieldlist/bootstrap-dark.css +8 -2
- package/styles/pivotfieldlist/bootstrap.css +9 -3
- package/styles/pivotfieldlist/bootstrap4.css +9 -3
- package/styles/pivotfieldlist/bootstrap5-dark.css +15 -3
- package/styles/pivotfieldlist/bootstrap5.css +15 -3
- package/styles/pivotfieldlist/fabric-dark.css +19 -4
- package/styles/pivotfieldlist/fabric.css +19 -4
- package/styles/pivotfieldlist/fluent-dark.css +19 -7
- package/styles/pivotfieldlist/fluent.css +19 -7
- package/styles/pivotfieldlist/highcontrast-light.css +19 -4
- package/styles/pivotfieldlist/highcontrast.css +19 -4
- package/styles/pivotfieldlist/material-dark.css +12 -2
- package/styles/pivotfieldlist/material.css +12 -2
- package/styles/pivotfieldlist/tailwind-dark.css +15 -3
- package/styles/pivotfieldlist/tailwind.css +15 -3
- package/styles/pivotview/bootstrap-dark.css +7 -2
- package/styles/pivotview/bootstrap.css +7 -2
- package/styles/pivotview/bootstrap4.css +15 -4
- package/styles/pivotview/bootstrap5-dark.css +8 -7
- package/styles/pivotview/bootstrap5.css +8 -7
- package/styles/pivotview/fabric-dark.css +20 -4
- package/styles/pivotview/fabric.css +23 -4
- package/styles/pivotview/fluent-dark.css +25 -13
- package/styles/pivotview/fluent.css +25 -13
- package/styles/pivotview/highcontrast-light.css +10 -2
- package/styles/pivotview/highcontrast.css +10 -2
- package/styles/pivotview/material-dark.css +7 -2
- package/styles/pivotview/material.css +13 -2
- package/styles/pivotview/tailwind-dark.css +12 -10
- package/styles/pivotview/tailwind.css +12 -10
- package/styles/tailwind-dark.css +27 -13
- package/styles/tailwind.css +27 -13
|
@@ -558,6 +558,9 @@
|
|
|
558
558
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
559
559
|
background: #d8d8d8;
|
|
560
560
|
}
|
|
561
|
+
.e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
562
|
+
background: #d8d8d8;
|
|
563
|
+
}
|
|
561
564
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
562
565
|
font-size: 16px;
|
|
563
566
|
}
|
|
@@ -894,6 +897,7 @@
|
|
|
894
897
|
}
|
|
895
898
|
.e-pivotview .e-valuescontent {
|
|
896
899
|
padding-right: 8px;
|
|
900
|
+
text-align: right;
|
|
897
901
|
}
|
|
898
902
|
.e-pivotview .e-grid .e-rowcell {
|
|
899
903
|
/* stylelint-disable */
|
|
@@ -934,7 +938,7 @@
|
|
|
934
938
|
}
|
|
935
939
|
.e-pivotview .e-member-editor-dialog,
|
|
936
940
|
.e-pivotview .e-olap-editor-dialog {
|
|
937
|
-
min-height:
|
|
941
|
+
min-height: 350px !important;
|
|
938
942
|
min-width: 350px !important;
|
|
939
943
|
visibility: hidden;
|
|
940
944
|
}
|
|
@@ -1580,7 +1584,7 @@
|
|
|
1580
1584
|
.e-pivotview .e-expand,
|
|
1581
1585
|
.e-pivotview .e-collapse {
|
|
1582
1586
|
cursor: pointer;
|
|
1583
|
-
display: inline;
|
|
1587
|
+
display: inline-block;
|
|
1584
1588
|
height: 18px;
|
|
1585
1589
|
margin-top: 5px;
|
|
1586
1590
|
text-align: center;
|
|
@@ -1931,6 +1935,9 @@
|
|
|
1931
1935
|
margin-left: 0;
|
|
1932
1936
|
margin-right: 7px;
|
|
1933
1937
|
}
|
|
1938
|
+
.e-pivotview.e-rtl .e-valuescontent {
|
|
1939
|
+
text-align: left;
|
|
1940
|
+
}
|
|
1934
1941
|
.e-pivotview.e-rtl .e-group-values,
|
|
1935
1942
|
.e-pivotview.e-rtl .e-group-columns,
|
|
1936
1943
|
.e-pivotview.e-rtl .e-group-filters,
|
|
@@ -2051,6 +2058,7 @@
|
|
|
2051
2058
|
.e-pivottooltip {
|
|
2052
2059
|
border-radius: 4px;
|
|
2053
2060
|
padding: 0 0;
|
|
2061
|
+
text-align: initial;
|
|
2054
2062
|
}
|
|
2055
2063
|
|
|
2056
2064
|
.e-pivottooltip p {
|
|
@@ -3459,6 +3467,7 @@
|
|
|
3459
3467
|
display: inline-table;
|
|
3460
3468
|
height: 100%;
|
|
3461
3469
|
width: 100%;
|
|
3470
|
+
min-width: 265px;
|
|
3462
3471
|
}
|
|
3463
3472
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
3464
3473
|
cursor: move;
|
|
@@ -3482,6 +3491,8 @@
|
|
|
3482
3491
|
cursor: pointer;
|
|
3483
3492
|
font-size: 13px;
|
|
3484
3493
|
margin-top: 3px;
|
|
3494
|
+
padding-left: 0px;
|
|
3495
|
+
padding-right: 0px;
|
|
3485
3496
|
}
|
|
3486
3497
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
3487
3498
|
cursor: auto;
|
|
@@ -3896,6 +3907,9 @@
|
|
|
3896
3907
|
margin-left: 0;
|
|
3897
3908
|
margin-right: 10px;
|
|
3898
3909
|
}
|
|
3910
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
3911
|
+
padding-top: 4px !important;
|
|
3912
|
+
}
|
|
3899
3913
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
3900
3914
|
min-height: 170px;
|
|
3901
3915
|
overflow: auto;
|
|
@@ -4253,15 +4267,19 @@
|
|
|
4253
4267
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container.e-rtl .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
4254
4268
|
margin: 0 6px 0 0;
|
|
4255
4269
|
}
|
|
4270
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div,
|
|
4271
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div {
|
|
4272
|
+
height: 75px !important;
|
|
4273
|
+
}
|
|
4256
4274
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
4257
4275
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
4258
|
-
height:
|
|
4276
|
+
height: 98px !important;
|
|
4259
4277
|
}
|
|
4260
4278
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
4261
4279
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
4262
4280
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
4263
4281
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
4264
|
-
height:
|
|
4282
|
+
height: 200px;
|
|
4265
4283
|
}
|
|
4266
4284
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
4267
4285
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div,
|
|
@@ -4292,6 +4310,11 @@
|
|
|
4292
4310
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
4293
4311
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
4294
4312
|
min-width: 350px !important;
|
|
4313
|
+
height: 427px !important;
|
|
4314
|
+
}
|
|
4315
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter.e-node-limit,
|
|
4316
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter.e-node-limit {
|
|
4317
|
+
height: 440px !important;
|
|
4295
4318
|
}
|
|
4296
4319
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
4297
4320
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -4411,14 +4434,14 @@
|
|
|
4411
4434
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
4412
4435
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
4413
4436
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
4414
|
-
max-height:
|
|
4437
|
+
max-height: 440px !important;
|
|
4415
4438
|
min-width: 370px !important;
|
|
4416
4439
|
}
|
|
4417
4440
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4418
4441
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
4419
4442
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4420
4443
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
4421
|
-
min-height:
|
|
4444
|
+
min-height: 75px !important;
|
|
4422
4445
|
}
|
|
4423
4446
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
4424
4447
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
package/styles/highcontrast.css
CHANGED
|
@@ -558,6 +558,9 @@
|
|
|
558
558
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
559
559
|
background: #262626;
|
|
560
560
|
}
|
|
561
|
+
.e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
562
|
+
background: #262626;
|
|
563
|
+
}
|
|
561
564
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
562
565
|
font-size: 16px;
|
|
563
566
|
}
|
|
@@ -894,6 +897,7 @@
|
|
|
894
897
|
}
|
|
895
898
|
.e-pivotview .e-valuescontent {
|
|
896
899
|
padding-right: 8px;
|
|
900
|
+
text-align: right;
|
|
897
901
|
}
|
|
898
902
|
.e-pivotview .e-grid .e-rowcell {
|
|
899
903
|
/* stylelint-disable */
|
|
@@ -934,7 +938,7 @@
|
|
|
934
938
|
}
|
|
935
939
|
.e-pivotview .e-member-editor-dialog,
|
|
936
940
|
.e-pivotview .e-olap-editor-dialog {
|
|
937
|
-
min-height:
|
|
941
|
+
min-height: 350px !important;
|
|
938
942
|
min-width: 350px !important;
|
|
939
943
|
visibility: hidden;
|
|
940
944
|
}
|
|
@@ -1580,7 +1584,7 @@
|
|
|
1580
1584
|
.e-pivotview .e-expand,
|
|
1581
1585
|
.e-pivotview .e-collapse {
|
|
1582
1586
|
cursor: pointer;
|
|
1583
|
-
display: inline;
|
|
1587
|
+
display: inline-block;
|
|
1584
1588
|
height: 18px;
|
|
1585
1589
|
margin-top: 5px;
|
|
1586
1590
|
text-align: center;
|
|
@@ -1931,6 +1935,9 @@
|
|
|
1931
1935
|
margin-left: 0;
|
|
1932
1936
|
margin-right: 7px;
|
|
1933
1937
|
}
|
|
1938
|
+
.e-pivotview.e-rtl .e-valuescontent {
|
|
1939
|
+
text-align: left;
|
|
1940
|
+
}
|
|
1934
1941
|
.e-pivotview.e-rtl .e-group-values,
|
|
1935
1942
|
.e-pivotview.e-rtl .e-group-columns,
|
|
1936
1943
|
.e-pivotview.e-rtl .e-group-filters,
|
|
@@ -2051,6 +2058,7 @@
|
|
|
2051
2058
|
.e-pivottooltip {
|
|
2052
2059
|
border-radius: 4px;
|
|
2053
2060
|
padding: 0 0;
|
|
2061
|
+
text-align: initial;
|
|
2054
2062
|
}
|
|
2055
2063
|
|
|
2056
2064
|
.e-pivottooltip p {
|
|
@@ -3459,6 +3467,7 @@
|
|
|
3459
3467
|
display: inline-table;
|
|
3460
3468
|
height: 100%;
|
|
3461
3469
|
width: 100%;
|
|
3470
|
+
min-width: 265px;
|
|
3462
3471
|
}
|
|
3463
3472
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
3464
3473
|
cursor: move;
|
|
@@ -3482,6 +3491,8 @@
|
|
|
3482
3491
|
cursor: pointer;
|
|
3483
3492
|
font-size: 13px;
|
|
3484
3493
|
margin-top: 3px;
|
|
3494
|
+
padding-left: 0px;
|
|
3495
|
+
padding-right: 0px;
|
|
3485
3496
|
}
|
|
3486
3497
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
3487
3498
|
cursor: auto;
|
|
@@ -3896,6 +3907,9 @@
|
|
|
3896
3907
|
margin-left: 0;
|
|
3897
3908
|
margin-right: 10px;
|
|
3898
3909
|
}
|
|
3910
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
3911
|
+
padding-top: 4px !important;
|
|
3912
|
+
}
|
|
3899
3913
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
3900
3914
|
min-height: 170px;
|
|
3901
3915
|
overflow: auto;
|
|
@@ -4253,15 +4267,19 @@
|
|
|
4253
4267
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container.e-rtl .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
4254
4268
|
margin: 0 6px 0 0;
|
|
4255
4269
|
}
|
|
4270
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div,
|
|
4271
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div {
|
|
4272
|
+
height: 75px !important;
|
|
4273
|
+
}
|
|
4256
4274
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
4257
4275
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
4258
|
-
height:
|
|
4276
|
+
height: 98px !important;
|
|
4259
4277
|
}
|
|
4260
4278
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
4261
4279
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
4262
4280
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
4263
4281
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
4264
|
-
height:
|
|
4282
|
+
height: 200px;
|
|
4265
4283
|
}
|
|
4266
4284
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
4267
4285
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div,
|
|
@@ -4292,6 +4310,11 @@
|
|
|
4292
4310
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter,
|
|
4293
4311
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter {
|
|
4294
4312
|
min-width: 350px !important;
|
|
4313
|
+
height: 427px !important;
|
|
4314
|
+
}
|
|
4315
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter.e-node-limit,
|
|
4316
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-excel-filter.e-node-limit {
|
|
4317
|
+
height: 440px !important;
|
|
4295
4318
|
}
|
|
4296
4319
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
4297
4320
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-header-content .e-clear-filter-button.e-small,
|
|
@@ -4411,14 +4434,14 @@
|
|
|
4411
4434
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
4412
4435
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
4413
4436
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
4414
|
-
max-height:
|
|
4437
|
+
max-height: 440px !important;
|
|
4415
4438
|
min-width: 370px !important;
|
|
4416
4439
|
}
|
|
4417
4440
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4418
4441
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
4419
4442
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4420
4443
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
4421
|
-
min-height:
|
|
4444
|
+
min-height: 75px !important;
|
|
4422
4445
|
}
|
|
4423
4446
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
4424
4447
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
package/styles/material-dark.css
CHANGED
|
@@ -895,6 +895,7 @@
|
|
|
895
895
|
}
|
|
896
896
|
.e-pivotview .e-valuescontent {
|
|
897
897
|
padding-right: 8px;
|
|
898
|
+
text-align: right;
|
|
898
899
|
}
|
|
899
900
|
.e-pivotview .e-grid .e-rowcell {
|
|
900
901
|
/* stylelint-disable */
|
|
@@ -934,7 +935,7 @@
|
|
|
934
935
|
}
|
|
935
936
|
.e-pivotview .e-member-editor-dialog,
|
|
936
937
|
.e-pivotview .e-olap-editor-dialog {
|
|
937
|
-
min-height:
|
|
938
|
+
min-height: 350px !important;
|
|
938
939
|
min-width: 350px !important;
|
|
939
940
|
visibility: hidden;
|
|
940
941
|
}
|
|
@@ -1581,7 +1582,7 @@
|
|
|
1581
1582
|
.e-pivotview .e-expand,
|
|
1582
1583
|
.e-pivotview .e-collapse {
|
|
1583
1584
|
cursor: pointer;
|
|
1584
|
-
display: inline;
|
|
1585
|
+
display: inline-block;
|
|
1585
1586
|
height: 18px;
|
|
1586
1587
|
margin-top: 5px;
|
|
1587
1588
|
text-align: center;
|
|
@@ -1934,6 +1935,9 @@
|
|
|
1934
1935
|
margin-left: 0;
|
|
1935
1936
|
margin-right: 7px;
|
|
1936
1937
|
}
|
|
1938
|
+
.e-pivotview.e-rtl .e-valuescontent {
|
|
1939
|
+
text-align: left;
|
|
1940
|
+
}
|
|
1937
1941
|
.e-pivotview.e-rtl .e-group-values,
|
|
1938
1942
|
.e-pivotview.e-rtl .e-group-columns,
|
|
1939
1943
|
.e-pivotview.e-rtl .e-group-filters,
|
|
@@ -2054,6 +2058,7 @@
|
|
|
2054
2058
|
.e-pivottooltip {
|
|
2055
2059
|
border-radius: 4px;
|
|
2056
2060
|
padding: 3px 4px;
|
|
2061
|
+
text-align: initial;
|
|
2057
2062
|
}
|
|
2058
2063
|
|
|
2059
2064
|
.e-pivottooltip p {
|
|
@@ -3465,6 +3470,7 @@
|
|
|
3465
3470
|
display: inline-table;
|
|
3466
3471
|
height: 100%;
|
|
3467
3472
|
width: 100%;
|
|
3473
|
+
min-width: 265px;
|
|
3468
3474
|
}
|
|
3469
3475
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
3470
3476
|
cursor: move;
|
|
@@ -3488,6 +3494,8 @@
|
|
|
3488
3494
|
cursor: pointer;
|
|
3489
3495
|
font-size: 13px;
|
|
3490
3496
|
margin-top: 3px;
|
|
3497
|
+
padding-left: 0px;
|
|
3498
|
+
padding-right: 0px;
|
|
3491
3499
|
}
|
|
3492
3500
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
3493
3501
|
cursor: auto;
|
|
@@ -3902,6 +3910,9 @@
|
|
|
3902
3910
|
margin-left: 0;
|
|
3903
3911
|
margin-right: 10px;
|
|
3904
3912
|
}
|
|
3913
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
3914
|
+
padding-top: 4px !important;
|
|
3915
|
+
}
|
|
3905
3916
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
3906
3917
|
min-height: 170px;
|
|
3907
3918
|
overflow: auto;
|
|
@@ -4259,6 +4270,10 @@
|
|
|
4259
4270
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container.e-rtl .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
4260
4271
|
margin: 0 6px 0 0;
|
|
4261
4272
|
}
|
|
4273
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div,
|
|
4274
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div {
|
|
4275
|
+
height: 65px !important;
|
|
4276
|
+
}
|
|
4262
4277
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
4263
4278
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
4264
4279
|
height: 100px !important;
|
|
@@ -4417,14 +4432,14 @@
|
|
|
4417
4432
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
4418
4433
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
4419
4434
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
4420
|
-
max-height:
|
|
4435
|
+
max-height: 440px !important;
|
|
4421
4436
|
min-width: 370px !important;
|
|
4422
4437
|
}
|
|
4423
4438
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4424
4439
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
4425
4440
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4426
4441
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
4427
|
-
min-height:
|
|
4442
|
+
min-height: 75px !important;
|
|
4428
4443
|
}
|
|
4429
4444
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
4430
4445
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
package/styles/material.css
CHANGED
|
@@ -560,6 +560,12 @@
|
|
|
560
560
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
561
561
|
background: #f5f5f5;
|
|
562
562
|
}
|
|
563
|
+
.e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control {
|
|
564
|
+
background: #f5f5f5;
|
|
565
|
+
}
|
|
566
|
+
.e-pivotview .e-pivot-toolbar .e-toolbar-items .e-toolbar-item .e-tbar-btn.e-btn.e-control:hover {
|
|
567
|
+
background: rgba(0, 0, 0, 0.12);
|
|
568
|
+
}
|
|
563
569
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
564
570
|
font-size: 16px;
|
|
565
571
|
}
|
|
@@ -896,6 +902,7 @@
|
|
|
896
902
|
}
|
|
897
903
|
.e-pivotview .e-valuescontent {
|
|
898
904
|
padding-right: 8px;
|
|
905
|
+
text-align: right;
|
|
899
906
|
}
|
|
900
907
|
.e-pivotview .e-grid .e-rowcell {
|
|
901
908
|
/* stylelint-disable */
|
|
@@ -935,7 +942,7 @@
|
|
|
935
942
|
}
|
|
936
943
|
.e-pivotview .e-member-editor-dialog,
|
|
937
944
|
.e-pivotview .e-olap-editor-dialog {
|
|
938
|
-
min-height:
|
|
945
|
+
min-height: 350px !important;
|
|
939
946
|
min-width: 350px !important;
|
|
940
947
|
visibility: hidden;
|
|
941
948
|
}
|
|
@@ -1582,7 +1589,7 @@
|
|
|
1582
1589
|
.e-pivotview .e-expand,
|
|
1583
1590
|
.e-pivotview .e-collapse {
|
|
1584
1591
|
cursor: pointer;
|
|
1585
|
-
display: inline;
|
|
1592
|
+
display: inline-block;
|
|
1586
1593
|
height: 18px;
|
|
1587
1594
|
margin-top: 5px;
|
|
1588
1595
|
text-align: center;
|
|
@@ -1935,6 +1942,9 @@
|
|
|
1935
1942
|
margin-left: 0;
|
|
1936
1943
|
margin-right: 7px;
|
|
1937
1944
|
}
|
|
1945
|
+
.e-pivotview.e-rtl .e-valuescontent {
|
|
1946
|
+
text-align: left;
|
|
1947
|
+
}
|
|
1938
1948
|
.e-pivotview.e-rtl .e-group-values,
|
|
1939
1949
|
.e-pivotview.e-rtl .e-group-columns,
|
|
1940
1950
|
.e-pivotview.e-rtl .e-group-filters,
|
|
@@ -2055,6 +2065,7 @@
|
|
|
2055
2065
|
.e-pivottooltip {
|
|
2056
2066
|
border-radius: 4px;
|
|
2057
2067
|
padding: 3px 4px;
|
|
2068
|
+
text-align: initial;
|
|
2058
2069
|
}
|
|
2059
2070
|
|
|
2060
2071
|
.e-pivottooltip p {
|
|
@@ -3465,6 +3476,7 @@
|
|
|
3465
3476
|
display: inline-table;
|
|
3466
3477
|
height: 100%;
|
|
3467
3478
|
width: 100%;
|
|
3479
|
+
min-width: 265px;
|
|
3468
3480
|
}
|
|
3469
3481
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
3470
3482
|
cursor: move;
|
|
@@ -3488,6 +3500,8 @@
|
|
|
3488
3500
|
cursor: pointer;
|
|
3489
3501
|
font-size: 13px;
|
|
3490
3502
|
margin-top: 3px;
|
|
3503
|
+
padding-left: 0px;
|
|
3504
|
+
padding-right: 0px;
|
|
3491
3505
|
}
|
|
3492
3506
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
3493
3507
|
cursor: auto;
|
|
@@ -3902,6 +3916,9 @@
|
|
|
3902
3916
|
margin-left: 0;
|
|
3903
3917
|
margin-right: 10px;
|
|
3904
3918
|
}
|
|
3919
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
3920
|
+
padding-top: 4px !important;
|
|
3921
|
+
}
|
|
3905
3922
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
3906
3923
|
min-height: 170px;
|
|
3907
3924
|
overflow: auto;
|
|
@@ -4259,6 +4276,10 @@
|
|
|
4259
4276
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container.e-rtl .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
4260
4277
|
margin: 0 6px 0 0;
|
|
4261
4278
|
}
|
|
4279
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div,
|
|
4280
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-node-limit.e-excel-filter .e-excelfilter .e-member-editor-container-outer-div {
|
|
4281
|
+
height: 65px !important;
|
|
4282
|
+
}
|
|
4262
4283
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
4263
4284
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
4264
4285
|
height: 100px !important;
|
|
@@ -4417,14 +4438,14 @@
|
|
|
4417
4438
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
4418
4439
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
4419
4440
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
4420
|
-
max-height:
|
|
4441
|
+
max-height: 440px !important;
|
|
4421
4442
|
min-width: 370px !important;
|
|
4422
4443
|
}
|
|
4423
4444
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4424
4445
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
4425
4446
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
4426
4447
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
4427
|
-
min-height:
|
|
4448
|
+
min-height: 75px !important;
|
|
4428
4449
|
}
|
|
4429
4450
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
4430
4451
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
@@ -779,6 +779,7 @@
|
|
|
779
779
|
display: inline-table;
|
|
780
780
|
height: 100%;
|
|
781
781
|
width: 100%;
|
|
782
|
+
min-width: 265px;
|
|
782
783
|
}
|
|
783
784
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
784
785
|
cursor: move;
|
|
@@ -802,6 +803,8 @@
|
|
|
802
803
|
cursor: pointer;
|
|
803
804
|
font-size: 13px;
|
|
804
805
|
margin-top: 3px;
|
|
806
|
+
padding-left: 0px;
|
|
807
|
+
padding-right: 0px;
|
|
805
808
|
}
|
|
806
809
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
807
810
|
cursor: auto;
|
|
@@ -1216,6 +1219,9 @@
|
|
|
1216
1219
|
margin-left: 0;
|
|
1217
1220
|
margin-right: 10px;
|
|
1218
1221
|
}
|
|
1222
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
1223
|
+
padding-top: 4px !important;
|
|
1224
|
+
}
|
|
1219
1225
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
1220
1226
|
min-height: 170px;
|
|
1221
1227
|
overflow: auto;
|
|
@@ -1731,14 +1737,14 @@
|
|
|
1731
1737
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
1732
1738
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
1733
1739
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
1734
|
-
max-height:
|
|
1740
|
+
max-height: 440px !important;
|
|
1735
1741
|
min-width: 370px !important;
|
|
1736
1742
|
}
|
|
1737
1743
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1738
1744
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
1739
1745
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1740
1746
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
1741
|
-
min-height:
|
|
1747
|
+
min-height: 75px !important;
|
|
1742
1748
|
}
|
|
1743
1749
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1744
1750
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
@@ -777,6 +777,7 @@
|
|
|
777
777
|
display: inline-table;
|
|
778
778
|
height: 100%;
|
|
779
779
|
width: 100%;
|
|
780
|
+
min-width: 265px;
|
|
780
781
|
}
|
|
781
782
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
782
783
|
cursor: move;
|
|
@@ -800,6 +801,8 @@
|
|
|
800
801
|
cursor: pointer;
|
|
801
802
|
font-size: 13px;
|
|
802
803
|
margin-top: 3px;
|
|
804
|
+
padding-left: 0px;
|
|
805
|
+
padding-right: 0px;
|
|
803
806
|
}
|
|
804
807
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
805
808
|
cursor: auto;
|
|
@@ -1214,6 +1217,9 @@
|
|
|
1214
1217
|
margin-left: 0;
|
|
1215
1218
|
margin-right: 10px;
|
|
1216
1219
|
}
|
|
1220
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
1221
|
+
padding-top: 4px !important;
|
|
1222
|
+
}
|
|
1217
1223
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
1218
1224
|
min-height: 170px;
|
|
1219
1225
|
overflow: auto;
|
|
@@ -1579,7 +1585,7 @@
|
|
|
1579
1585
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
1580
1586
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
1581
1587
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
1582
|
-
height:
|
|
1588
|
+
height: 204px;
|
|
1583
1589
|
}
|
|
1584
1590
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
1585
1591
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div,
|
|
@@ -1729,14 +1735,14 @@
|
|
|
1729
1735
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
1730
1736
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
1731
1737
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
1732
|
-
max-height:
|
|
1738
|
+
max-height: 440px !important;
|
|
1733
1739
|
min-width: 370px !important;
|
|
1734
1740
|
}
|
|
1735
1741
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1736
1742
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
1737
1743
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1738
1744
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
1739
|
-
min-height:
|
|
1745
|
+
min-height: 75px !important;
|
|
1740
1746
|
}
|
|
1741
1747
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1742
1748
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
@@ -796,6 +796,7 @@
|
|
|
796
796
|
display: inline-table;
|
|
797
797
|
height: 100%;
|
|
798
798
|
width: 100%;
|
|
799
|
+
min-width: 265px;
|
|
799
800
|
}
|
|
800
801
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
801
802
|
cursor: move;
|
|
@@ -819,6 +820,8 @@
|
|
|
819
820
|
cursor: pointer;
|
|
820
821
|
font-size: 13px;
|
|
821
822
|
margin-top: 3px;
|
|
823
|
+
padding-left: 0px;
|
|
824
|
+
padding-right: 0px;
|
|
822
825
|
}
|
|
823
826
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
824
827
|
cursor: auto;
|
|
@@ -1265,6 +1268,9 @@
|
|
|
1265
1268
|
margin-left: 0;
|
|
1266
1269
|
margin-right: 10px;
|
|
1267
1270
|
}
|
|
1271
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
1272
|
+
padding-top: 4px !important;
|
|
1273
|
+
}
|
|
1268
1274
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
1269
1275
|
min-height: 170px;
|
|
1270
1276
|
overflow: auto;
|
|
@@ -1648,7 +1654,7 @@
|
|
|
1648
1654
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter,
|
|
1649
1655
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter,
|
|
1650
1656
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter {
|
|
1651
|
-
height:
|
|
1657
|
+
height: 220px;
|
|
1652
1658
|
}
|
|
1653
1659
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
1654
1660
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-value-filter .e-filter-text-div,
|
|
@@ -1798,14 +1804,14 @@
|
|
|
1798
1804
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
1799
1805
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
1800
1806
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
1801
|
-
max-height:
|
|
1807
|
+
max-height: 440px !important;
|
|
1802
1808
|
min-width: 370px !important;
|
|
1803
1809
|
}
|
|
1804
1810
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1805
1811
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
1806
1812
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1807
1813
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
1808
|
-
min-height:
|
|
1814
|
+
min-height: 75px !important;
|
|
1809
1815
|
}
|
|
1810
1816
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1811
1817
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
@@ -791,6 +791,7 @@
|
|
|
791
791
|
display: inline-table;
|
|
792
792
|
height: 100%;
|
|
793
793
|
width: 100%;
|
|
794
|
+
min-width: 265px;
|
|
794
795
|
}
|
|
795
796
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-fullrow {
|
|
796
797
|
cursor: move;
|
|
@@ -814,6 +815,8 @@
|
|
|
814
815
|
cursor: pointer;
|
|
815
816
|
font-size: 13px;
|
|
816
817
|
margin-top: 3px;
|
|
818
|
+
padding-left: 0px;
|
|
819
|
+
padding-right: 0px;
|
|
817
820
|
}
|
|
818
821
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-treeview ul .e-list-icon {
|
|
819
822
|
cursor: auto;
|
|
@@ -946,6 +949,12 @@
|
|
|
946
949
|
font-size: 20px;
|
|
947
950
|
padding-top: 12px;
|
|
948
951
|
}
|
|
952
|
+
.e-bigger.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon.e-edit, .e-bigger.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon.e-edited, .e-bigger.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon.e-remove-report,
|
|
953
|
+
.e-bigger .e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon.e-edit,
|
|
954
|
+
.e-bigger .e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon.e-edited,
|
|
955
|
+
.e-bigger .e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon.e-remove-report {
|
|
956
|
+
padding-top: 3px;
|
|
957
|
+
}
|
|
949
958
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons,
|
|
950
959
|
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons {
|
|
951
960
|
font-size: 20px;
|
|
@@ -1121,7 +1130,7 @@
|
|
|
1121
1130
|
display: none;
|
|
1122
1131
|
}
|
|
1123
1132
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-editor-label-container {
|
|
1124
|
-
background-color: #
|
|
1133
|
+
background-color: #282d31;
|
|
1125
1134
|
opacity: 56%;
|
|
1126
1135
|
padding: 14px 10px 16px 20px;
|
|
1127
1136
|
}
|
|
@@ -1242,6 +1251,9 @@
|
|
|
1242
1251
|
margin-left: 0;
|
|
1243
1252
|
margin-right: 10px;
|
|
1244
1253
|
}
|
|
1254
|
+
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-outer-container:not(.e-excelfilter) .e-editor-search-container {
|
|
1255
|
+
padding-top: 4px !important;
|
|
1256
|
+
}
|
|
1245
1257
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog ul:first-child {
|
|
1246
1258
|
min-height: 170px;
|
|
1247
1259
|
overflow: auto;
|
|
@@ -1768,14 +1780,14 @@
|
|
|
1768
1780
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog,
|
|
1769
1781
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog,
|
|
1770
1782
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog {
|
|
1771
|
-
max-height:
|
|
1783
|
+
max-height: 440px !important;
|
|
1772
1784
|
min-width: 370px !important;
|
|
1773
1785
|
}
|
|
1774
1786
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1775
1787
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div,
|
|
1776
1788
|
.e-bigger.e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div,
|
|
1777
1789
|
.e-bigger.e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div {
|
|
1778
|
-
min-height:
|
|
1790
|
+
min-height: 75px !important;
|
|
1779
1791
|
}
|
|
1780
1792
|
.e-bigger .e-pivotfieldlist .e-member-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|
|
1781
1793
|
.e-bigger .e-pivotfieldlist .e-olap-editor-dialog .e-member-editor-container-outer-div .e-list-parent .e-ul,
|