@syncfusion/ej2-vue-pivotview 19.3.57 → 19.4.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +23 -41
- package/dist/ej2-vue-pivotview.umd.min.js +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +2 -2
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +2 -2
- package/dist/es6/ej2-vue-pivotview.es5.js.map +1 -1
- package/dist/global/ej2-vue-pivotview.min.js +2 -2
- package/package.json +8 -8
- package/src/pivotfieldlist/pivotfieldlist.component.js +1 -1
- package/src/pivotview/pivotview.component.js +1 -1
- package/styles/bootstrap-dark.css +115 -104
- package/styles/bootstrap.css +115 -104
- package/styles/bootstrap4.css +114 -81
- package/styles/bootstrap5-dark.css +220 -168
- package/styles/bootstrap5.css +215 -161
- package/styles/fabric-dark.css +117 -103
- package/styles/fabric.css +115 -102
- package/styles/highcontrast-light.css +116 -102
- package/styles/highcontrast.css +118 -104
- package/styles/material-dark.css +108 -97
- package/styles/material.css +108 -97
- package/styles/pivotfieldlist/bootstrap-dark.css +49 -58
- package/styles/pivotfieldlist/bootstrap.css +49 -58
- package/styles/pivotfieldlist/bootstrap4.css +44 -39
- package/styles/pivotfieldlist/bootstrap5-dark.css +115 -89
- package/styles/pivotfieldlist/bootstrap5.css +115 -89
- package/styles/pivotfieldlist/fabric-dark.css +49 -58
- package/styles/pivotfieldlist/fabric.css +49 -58
- package/styles/pivotfieldlist/highcontrast-light.css +49 -58
- package/styles/pivotfieldlist/highcontrast.css +49 -58
- package/styles/pivotfieldlist/material-dark.css +44 -53
- package/styles/pivotfieldlist/material.css +44 -53
- package/styles/pivotfieldlist/tailwind-dark.css +138 -81
- package/styles/pivotfieldlist/tailwind.css +140 -83
- package/styles/pivotview/bootstrap-dark.css +66 -46
- package/styles/pivotview/bootstrap.css +66 -46
- package/styles/pivotview/bootstrap4.css +70 -42
- package/styles/pivotview/bootstrap5-dark.css +99 -73
- package/styles/pivotview/bootstrap5.css +100 -72
- package/styles/pivotview/fabric-dark.css +68 -45
- package/styles/pivotview/fabric.css +66 -44
- package/styles/pivotview/highcontrast-light.css +67 -44
- package/styles/pivotview/highcontrast.css +69 -46
- package/styles/pivotview/material-dark.css +64 -44
- package/styles/pivotview/material.css +64 -44
- package/styles/pivotview/tailwind-dark.css +106 -58
- package/styles/pivotview/tailwind.css +107 -57
- package/styles/tailwind-dark.css +250 -145
- package/styles/tailwind.css +247 -140
package/styles/tailwind-dark.css
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
2
2
|
/*! component's theme wise override definitions and variables */
|
|
3
3
|
/*! component's common definitions and variables */
|
|
4
|
-
/*! component's theme wise override definitions and variables */
|
|
5
|
-
/*! component's common definitions and variables */
|
|
6
4
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
7
5
|
.e-pivotview .e-expand::before {
|
|
8
6
|
content: '\e707';
|
|
@@ -187,17 +185,18 @@
|
|
|
187
185
|
.e-pivotview .e-group-field-settings {
|
|
188
186
|
max-height: 450px !important;
|
|
189
187
|
border-radius: 4px;
|
|
190
|
-
max-width: 400px;
|
|
191
|
-
width: auto;
|
|
188
|
+
max-width: 400px !important;
|
|
189
|
+
width: auto !important;
|
|
192
190
|
}
|
|
193
191
|
|
|
194
192
|
.e-pivotview .e-pivot-format-dialog {
|
|
195
193
|
border-radius: 4px;
|
|
196
|
-
max-width: 400px;
|
|
197
|
-
width: auto;
|
|
194
|
+
max-width: 400px !important;
|
|
195
|
+
width: auto !important;
|
|
198
196
|
}
|
|
199
197
|
|
|
200
|
-
.e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
198
|
+
.e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
199
|
+
.e-pivotview .e-value-field-settings .e-field-name-text-container {
|
|
201
200
|
display: -ms-flexbox;
|
|
202
201
|
display: flex;
|
|
203
202
|
}
|
|
@@ -212,9 +211,9 @@
|
|
|
212
211
|
.e-pivotview .e-value-field-settings .e-field-name-content {
|
|
213
212
|
-ms-flex: auto;
|
|
214
213
|
flex: auto;
|
|
215
|
-
width: 100%;
|
|
216
214
|
font-size: 13px;
|
|
217
215
|
font-weight: 500;
|
|
216
|
+
width: 100%;
|
|
218
217
|
}
|
|
219
218
|
|
|
220
219
|
.e-pivotview .e-value-field-settings .e-caption-input-wrapper,
|
|
@@ -311,13 +310,6 @@
|
|
|
311
310
|
font-size: 16px;
|
|
312
311
|
}
|
|
313
312
|
|
|
314
|
-
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
315
|
-
background-color: #232e3e;
|
|
316
|
-
border-color: transparent;
|
|
317
|
-
color: #d1d5db;
|
|
318
|
-
outline: none;
|
|
319
|
-
}
|
|
320
|
-
|
|
321
313
|
.e-pivotview .e-member-editor-dialog .e-member-prompt {
|
|
322
314
|
padding: 15px 12px;
|
|
323
315
|
text-align: center;
|
|
@@ -442,6 +434,7 @@
|
|
|
442
434
|
height: 14px;
|
|
443
435
|
min-width: 14px;
|
|
444
436
|
width: 14px;
|
|
437
|
+
height: auto;
|
|
445
438
|
}
|
|
446
439
|
|
|
447
440
|
.e-pivotview .e-member-editor-dialog .e-filter-tab-wrapper .e-tab-header .e-text-wrap .e-tab-icon::before,
|
|
@@ -460,7 +453,7 @@
|
|
|
460
453
|
|
|
461
454
|
.e-pivotview .e-member-editor-dialog .e-clear-filter-button {
|
|
462
455
|
float: left;
|
|
463
|
-
margin
|
|
456
|
+
margin: 0;
|
|
464
457
|
}
|
|
465
458
|
|
|
466
459
|
.e-pivotview .e-member-editor-dialog .e-clear-filter-button.e-disable {
|
|
@@ -506,7 +499,7 @@
|
|
|
506
499
|
|
|
507
500
|
.e-pivotview .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
508
501
|
float: right;
|
|
509
|
-
margin
|
|
502
|
+
margin: 0;
|
|
510
503
|
}
|
|
511
504
|
|
|
512
505
|
.e-pivotview .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-wrapper .e-select-all-wrapper ul,
|
|
@@ -573,9 +566,9 @@
|
|
|
573
566
|
.e-pivotview .e-member-editor-dialog .e-footer-content,
|
|
574
567
|
.e-pivotview .e-pivot-format-dialog .e-footer-content,
|
|
575
568
|
.e-pivotview .e-group-field-settings .e-footer-content {
|
|
576
|
-
border-radius: 4px;
|
|
577
569
|
border-top-left-radius: 0;
|
|
578
570
|
border-top-right-radius: 0;
|
|
571
|
+
border-radius: 4px;
|
|
579
572
|
padding-bottom: 8px;
|
|
580
573
|
padding-top: 8px;
|
|
581
574
|
}
|
|
@@ -641,7 +634,7 @@
|
|
|
641
634
|
}
|
|
642
635
|
|
|
643
636
|
.e-pivotview .e-pivotchart-type-dialog {
|
|
644
|
-
max-width: 350px;
|
|
637
|
+
max-width: 350px !important;
|
|
645
638
|
max-height: 380px !important;
|
|
646
639
|
}
|
|
647
640
|
|
|
@@ -673,8 +666,8 @@
|
|
|
673
666
|
}
|
|
674
667
|
|
|
675
668
|
.e-pivotview .e-pivot-format-dialog {
|
|
676
|
-
max-height:
|
|
677
|
-
max-width: 350px;
|
|
669
|
+
max-height: 550px !important;
|
|
670
|
+
max-width: 350px !important;
|
|
678
671
|
}
|
|
679
672
|
|
|
680
673
|
.e-pivotview .e-pivot-format-dialog .e-pivot-format-dialog-outer {
|
|
@@ -700,6 +693,7 @@
|
|
|
700
693
|
}
|
|
701
694
|
|
|
702
695
|
.e-pivotview .e-pivot-toolbar {
|
|
696
|
+
background: #232e3e;
|
|
703
697
|
border-bottom: 0;
|
|
704
698
|
border-style: solid;
|
|
705
699
|
border-top: 1px solid #4b5563;
|
|
@@ -707,6 +701,10 @@
|
|
|
707
701
|
border-right: 1px solid #4b5563;
|
|
708
702
|
}
|
|
709
703
|
|
|
704
|
+
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
705
|
+
background: #232e3e;
|
|
706
|
+
}
|
|
707
|
+
|
|
710
708
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
711
709
|
font-size: 16px;
|
|
712
710
|
}
|
|
@@ -719,7 +717,6 @@
|
|
|
719
717
|
|
|
720
718
|
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
721
719
|
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
722
|
-
height: 32px;
|
|
723
720
|
overflow: hidden;
|
|
724
721
|
padding-left: 10px;
|
|
725
722
|
}
|
|
@@ -729,6 +726,12 @@
|
|
|
729
726
|
margin-left: 0;
|
|
730
727
|
margin-right: 0;
|
|
731
728
|
font-size: 16px;
|
|
729
|
+
line-height: 40px;
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item .e-caret,
|
|
733
|
+
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item .e-caret {
|
|
734
|
+
line-height: 40px;
|
|
732
735
|
}
|
|
733
736
|
|
|
734
737
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
@@ -772,7 +775,7 @@
|
|
|
772
775
|
}
|
|
773
776
|
|
|
774
777
|
.e-pivotview-report-dialog {
|
|
775
|
-
max-width: 350px;
|
|
778
|
+
max-width: 350px !important;
|
|
776
779
|
}
|
|
777
780
|
|
|
778
781
|
.e-mdx-query-content {
|
|
@@ -788,7 +791,7 @@
|
|
|
788
791
|
}
|
|
789
792
|
|
|
790
793
|
.e-pivotview-mdx-dialog {
|
|
791
|
-
max-width: 500px;
|
|
794
|
+
max-width: 500px !important;
|
|
792
795
|
}
|
|
793
796
|
|
|
794
797
|
.e-report-outer {
|
|
@@ -841,7 +844,6 @@
|
|
|
841
844
|
|
|
842
845
|
.e-drillthrough-dialog .e-drillthrough-body-header-value {
|
|
843
846
|
color: #9ca3af;
|
|
844
|
-
margin-left: 10px;
|
|
845
847
|
margin-right: 20px;
|
|
846
848
|
}
|
|
847
849
|
|
|
@@ -853,11 +855,18 @@
|
|
|
853
855
|
flex-wrap: wrap;
|
|
854
856
|
}
|
|
855
857
|
|
|
856
|
-
.e-bigger .e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
857
|
-
.e-bigger .e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item,
|
|
858
|
-
.e-bigger.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
859
|
-
.e-bigger.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
860
|
-
height:
|
|
858
|
+
.e-bigger .e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item .e-menu-icon,
|
|
859
|
+
.e-bigger .e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item .e-menu-icon,
|
|
860
|
+
.e-bigger.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item .e-menu-icon,
|
|
861
|
+
.e-bigger.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item .e-menu-icon {
|
|
862
|
+
line-height: 50px;
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
.e-bigger .e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item .e-caret,
|
|
866
|
+
.e-bigger .e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item .e-caret,
|
|
867
|
+
.e-bigger.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item .e-caret,
|
|
868
|
+
.e-bigger.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item .e-caret {
|
|
869
|
+
line-height: 50px;
|
|
861
870
|
}
|
|
862
871
|
|
|
863
872
|
.e-bigger .e-pivotview .e-member-editor-dialog .e-dlg-content .e-member-editor-wrapper .e-member-editor-container-outer-div,
|
|
@@ -1016,7 +1025,8 @@
|
|
|
1016
1025
|
padding-top: 16px;
|
|
1017
1026
|
}
|
|
1018
1027
|
|
|
1019
|
-
.e-bigger .e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
1028
|
+
.e-bigger .e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
1029
|
+
.e-bigger .e-pivotview .e-value-field-settings .e-field-name-text-container,
|
|
1020
1030
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
1021
1031
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-text-container {
|
|
1022
1032
|
display: -ms-flexbox;
|
|
@@ -1028,7 +1038,6 @@
|
|
|
1028
1038
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-title,
|
|
1029
1039
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-content {
|
|
1030
1040
|
font-size: 14px;
|
|
1031
|
-
font-size: 13px;
|
|
1032
1041
|
font-weight: 500;
|
|
1033
1042
|
}
|
|
1034
1043
|
|
|
@@ -1094,7 +1103,6 @@
|
|
|
1094
1103
|
|
|
1095
1104
|
.e-pivotview .e-rowsheader .e-cellvalue {
|
|
1096
1105
|
margin-left: 10px;
|
|
1097
|
-
vertical-align: super !important;
|
|
1098
1106
|
}
|
|
1099
1107
|
|
|
1100
1108
|
.e-pivotview .e-valuescontent {
|
|
@@ -1138,6 +1146,7 @@
|
|
|
1138
1146
|
.e-pivotview .e-rowsheader .e-cellvalue {
|
|
1139
1147
|
margin-left: 8px;
|
|
1140
1148
|
margin-top: 5px;
|
|
1149
|
+
vertical-align: middle;
|
|
1141
1150
|
}
|
|
1142
1151
|
|
|
1143
1152
|
.e-pivotview .e-pivot-conditional-empty-format {
|
|
@@ -1217,6 +1226,7 @@
|
|
|
1217
1226
|
|
|
1218
1227
|
.e-pivotview div.e-cellvalue {
|
|
1219
1228
|
margin-top: 5px;
|
|
1229
|
+
margin-top: 2px;
|
|
1220
1230
|
}
|
|
1221
1231
|
|
|
1222
1232
|
.e-pivotview .e-sortfilterdiv {
|
|
@@ -1226,11 +1236,9 @@
|
|
|
1226
1236
|
|
|
1227
1237
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1228
1238
|
margin: 0px !important;
|
|
1229
|
-
padding
|
|
1230
|
-
padding-
|
|
1231
|
-
|
|
1232
|
-
padding-bottom: 30px !important;
|
|
1233
|
-
padding-top: 30px !important;
|
|
1239
|
+
padding: 2px 4px !important;
|
|
1240
|
+
padding-bottom: 0px !important;
|
|
1241
|
+
padding-top: 0px !important;
|
|
1234
1242
|
}
|
|
1235
1243
|
|
|
1236
1244
|
.e-pivotview .e-rowsheader .e-sortfilterdiv {
|
|
@@ -1241,10 +1249,6 @@
|
|
|
1241
1249
|
border: 1px solid #4b5563;
|
|
1242
1250
|
}
|
|
1243
1251
|
|
|
1244
|
-
.e-pivotview .e-pivotchart.e-ltr {
|
|
1245
|
-
direction: ltr;
|
|
1246
|
-
}
|
|
1247
|
-
|
|
1248
1252
|
.e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1249
1253
|
.e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
|
|
1250
1254
|
margin: -18px !important;
|
|
@@ -1270,12 +1274,28 @@
|
|
|
1270
1274
|
color: #d1d5db !important;
|
|
1271
1275
|
}
|
|
1272
1276
|
|
|
1277
|
+
.e-pivotview .sf-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1278
|
+
.e-pivotview .sf-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1279
|
+
text-overflow: ellipsis;
|
|
1280
|
+
white-space: nowrap;
|
|
1281
|
+
}
|
|
1282
|
+
|
|
1273
1283
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1274
1284
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1275
1285
|
padding-left: 8px !important;
|
|
1276
1286
|
text-transform: none;
|
|
1277
1287
|
}
|
|
1278
1288
|
|
|
1289
|
+
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1290
|
+
.e-pivotview .sf-grid .e-columnsheader {
|
|
1291
|
+
padding-right: 8px !important;
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1295
|
+
.e-pivotview .sf-grid .e-stackedheadercelldiv {
|
|
1296
|
+
line-height: normal;
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1279
1299
|
.e-pivotview .e-frozenheader > .e-table,
|
|
1280
1300
|
.e-pivotview .e-frozencontent > .e-table {
|
|
1281
1301
|
border-left-color: #4b5563 !important;
|
|
@@ -1284,22 +1304,23 @@
|
|
|
1284
1304
|
border-right-width: 1px;
|
|
1285
1305
|
}
|
|
1286
1306
|
|
|
1307
|
+
.e-pivotview .e-stackedheadercelldiv {
|
|
1308
|
+
display: block;
|
|
1309
|
+
}
|
|
1310
|
+
|
|
1311
|
+
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1287
1312
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1288
1313
|
padding-left: 8px !important;
|
|
1289
1314
|
margin-top: 5px;
|
|
1290
1315
|
margin-top: 2px;
|
|
1291
1316
|
}
|
|
1292
1317
|
|
|
1293
|
-
.e-pivotview .e-stackedheadertext.e-cellvalue {
|
|
1294
|
-
margin-top: 3px;
|
|
1295
|
-
padding-left: 8px !important;
|
|
1296
|
-
}
|
|
1297
|
-
|
|
1298
1318
|
.e-pivotview .e-stackedheadercelldiv {
|
|
1299
1319
|
padding: 0 0 0 1px !important;
|
|
1300
1320
|
}
|
|
1301
1321
|
|
|
1302
1322
|
.e-pivotview .e-stackedheadercelldiv,
|
|
1323
|
+
.e-pivotview .e-stackedheadertext,
|
|
1303
1324
|
.e-pivotview .e-headertext,
|
|
1304
1325
|
.e-pivotview .e-rowsheader .e-cellvalue {
|
|
1305
1326
|
color: #9ca3af;
|
|
@@ -1308,6 +1329,7 @@
|
|
|
1308
1329
|
}
|
|
1309
1330
|
|
|
1310
1331
|
.e-pivotview .e-stackedheadercelldiv .e-hyperlinkcell,
|
|
1332
|
+
.e-pivotview .e-stackedheadertext .e-hyperlinkcell,
|
|
1311
1333
|
.e-pivotview .e-headertext .e-hyperlinkcell,
|
|
1312
1334
|
.e-pivotview .e-rowsheader .e-cellvalue .e-hyperlinkcell {
|
|
1313
1335
|
cursor: pointer;
|
|
@@ -1408,7 +1430,6 @@
|
|
|
1408
1430
|
.e-pivotview .e-group-rows,
|
|
1409
1431
|
.e-pivotview .e-group-all-fields {
|
|
1410
1432
|
background: #232e3e;
|
|
1411
|
-
vertical-align: top;
|
|
1412
1433
|
display: inline-table;
|
|
1413
1434
|
-ms-flex: auto;
|
|
1414
1435
|
flex: auto;
|
|
@@ -1417,6 +1438,7 @@
|
|
|
1417
1438
|
overflow: hidden;
|
|
1418
1439
|
padding-left: 8px;
|
|
1419
1440
|
scroll-behavior: smooth;
|
|
1441
|
+
vertical-align: top;
|
|
1420
1442
|
}
|
|
1421
1443
|
|
|
1422
1444
|
.e-pivotview .e-group-values.e-drag-restrict,
|
|
@@ -1441,6 +1463,8 @@
|
|
|
1441
1463
|
position: relative;
|
|
1442
1464
|
text-align: center;
|
|
1443
1465
|
vertical-align: middle;
|
|
1466
|
+
font-size: 14px;
|
|
1467
|
+
font-weight: normal;
|
|
1444
1468
|
}
|
|
1445
1469
|
|
|
1446
1470
|
.e-pivotview .e-grouping-bar .e-pvt-btn-div,
|
|
@@ -1513,7 +1537,7 @@
|
|
|
1513
1537
|
.e-pivotview .e-group-rows .e-pivot-button:hover .e-pv-filtered,
|
|
1514
1538
|
.e-pivotview .e-group-rows .e-pivot-button:hover .e-remove,
|
|
1515
1539
|
.e-pivotview .e-group-rows .e-pivot-button:hover .e-edit {
|
|
1516
|
-
color: #d1d5db
|
|
1540
|
+
color: #d1d5db;
|
|
1517
1541
|
}
|
|
1518
1542
|
|
|
1519
1543
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-btn-focused,
|
|
@@ -1534,7 +1558,7 @@
|
|
|
1534
1558
|
.e-pivotview .e-group-rows .e-pivot-button.e-btn-focused .e-pv-filtered,
|
|
1535
1559
|
.e-pivotview .e-group-rows .e-pivot-button.e-btn-focused .e-remove,
|
|
1536
1560
|
.e-pivotview .e-group-rows .e-pivot-button.e-btn-focused .e-edit {
|
|
1537
|
-
color: #d1d5db
|
|
1561
|
+
color: #d1d5db;
|
|
1538
1562
|
}
|
|
1539
1563
|
|
|
1540
1564
|
.e-pivotview .e-grouping-bar .e-pivot-button:focus, .e-pivotview .e-grouping-bar .e-pivot-button:active,
|
|
@@ -1567,7 +1591,7 @@
|
|
|
1567
1591
|
.e-pivotview .e-group-rows .e-pivot-button:active .e-pv-filtered,
|
|
1568
1592
|
.e-pivotview .e-group-rows .e-pivot-button:active .e-remove,
|
|
1569
1593
|
.e-pivotview .e-group-rows .e-pivot-button:active .e-edit {
|
|
1570
|
-
color: #d1d5db
|
|
1594
|
+
color: #d1d5db;
|
|
1571
1595
|
}
|
|
1572
1596
|
|
|
1573
1597
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-content,
|
|
@@ -1590,7 +1614,7 @@
|
|
|
1590
1614
|
|
|
1591
1615
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-draggable,
|
|
1592
1616
|
.e-pivotview .e-group-rows .e-pivot-button .e-draggable {
|
|
1593
|
-
height: initial;
|
|
1617
|
+
height: initial !important;
|
|
1594
1618
|
}
|
|
1595
1619
|
|
|
1596
1620
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-drag,
|
|
@@ -1610,7 +1634,7 @@
|
|
|
1610
1634
|
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered,
|
|
1611
1635
|
.e-pivotview .e-group-rows .e-pivot-button .e-remove,
|
|
1612
1636
|
.e-pivotview .e-group-rows .e-pivot-button .e-edit {
|
|
1613
|
-
color: #d1d5db
|
|
1637
|
+
color: #d1d5db;
|
|
1614
1638
|
cursor: pointer;
|
|
1615
1639
|
display: inline-block;
|
|
1616
1640
|
font-size: 12px;
|
|
@@ -1631,7 +1655,7 @@
|
|
|
1631
1655
|
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered:hover,
|
|
1632
1656
|
.e-pivotview .e-group-rows .e-pivot-button .e-remove:hover,
|
|
1633
1657
|
.e-pivotview .e-group-rows .e-pivot-button .e-edit:hover {
|
|
1634
|
-
color: #d1d5db
|
|
1658
|
+
color: #d1d5db;
|
|
1635
1659
|
}
|
|
1636
1660
|
|
|
1637
1661
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-sort.e-disable,
|
|
@@ -1846,7 +1870,7 @@
|
|
|
1846
1870
|
padding-bottom: 7px;
|
|
1847
1871
|
}
|
|
1848
1872
|
|
|
1849
|
-
.e-pivotview .e-icons:not(.e-frame) {
|
|
1873
|
+
.e-pivotview .e-icons:not(.e-frame):not(.e-btn-icon):not(.e-sort):not(.e-dropdown-icon):not(.e-pv-filter):not(.e-pv-filtered):not(.e-remove):not(.e-edit):not(.e-drag) {
|
|
1850
1874
|
height: auto;
|
|
1851
1875
|
width: auto;
|
|
1852
1876
|
}
|
|
@@ -1864,6 +1888,7 @@
|
|
|
1864
1888
|
text-align: center;
|
|
1865
1889
|
width: 18px;
|
|
1866
1890
|
margin-top: 0;
|
|
1891
|
+
vertical-align: middle;
|
|
1867
1892
|
}
|
|
1868
1893
|
|
|
1869
1894
|
.e-pivotview th .e-expand,
|
|
@@ -1871,8 +1896,7 @@
|
|
|
1871
1896
|
float: left;
|
|
1872
1897
|
font-size: 10px !important;
|
|
1873
1898
|
margin-left: 0px;
|
|
1874
|
-
margin-top:
|
|
1875
|
-
margin-top: 2px !important;
|
|
1899
|
+
margin-top: 1px;
|
|
1876
1900
|
}
|
|
1877
1901
|
|
|
1878
1902
|
.e-pivotview .e-expand::before {
|
|
@@ -2038,7 +2062,7 @@
|
|
|
2038
2062
|
}
|
|
2039
2063
|
|
|
2040
2064
|
.e-pivottooltip {
|
|
2041
|
-
border-radius:
|
|
2065
|
+
border-radius: 4px;
|
|
2042
2066
|
padding: 3px 4px;
|
|
2043
2067
|
}
|
|
2044
2068
|
|
|
@@ -2121,14 +2145,23 @@
|
|
|
2121
2145
|
}
|
|
2122
2146
|
|
|
2123
2147
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2148
|
+
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2124
2149
|
.e-bigger .e-pivotview .e-headertext,
|
|
2125
2150
|
.e-bigger .e-pivotview .e-rowsheader .e-cellvalue,
|
|
2126
2151
|
.e-bigger.e-pivotview .e-stackedheadercelldiv,
|
|
2152
|
+
.e-bigger.e-pivotview .e-stackedheadertext,
|
|
2127
2153
|
.e-bigger.e-pivotview .e-headertext,
|
|
2128
2154
|
.e-bigger.e-pivotview .e-rowsheader .e-cellvalue {
|
|
2129
2155
|
font-size: 14px !important;
|
|
2130
2156
|
}
|
|
2131
2157
|
|
|
2158
|
+
.e-bigger .e-pivotview th .e-expand,
|
|
2159
|
+
.e-bigger .e-pivotview th .e-collapse,
|
|
2160
|
+
.e-bigger.e-pivotview th .e-expand,
|
|
2161
|
+
.e-bigger.e-pivotview th .e-collapse {
|
|
2162
|
+
margin-top: 1px;
|
|
2163
|
+
}
|
|
2164
|
+
|
|
2132
2165
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
2133
2166
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
2134
2167
|
height: 36px !important;
|
|
@@ -2204,6 +2237,19 @@
|
|
|
2204
2237
|
padding-left: 10px;
|
|
2205
2238
|
}
|
|
2206
2239
|
|
|
2240
|
+
.e-bigger .e-pivotview .e-grouping-bar .e-group-filters .e-draggable-prompt,
|
|
2241
|
+
.e-bigger .e-pivotview .e-grouping-bar .e-group-values .e-draggable-prompt,
|
|
2242
|
+
.e-bigger .e-pivotview .e-grouping-bar .e-group-columns .e-draggable-prompt,
|
|
2243
|
+
.e-bigger .e-pivotview .e-grouping-bar .e-group-rows .e-draggable-prompt,
|
|
2244
|
+
.e-bigger .e-pivotview .e-grouping-bar .e-group-all-fields .e-draggable-prompt,
|
|
2245
|
+
.e-bigger.e-pivotview .e-grouping-bar .e-group-filters .e-draggable-prompt,
|
|
2246
|
+
.e-bigger.e-pivotview .e-grouping-bar .e-group-values .e-draggable-prompt,
|
|
2247
|
+
.e-bigger.e-pivotview .e-grouping-bar .e-group-columns .e-draggable-prompt,
|
|
2248
|
+
.e-bigger.e-pivotview .e-grouping-bar .e-group-rows .e-draggable-prompt,
|
|
2249
|
+
.e-bigger.e-pivotview .e-grouping-bar .e-group-all-fields .e-draggable-prompt {
|
|
2250
|
+
font-size: 16px;
|
|
2251
|
+
}
|
|
2252
|
+
|
|
2207
2253
|
.e-bigger .e-pivotview .e-grouping-bar .e-group-values,
|
|
2208
2254
|
.e-bigger.e-pivotview .e-grouping-bar .e-group-values {
|
|
2209
2255
|
height: 100%;
|
|
@@ -2309,9 +2355,11 @@
|
|
|
2309
2355
|
}
|
|
2310
2356
|
|
|
2311
2357
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2358
|
+
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2312
2359
|
.e-bigger .e-pivotview .e-headertext,
|
|
2313
2360
|
.e-bigger .e-pivotview .e-rowsheader .e-cellvalue,
|
|
2314
2361
|
.e-bigger.e-pivotview .e-stackedheadercelldiv,
|
|
2362
|
+
.e-bigger.e-pivotview .e-stackedheadertext,
|
|
2315
2363
|
.e-bigger.e-pivotview .e-headertext,
|
|
2316
2364
|
.e-bigger.e-pivotview .e-rowsheader .e-cellvalue {
|
|
2317
2365
|
color: #9ca3af !important;
|
|
@@ -2887,6 +2935,18 @@
|
|
|
2887
2935
|
width: 14px;
|
|
2888
2936
|
}
|
|
2889
2937
|
|
|
2938
|
+
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-btn,
|
|
2939
|
+
.e-pivot-formatting-dialog .e-colorpicker-container .e-split-btn-wrapper .e-split-btn {
|
|
2940
|
+
pointer-events: none;
|
|
2941
|
+
}
|
|
2942
|
+
|
|
2943
|
+
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-btn .e-selected-color,
|
|
2944
|
+
.e-pivot-formatting-dialog .e-colorpicker-container .e-split-btn-wrapper .e-split-btn .e-selected-color {
|
|
2945
|
+
background: none;
|
|
2946
|
+
margin: 0 2px;
|
|
2947
|
+
width: 14px;
|
|
2948
|
+
}
|
|
2949
|
+
|
|
2890
2950
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2891
2951
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2892
2952
|
border: 1px solid #4b5563;
|
|
@@ -3064,12 +3124,14 @@
|
|
|
3064
3124
|
.e-pivot-calc-dialog-div .e-olap-member-title {
|
|
3065
3125
|
color: #d1d5db;
|
|
3066
3126
|
font-size: 12px;
|
|
3127
|
+
margin-bottom: 4px;
|
|
3067
3128
|
margin-top: 15px;
|
|
3068
3129
|
overflow: hidden;
|
|
3069
3130
|
padding: 4px 0;
|
|
3070
3131
|
padding-bottom: 0;
|
|
3071
3132
|
text-overflow: ellipsis;
|
|
3072
3133
|
white-space: nowrap;
|
|
3134
|
+
padding: 0;
|
|
3073
3135
|
}
|
|
3074
3136
|
|
|
3075
3137
|
.e-pivot-calc-dialog-div .e-treeview .e-sibling {
|
|
@@ -3092,6 +3154,10 @@
|
|
|
3092
3154
|
font-family: Inter;
|
|
3093
3155
|
}
|
|
3094
3156
|
|
|
3157
|
+
.e-pivot-calc-dialog-div .e-treeview ul li:not(.e-active) .e-list-icon {
|
|
3158
|
+
color: #d1d5db;
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3095
3161
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
3096
3162
|
color: #d1d5db;
|
|
3097
3163
|
margin: 0;
|
|
@@ -3107,6 +3173,10 @@
|
|
|
3107
3173
|
padding: 0;
|
|
3108
3174
|
}
|
|
3109
3175
|
|
|
3176
|
+
.e-pivot-calc-dialog-div .e-treeview ul .e-list-item .e-text-content .e-list-text {
|
|
3177
|
+
line-height: 31px;
|
|
3178
|
+
}
|
|
3179
|
+
|
|
3110
3180
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons {
|
|
3111
3181
|
cursor: pointer;
|
|
3112
3182
|
font-size: 18px;
|
|
@@ -3115,6 +3185,8 @@
|
|
|
3115
3185
|
padding: 2px 4px 4px;
|
|
3116
3186
|
pointer-events: auto;
|
|
3117
3187
|
width: 24px;
|
|
3188
|
+
height: 20px;
|
|
3189
|
+
width: 20px;
|
|
3118
3190
|
}
|
|
3119
3191
|
|
|
3120
3192
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons.e-format {
|
|
@@ -3132,6 +3204,12 @@
|
|
|
3132
3204
|
padding: 2px 4px 4px;
|
|
3133
3205
|
pointer-events: auto;
|
|
3134
3206
|
width: 24px;
|
|
3207
|
+
height: 20px;
|
|
3208
|
+
width: 20px;
|
|
3209
|
+
}
|
|
3210
|
+
|
|
3211
|
+
.e-pivot-calc-dialog-div .e-treeview .e-list-item:not(.e-active) span.e-icons {
|
|
3212
|
+
color: #6b7280;
|
|
3135
3213
|
}
|
|
3136
3214
|
|
|
3137
3215
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons {
|
|
@@ -3141,10 +3219,16 @@
|
|
|
3141
3219
|
font-size: 18px;
|
|
3142
3220
|
height: 24px;
|
|
3143
3221
|
margin-right: 4px;
|
|
3144
|
-
margin-top: 4px;
|
|
3145
|
-
padding: 5px;
|
|
3146
3222
|
pointer-events: auto;
|
|
3147
3223
|
width: 24px;
|
|
3224
|
+
height: 20px;
|
|
3225
|
+
margin-top: 0;
|
|
3226
|
+
padding: 0 5px;
|
|
3227
|
+
width: 20px;
|
|
3228
|
+
}
|
|
3229
|
+
|
|
3230
|
+
.e-pivot-calc-dialog-div .e-treeview .e-list-item.e-active span.e-icons {
|
|
3231
|
+
color: #d1d5db;
|
|
3148
3232
|
}
|
|
3149
3233
|
|
|
3150
3234
|
.e-pivot-calc-dialog-div .e-dlg-header {
|
|
@@ -3176,9 +3260,9 @@
|
|
|
3176
3260
|
padding: 5px;
|
|
3177
3261
|
width: 24px;
|
|
3178
3262
|
float: left;
|
|
3179
|
-
margin-right: 0;
|
|
3180
3263
|
margin-left: 12px;
|
|
3181
|
-
|
|
3264
|
+
margin-right: 0;
|
|
3265
|
+
padding-top: 0;
|
|
3182
3266
|
}
|
|
3183
3267
|
|
|
3184
3268
|
.e-pivot-calc-dialog-div.e-rtl .e-treeview .e-list-item div.e-edit.e-icons,
|
|
@@ -3228,7 +3312,6 @@
|
|
|
3228
3312
|
color: #fff;
|
|
3229
3313
|
font-size: 13px;
|
|
3230
3314
|
height: 70px;
|
|
3231
|
-
margin-top: 5px;
|
|
3232
3315
|
padding: 5px 10px;
|
|
3233
3316
|
resize: none;
|
|
3234
3317
|
width: 100%;
|
|
@@ -3252,7 +3335,6 @@
|
|
|
3252
3335
|
border: 1px solid #4b5563;
|
|
3253
3336
|
border-radius: 4px;
|
|
3254
3337
|
height: 120px;
|
|
3255
|
-
margin-top: 5px;
|
|
3256
3338
|
overflow: auto;
|
|
3257
3339
|
}
|
|
3258
3340
|
|
|
@@ -3470,6 +3552,7 @@
|
|
|
3470
3552
|
font-size: 14px;
|
|
3471
3553
|
padding: 6px 0;
|
|
3472
3554
|
padding-bottom: 0;
|
|
3555
|
+
padding: 0;
|
|
3473
3556
|
}
|
|
3474
3557
|
|
|
3475
3558
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview ul li,
|
|
@@ -3485,6 +3568,7 @@
|
|
|
3485
3568
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons,
|
|
3486
3569
|
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons {
|
|
3487
3570
|
font-size: 22px;
|
|
3571
|
+
vertical-align: sub;
|
|
3488
3572
|
}
|
|
3489
3573
|
|
|
3490
3574
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-formula,
|
|
@@ -3544,8 +3628,8 @@
|
|
|
3544
3628
|
|
|
3545
3629
|
.e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog,
|
|
3546
3630
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog {
|
|
3547
|
-
max-width: 400px;
|
|
3548
|
-
min-width: 320px;
|
|
3631
|
+
max-width: 400px !important;
|
|
3632
|
+
min-width: 320px !important;
|
|
3549
3633
|
}
|
|
3550
3634
|
|
|
3551
3635
|
.e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-member-prompt,
|
|
@@ -3666,10 +3750,6 @@
|
|
|
3666
3750
|
}
|
|
3667
3751
|
|
|
3668
3752
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
3669
|
-
background-color: #d1d5db;
|
|
3670
|
-
border-color: transparent;
|
|
3671
|
-
color: #d1d5db;
|
|
3672
|
-
outline: none;
|
|
3673
3753
|
background-color: #4b5563 !important;
|
|
3674
3754
|
color: #d1d5db !important;
|
|
3675
3755
|
}
|
|
@@ -3699,6 +3779,7 @@
|
|
|
3699
3779
|
height: 14px;
|
|
3700
3780
|
min-width: 14px;
|
|
3701
3781
|
width: 14px;
|
|
3782
|
+
height: auto;
|
|
3702
3783
|
}
|
|
3703
3784
|
|
|
3704
3785
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-filter-tab-wrapper .e-tab-header .e-text-wrap .e-tab-icon::before {
|
|
@@ -3820,8 +3901,8 @@
|
|
|
3820
3901
|
}
|
|
3821
3902
|
|
|
3822
3903
|
.e-pivotfieldlist-wrapper .e-value-field-settings {
|
|
3823
|
-
max-width: 400px;
|
|
3824
|
-
min-width: 300px;
|
|
3904
|
+
max-width: 400px !important;
|
|
3905
|
+
min-width: 300px !important;
|
|
3825
3906
|
}
|
|
3826
3907
|
|
|
3827
3908
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-dlg-content {
|
|
@@ -3890,7 +3971,7 @@
|
|
|
3890
3971
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog,
|
|
3891
3972
|
.e-pivotfieldlist-wrapper .e-value-field-settings {
|
|
3892
3973
|
border-radius: 4px;
|
|
3893
|
-
width: auto;
|
|
3974
|
+
width: auto !important;
|
|
3894
3975
|
}
|
|
3895
3976
|
|
|
3896
3977
|
.e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -3960,8 +4041,8 @@
|
|
|
3960
4041
|
|
|
3961
4042
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog,
|
|
3962
4043
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3963
|
-
|
|
3964
|
-
|
|
4044
|
+
max-width: 400px !important;
|
|
4045
|
+
min-width: 320px !important;
|
|
3965
4046
|
}
|
|
3966
4047
|
|
|
3967
4048
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
@@ -4087,15 +4168,6 @@
|
|
|
4087
4168
|
font-size: 16px;
|
|
4088
4169
|
}
|
|
4089
4170
|
|
|
4090
|
-
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
4091
|
-
background-color: #d1d5db;
|
|
4092
|
-
border-color: transparent;
|
|
4093
|
-
color: #d1d5db;
|
|
4094
|
-
outline: none;
|
|
4095
|
-
background-color: #4b5563 !important;
|
|
4096
|
-
color: #d1d5db;
|
|
4097
|
-
}
|
|
4098
|
-
|
|
4099
4171
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-select-all-container ul {
|
|
4100
4172
|
margin-left: -22px;
|
|
4101
4173
|
overflow: hidden;
|
|
@@ -4110,7 +4182,7 @@
|
|
|
4110
4182
|
}
|
|
4111
4183
|
|
|
4112
4184
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
4113
|
-
border:
|
|
4185
|
+
border: 0;
|
|
4114
4186
|
}
|
|
4115
4187
|
|
|
4116
4188
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
@@ -4121,6 +4193,7 @@
|
|
|
4121
4193
|
height: 14px;
|
|
4122
4194
|
min-width: 14px;
|
|
4123
4195
|
width: 14px;
|
|
4196
|
+
height: auto;
|
|
4124
4197
|
}
|
|
4125
4198
|
|
|
4126
4199
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-text-wrap .e-tab-icon::before {
|
|
@@ -4242,8 +4315,8 @@
|
|
|
4242
4315
|
}
|
|
4243
4316
|
|
|
4244
4317
|
.e-pivotfieldlist-container .e-value-field-settings {
|
|
4245
|
-
max-width: 400px;
|
|
4246
|
-
min-width: 300px;
|
|
4318
|
+
max-width: 400px !important;
|
|
4319
|
+
min-width: 300px !important;
|
|
4247
4320
|
}
|
|
4248
4321
|
|
|
4249
4322
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
@@ -4312,7 +4385,7 @@
|
|
|
4312
4385
|
.e-pivotfieldlist-container .e-member-editor-dialog,
|
|
4313
4386
|
.e-pivotfieldlist-container .e-value-field-settings {
|
|
4314
4387
|
border-radius: 4px;
|
|
4315
|
-
width: auto;
|
|
4388
|
+
width: auto !important;
|
|
4316
4389
|
}
|
|
4317
4390
|
|
|
4318
4391
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -4385,14 +4458,18 @@
|
|
|
4385
4458
|
background-color: #4b5563;
|
|
4386
4459
|
border: 1px solid #4b5563;
|
|
4387
4460
|
border-radius: 0;
|
|
4388
|
-
box-shadow:
|
|
4389
|
-
height:
|
|
4461
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
4462
|
+
height: 32px;
|
|
4463
|
+
line-height: 1.5em;
|
|
4390
4464
|
min-width: 100px;
|
|
4391
4465
|
padding: 5px 10px;
|
|
4466
|
+
line-height: normal;
|
|
4467
|
+
padding: 0 10px;
|
|
4392
4468
|
}
|
|
4393
4469
|
|
|
4394
4470
|
.e-field-list-tree.e-drag-item.e-treeview .e-text-content,
|
|
4395
4471
|
.e-pivot-calc.e-drag-item.e-treeview .e-text-content {
|
|
4472
|
+
height: 100%;
|
|
4396
4473
|
padding: 0;
|
|
4397
4474
|
text-align: center;
|
|
4398
4475
|
width: 100%;
|
|
@@ -4404,6 +4481,9 @@
|
|
|
4404
4481
|
font-size: 16px;
|
|
4405
4482
|
line-height: 1em;
|
|
4406
4483
|
width: 100%;
|
|
4484
|
+
display: inline;
|
|
4485
|
+
line-height: normal;
|
|
4486
|
+
vertical-align: sub;
|
|
4407
4487
|
}
|
|
4408
4488
|
|
|
4409
4489
|
.e-field-list-tree.e-drag-item.e-treeview .e-text-content > .e-icons,
|
|
@@ -4480,7 +4560,7 @@
|
|
|
4480
4560
|
background-color: #4b5563 !important;
|
|
4481
4561
|
border: 1px solid #4b5563;
|
|
4482
4562
|
border-radius: 0;
|
|
4483
|
-
box-shadow:
|
|
4563
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
4484
4564
|
color: #d1d5db;
|
|
4485
4565
|
font-size: 16px;
|
|
4486
4566
|
font-family: Inter;
|
|
@@ -4492,10 +4572,14 @@
|
|
|
4492
4572
|
text-align: center;
|
|
4493
4573
|
width: auto;
|
|
4494
4574
|
z-index: 100000;
|
|
4575
|
+
line-height: normal;
|
|
4576
|
+
padding: 0 10px;
|
|
4495
4577
|
}
|
|
4496
4578
|
|
|
4497
4579
|
.e-button-drag-clone .e-text-content {
|
|
4498
4580
|
width: 100%;
|
|
4581
|
+
display: inline;
|
|
4582
|
+
vertical-align: sub;
|
|
4499
4583
|
}
|
|
4500
4584
|
|
|
4501
4585
|
.e-bigger .e-button-drag-clone,
|
|
@@ -4503,26 +4587,13 @@
|
|
|
4503
4587
|
height: 36px !important;
|
|
4504
4588
|
line-height: 1.5em;
|
|
4505
4589
|
padding: 6px 12px;
|
|
4590
|
+
line-height: normal;
|
|
4591
|
+
padding: 0 12px;
|
|
4506
4592
|
}
|
|
4507
4593
|
|
|
4508
4594
|
.e-pivot-error-dialog {
|
|
4509
|
-
max-width: 400px;
|
|
4510
|
-
width: auto;
|
|
4511
|
-
}
|
|
4512
|
-
|
|
4513
|
-
.e-pivot-error-dialog .e-dlg-header-content,
|
|
4514
|
-
.e-pivot-error-dialog .e-footer-content {
|
|
4515
|
-
border: 0;
|
|
4516
|
-
}
|
|
4517
|
-
|
|
4518
|
-
.e-pivot-error-dialog .e-dlg-header {
|
|
4519
|
-
font-weight: normal;
|
|
4520
|
-
opacity: 0.87;
|
|
4521
|
-
}
|
|
4522
|
-
|
|
4523
|
-
.e-pivot-error-dialog .e-dlg-content {
|
|
4524
|
-
font-weight: normal;
|
|
4525
|
-
opacity: 0.54;
|
|
4595
|
+
max-width: 400px !important;
|
|
4596
|
+
width: auto !important;
|
|
4526
4597
|
}
|
|
4527
4598
|
|
|
4528
4599
|
.e-bigger .e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-wrapper .e-member-editor-container-outer-div,
|
|
@@ -4611,7 +4682,7 @@
|
|
|
4611
4682
|
|
|
4612
4683
|
.e-bigger .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
4613
4684
|
.e-bigger.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
4614
|
-
height: 91px
|
|
4685
|
+
height: 91px;
|
|
4615
4686
|
}
|
|
4616
4687
|
|
|
4617
4688
|
.e-bigger .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-label-filter,
|
|
@@ -4942,22 +5013,22 @@
|
|
|
4942
5013
|
.e-pivotfieldlist .e-select-table {
|
|
4943
5014
|
background-color: #374151;
|
|
4944
5015
|
border: 0.5px solid #4b5563;
|
|
4945
|
-
box-shadow:
|
|
5016
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
4946
5017
|
color: rgba(255, 255, 255, 0.54);
|
|
4947
5018
|
font-size: 17px;
|
|
4948
|
-
height:
|
|
4949
|
-
max-height:
|
|
4950
|
-
max-width:
|
|
4951
|
-
min-height:
|
|
4952
|
-
min-width:
|
|
5019
|
+
height: 40px;
|
|
5020
|
+
max-height: 40px;
|
|
5021
|
+
max-width: 40px;
|
|
5022
|
+
min-height: 40px;
|
|
5023
|
+
min-width: 40px;
|
|
4953
5024
|
padding: 8px;
|
|
4954
5025
|
position: relative;
|
|
4955
|
-
width:
|
|
5026
|
+
width: 40px;
|
|
4956
5027
|
z-index: 1000;
|
|
4957
5028
|
}
|
|
4958
5029
|
|
|
4959
5030
|
.e-pivotfieldlist .e-select-table.e-fieldlist-left {
|
|
4960
|
-
box-shadow:
|
|
5031
|
+
box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.1);
|
|
4961
5032
|
}
|
|
4962
5033
|
|
|
4963
5034
|
.e-pivotfieldlist .e-select-table:focus, .e-pivotfieldlist .e-select-table:active {
|
|
@@ -4985,8 +5056,8 @@
|
|
|
4985
5056
|
.e-pivotfieldlist-wrapper {
|
|
4986
5057
|
font-family: Inter;
|
|
4987
5058
|
font-size: 14px;
|
|
4988
|
-
max-width: 700px;
|
|
4989
|
-
min-width: 300px;
|
|
5059
|
+
max-width: 700px !important;
|
|
5060
|
+
min-width: 300px !important;
|
|
4990
5061
|
}
|
|
4991
5062
|
|
|
4992
5063
|
.e-pivotfieldlist-wrapper .e-layout-footer {
|
|
@@ -5018,8 +5089,8 @@
|
|
|
5018
5089
|
.e-pivotfieldlist-wrapper .e-checkbox-layout {
|
|
5019
5090
|
float: left;
|
|
5020
5091
|
margin-top: 6px;
|
|
5021
|
-
margin: 0;
|
|
5022
|
-
|
|
5092
|
+
margin-left: 0 !important;
|
|
5093
|
+
margin-right: 0 !important;
|
|
5023
5094
|
}
|
|
5024
5095
|
|
|
5025
5096
|
.e-pivotfieldlist-wrapper.e-rtl .e-layout-footer {
|
|
@@ -5077,10 +5148,10 @@
|
|
|
5077
5148
|
}
|
|
5078
5149
|
|
|
5079
5150
|
.e-pivotfieldlist-wrapper .e-title-header .e-title-content {
|
|
5080
|
-
font-size: 16px;
|
|
5081
|
-
line-height: 1.5em;
|
|
5082
5151
|
-ms-flex: auto;
|
|
5083
5152
|
flex: auto;
|
|
5153
|
+
font-size: 16px;
|
|
5154
|
+
line-height: 1.5em;
|
|
5084
5155
|
}
|
|
5085
5156
|
|
|
5086
5157
|
.e-pivotfieldlist-wrapper .e-field-list-container {
|
|
@@ -5114,13 +5185,13 @@
|
|
|
5114
5185
|
font-size: 12px;
|
|
5115
5186
|
font-weight: normal;
|
|
5116
5187
|
height: 28px;
|
|
5188
|
+
line-height: 1.125em;
|
|
5117
5189
|
overflow: hidden;
|
|
5118
5190
|
padding: 6px 0 0 12px;
|
|
5119
5191
|
text-align: left;
|
|
5120
5192
|
text-overflow: ellipsis;
|
|
5121
|
-
word-break: break-all;
|
|
5122
|
-
line-height: 1.125em;
|
|
5123
5193
|
text-transform: uppercase;
|
|
5194
|
+
word-break: break-all;
|
|
5124
5195
|
}
|
|
5125
5196
|
|
|
5126
5197
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-field-table .e-field-header-wrapper {
|
|
@@ -5306,7 +5377,8 @@
|
|
|
5306
5377
|
display: flex;
|
|
5307
5378
|
height: 28px;
|
|
5308
5379
|
padding: 2px 12px 5px;
|
|
5309
|
-
padding: 5px 12px
|
|
5380
|
+
padding: 5px 12px;
|
|
5381
|
+
border-radius: 3px 3px 0 0;
|
|
5310
5382
|
}
|
|
5311
5383
|
|
|
5312
5384
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper,
|
|
@@ -5316,6 +5388,7 @@
|
|
|
5316
5388
|
height: 20px;
|
|
5317
5389
|
padding-top: 0;
|
|
5318
5390
|
width: 20px;
|
|
5391
|
+
padding-left: 3px;
|
|
5319
5392
|
}
|
|
5320
5393
|
|
|
5321
5394
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper .e-axis-rows,
|
|
@@ -5350,8 +5423,8 @@
|
|
|
5350
5423
|
overflow: hidden;
|
|
5351
5424
|
padding: 0 8px;
|
|
5352
5425
|
text-overflow: ellipsis;
|
|
5353
|
-
width: 100%;
|
|
5354
5426
|
text-transform: uppercase;
|
|
5427
|
+
width: 100%;
|
|
5355
5428
|
}
|
|
5356
5429
|
|
|
5357
5430
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
@@ -5835,6 +5908,7 @@
|
|
|
5835
5908
|
display: inline-block;
|
|
5836
5909
|
height: 100%;
|
|
5837
5910
|
width: 100%;
|
|
5911
|
+
line-height: 1.5;
|
|
5838
5912
|
}
|
|
5839
5913
|
|
|
5840
5914
|
.e-pivotfieldlist-wrapper.e-static .e-field-list-container .e-field-table {
|
|
@@ -5881,7 +5955,8 @@
|
|
|
5881
5955
|
.e-pivotfieldlist-wrapper.e-static .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-wrapper .e-axis-icon-wrapper,
|
|
5882
5956
|
.e-pivotfieldlist-wrapper.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-icon-wrapper,
|
|
5883
5957
|
.e-pivotfieldlist-wrapper.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-icon-wrapper {
|
|
5884
|
-
padding-top:
|
|
5958
|
+
padding-top: 0;
|
|
5959
|
+
padding-left: 3px;
|
|
5885
5960
|
}
|
|
5886
5961
|
|
|
5887
5962
|
.e-pivotfieldlist-wrapper.e-static.e-rtl .e-center-title {
|
|
@@ -5892,10 +5967,22 @@
|
|
|
5892
5967
|
padding-left: 10px;
|
|
5893
5968
|
}
|
|
5894
5969
|
|
|
5970
|
+
.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper,
|
|
5971
|
+
.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-wrapper .e-axis-icon-wrapper {
|
|
5972
|
+
padding-left: 0;
|
|
5973
|
+
padding-right: 3px;
|
|
5974
|
+
}
|
|
5975
|
+
|
|
5895
5976
|
.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields {
|
|
5896
5977
|
padding: 0;
|
|
5897
5978
|
}
|
|
5898
5979
|
|
|
5980
|
+
.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-icon-wrapper,
|
|
5981
|
+
.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-icon-wrapper {
|
|
5982
|
+
padding-left: 0;
|
|
5983
|
+
padding-right: 3px;
|
|
5984
|
+
}
|
|
5985
|
+
|
|
5899
5986
|
.e-pivotfieldlist-wrapper.e-device {
|
|
5900
5987
|
height: 100%;
|
|
5901
5988
|
max-height: 100% !important;
|
|
@@ -6190,8 +6277,8 @@
|
|
|
6190
6277
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-container .e-content .e-field-list-values .e-pvt-btn-div .e-pivot-button.e-rtl .e-edit {
|
|
6191
6278
|
padding-left: 0;
|
|
6192
6279
|
padding-right: 10px;
|
|
6193
|
-
padding-right: 0;
|
|
6194
6280
|
margin-right: 8px;
|
|
6281
|
+
padding-right: 0;
|
|
6195
6282
|
}
|
|
6196
6283
|
|
|
6197
6284
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-container .e-content .e-field-list-filters .e-axis-content,
|
|
@@ -6507,8 +6594,8 @@
|
|
|
6507
6594
|
.e-pivotfieldlist-container .e-checkbox-layout {
|
|
6508
6595
|
float: left;
|
|
6509
6596
|
margin-top: 6px;
|
|
6510
|
-
margin: 0;
|
|
6511
|
-
|
|
6597
|
+
margin-left: 0 !important;
|
|
6598
|
+
margin-right: 0 !important;
|
|
6512
6599
|
}
|
|
6513
6600
|
|
|
6514
6601
|
.e-pivotfieldlist-container.e-rtl .e-layout-footer {
|
|
@@ -6791,7 +6878,7 @@
|
|
|
6791
6878
|
display: flex;
|
|
6792
6879
|
height: 28px;
|
|
6793
6880
|
padding: 2px 12px 5px;
|
|
6794
|
-
padding: 5px 12px
|
|
6881
|
+
padding: 5px 12px;
|
|
6795
6882
|
}
|
|
6796
6883
|
|
|
6797
6884
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-container .e-axis-icon-container,
|
|
@@ -6835,8 +6922,8 @@
|
|
|
6835
6922
|
overflow: hidden;
|
|
6836
6923
|
padding: 0 8px;
|
|
6837
6924
|
text-overflow: ellipsis;
|
|
6838
|
-
width: 100%;
|
|
6839
6925
|
text-transform: uppercase;
|
|
6926
|
+
width: 100%;
|
|
6840
6927
|
}
|
|
6841
6928
|
|
|
6842
6929
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
@@ -7366,7 +7453,7 @@
|
|
|
7366
7453
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-container .e-axis-icon-container,
|
|
7367
7454
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-container .e-axis-icon-container,
|
|
7368
7455
|
.e-pivotfieldlist-container.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container .e-axis-icon-container {
|
|
7369
|
-
padding-top:
|
|
7456
|
+
padding-top: 0;
|
|
7370
7457
|
}
|
|
7371
7458
|
|
|
7372
7459
|
.e-pivotfieldlist-container.e-static.e-rtl .e-center-title {
|
|
@@ -7673,8 +7760,8 @@
|
|
|
7673
7760
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-values .e-pvt-btn-div .e-pivot-button.e-rtl .e-edit {
|
|
7674
7761
|
padding-left: 0;
|
|
7675
7762
|
padding-right: 10px;
|
|
7676
|
-
padding-right: 0;
|
|
7677
7763
|
margin-right: 8px;
|
|
7764
|
+
padding-right: 0;
|
|
7678
7765
|
}
|
|
7679
7766
|
|
|
7680
7767
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-axis-content,
|
|
@@ -7969,12 +8056,12 @@
|
|
|
7969
8056
|
font-weight: normal;
|
|
7970
8057
|
height: 30px;
|
|
7971
8058
|
overflow: hidden;
|
|
7972
|
-
padding: 6px 0 0
|
|
8059
|
+
padding: 6px 0 0 16px;
|
|
7973
8060
|
}
|
|
7974
8061
|
|
|
7975
8062
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper,
|
|
7976
8063
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper {
|
|
7977
|
-
padding-right:
|
|
8064
|
+
padding-right: 16px;
|
|
7978
8065
|
}
|
|
7979
8066
|
|
|
7980
8067
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-none,
|
|
@@ -8055,7 +8142,7 @@
|
|
|
8055
8142
|
.e-bigger.e-pivotfieldlist-wrapper .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper,
|
|
8056
8143
|
.e-bigger.e-pivotfieldlist-wrapper .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper {
|
|
8057
8144
|
height: 30px;
|
|
8058
|
-
padding: 0
|
|
8145
|
+
padding: 0 16px 5px;
|
|
8059
8146
|
}
|
|
8060
8147
|
|
|
8061
8148
|
.e-bigger .e-pivotfieldlist-wrapper .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper,
|
|
@@ -8069,6 +8156,7 @@
|
|
|
8069
8156
|
height: 24px;
|
|
8070
8157
|
padding-top: 7px;
|
|
8071
8158
|
width: 24px;
|
|
8159
|
+
padding-left: 4px;
|
|
8072
8160
|
}
|
|
8073
8161
|
|
|
8074
8162
|
.e-bigger .e-pivotfieldlist-wrapper .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper .e-axis-rows,
|
|
@@ -8265,6 +8353,7 @@
|
|
|
8265
8353
|
.e-bigger.e-pivotfieldlist-wrapper.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8266
8354
|
.e-bigger.e-pivotfieldlist-wrapper.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-icon-wrapper {
|
|
8267
8355
|
padding-top: 7px;
|
|
8356
|
+
padding-left: 4px;
|
|
8268
8357
|
}
|
|
8269
8358
|
|
|
8270
8359
|
.e-bigger .e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
@@ -8272,11 +8361,27 @@
|
|
|
8272
8361
|
padding-left: 16px;
|
|
8273
8362
|
}
|
|
8274
8363
|
|
|
8364
|
+
.e-bigger .e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8365
|
+
.e-bigger .e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8366
|
+
.e-bigger.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8367
|
+
.e-bigger.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-wrapper .e-axis-icon-wrapper {
|
|
8368
|
+
padding-left: 0;
|
|
8369
|
+
padding-right: 4px;
|
|
8370
|
+
}
|
|
8371
|
+
|
|
8275
8372
|
.e-bigger .e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields,
|
|
8276
8373
|
.e-bigger.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields {
|
|
8277
8374
|
padding: 0 !important;
|
|
8278
8375
|
}
|
|
8279
8376
|
|
|
8377
|
+
.e-bigger .e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8378
|
+
.e-bigger .e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8379
|
+
.e-bigger.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-icon-wrapper,
|
|
8380
|
+
.e-bigger.e-pivotfieldlist-wrapper.e-static.e-rtl .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-icon-wrapper {
|
|
8381
|
+
padding-left: 0 !important;
|
|
8382
|
+
padding-right: 4px !important;
|
|
8383
|
+
}
|
|
8384
|
+
|
|
8280
8385
|
.e-bigger .e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-list,
|
|
8281
8386
|
.e-bigger.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-list {
|
|
8282
8387
|
padding-left: 0;
|
|
@@ -8317,12 +8422,12 @@
|
|
|
8317
8422
|
|
|
8318
8423
|
.e-bigger .e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header,
|
|
8319
8424
|
.e-bigger.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header {
|
|
8320
|
-
padding-right:
|
|
8425
|
+
padding-right: 16px;
|
|
8321
8426
|
}
|
|
8322
8427
|
|
|
8323
8428
|
.e-bigger .e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header-wrapper,
|
|
8324
8429
|
.e-bigger.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header-wrapper {
|
|
8325
|
-
padding-left:
|
|
8430
|
+
padding-left: 16px;
|
|
8326
8431
|
}
|
|
8327
8432
|
|
|
8328
8433
|
.e-bigger .e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header-wrapper .e-sort-none,
|
|
@@ -8409,12 +8514,12 @@
|
|
|
8409
8514
|
font-weight: normal;
|
|
8410
8515
|
height: 30px;
|
|
8411
8516
|
overflow: hidden;
|
|
8412
|
-
padding: 6px 0 0
|
|
8517
|
+
padding: 6px 0 0 16px;
|
|
8413
8518
|
}
|
|
8414
8519
|
|
|
8415
8520
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-field-header-container,
|
|
8416
8521
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container {
|
|
8417
|
-
padding-right:
|
|
8522
|
+
padding-right: 16px;
|
|
8418
8523
|
}
|
|
8419
8524
|
|
|
8420
8525
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-none,
|
|
@@ -8494,7 +8599,7 @@
|
|
|
8494
8599
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-container,
|
|
8495
8600
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container {
|
|
8496
8601
|
height: 30px;
|
|
8497
|
-
padding: 0
|
|
8602
|
+
padding: 0 16px 5px;
|
|
8498
8603
|
}
|
|
8499
8604
|
|
|
8500
8605
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-container .e-axis-icon-container,
|
|
@@ -8756,12 +8861,12 @@
|
|
|
8756
8861
|
|
|
8757
8862
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header,
|
|
8758
8863
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header {
|
|
8759
|
-
padding-right:
|
|
8864
|
+
padding-right: 16px;
|
|
8760
8865
|
}
|
|
8761
8866
|
|
|
8762
8867
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
8763
8868
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
8764
|
-
padding-left:
|
|
8869
|
+
padding-left: 16px;
|
|
8765
8870
|
}
|
|
8766
8871
|
|
|
8767
8872
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|