@syncfusion/ej2-vue-pivotview 19.4.53 → 20.1.47
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 +39 -0
- package/README.md +1 -1
- package/dist/ej2-vue-pivotview.umd.min.js +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +32 -4
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +20 -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.d.ts +1 -0
- package/src/pivotfieldlist/pivotfieldlist.component.js +10 -1
- package/src/pivotview/pivotview.component.d.ts +1 -0
- package/src/pivotview/pivotview.component.js +10 -1
- package/styles/bootstrap-dark.css +80 -29
- package/styles/bootstrap.css +80 -29
- package/styles/bootstrap4.css +82 -31
- package/styles/bootstrap5-dark.css +151 -64
- package/styles/bootstrap5.css +151 -64
- package/styles/fabric-dark.css +81 -29
- package/styles/fabric.css +80 -29
- package/styles/fluent-dark.css +8914 -0
- package/styles/fluent-dark.scss +2 -0
- package/styles/fluent.css +8916 -0
- package/styles/fluent.scss +2 -0
- package/styles/highcontrast-light.css +80 -29
- package/styles/highcontrast.css +80 -29
- package/styles/material-dark.css +80 -29
- package/styles/material.css +80 -29
- package/styles/pivotfieldlist/bootstrap-dark.css +33 -16
- package/styles/pivotfieldlist/bootstrap.css +33 -16
- package/styles/pivotfieldlist/bootstrap4.css +33 -16
- package/styles/pivotfieldlist/bootstrap5-dark.css +78 -40
- package/styles/pivotfieldlist/bootstrap5.css +78 -40
- package/styles/pivotfieldlist/fabric-dark.css +33 -16
- package/styles/pivotfieldlist/fabric.css +33 -16
- package/styles/pivotfieldlist/fluent-dark.css +6456 -0
- package/styles/pivotfieldlist/fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/fluent.css +6456 -0
- package/styles/pivotfieldlist/fluent.scss +1 -0
- package/styles/pivotfieldlist/highcontrast-light.css +33 -16
- package/styles/pivotfieldlist/highcontrast.css +33 -16
- package/styles/pivotfieldlist/material-dark.css +33 -16
- package/styles/pivotfieldlist/material.css +33 -16
- package/styles/pivotfieldlist/tailwind-dark.css +145 -137
- package/styles/pivotfieldlist/tailwind.css +145 -137
- package/styles/pivotview/bootstrap-dark.css +47 -13
- package/styles/pivotview/bootstrap.css +47 -13
- package/styles/pivotview/bootstrap4.css +49 -15
- package/styles/pivotview/bootstrap5-dark.css +73 -24
- package/styles/pivotview/bootstrap5.css +73 -24
- package/styles/pivotview/fabric-dark.css +48 -13
- package/styles/pivotview/fabric.css +47 -13
- package/styles/pivotview/fluent-dark.css +2457 -0
- package/styles/pivotview/fluent-dark.scss +1 -0
- package/styles/pivotview/fluent.css +2459 -0
- package/styles/pivotview/fluent.scss +1 -0
- package/styles/pivotview/highcontrast-light.css +47 -13
- package/styles/pivotview/highcontrast.css +47 -13
- package/styles/pivotview/material-dark.css +47 -13
- package/styles/pivotview/material.css +47 -13
- package/styles/pivotview/tailwind-dark.css +115 -61
- package/styles/pivotview/tailwind.css +115 -61
- package/styles/tailwind-dark.css +260 -198
- package/styles/tailwind.css +260 -198
|
@@ -678,9 +678,6 @@
|
|
|
678
678
|
background: #d8d8d8;
|
|
679
679
|
border-bottom: 0;
|
|
680
680
|
border-style: solid;
|
|
681
|
-
border-top: 1px solid #757575;
|
|
682
|
-
border-left: 1px solid #757575;
|
|
683
|
-
border-right: 1px solid #757575;
|
|
684
681
|
}
|
|
685
682
|
|
|
686
683
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
@@ -699,7 +696,7 @@
|
|
|
699
696
|
|
|
700
697
|
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
701
698
|
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
702
|
-
height: 34px;
|
|
699
|
+
height: 34px !important;
|
|
703
700
|
overflow: hidden;
|
|
704
701
|
padding-left: 10px;
|
|
705
702
|
}
|
|
@@ -711,6 +708,10 @@
|
|
|
711
708
|
font-size: 16px;
|
|
712
709
|
}
|
|
713
710
|
|
|
711
|
+
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
712
|
+
margin-left: 18px !important;
|
|
713
|
+
}
|
|
714
|
+
|
|
714
715
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
715
716
|
padding: 0 !important;
|
|
716
717
|
}
|
|
@@ -1050,6 +1051,18 @@
|
|
|
1050
1051
|
margin-top: 4px;
|
|
1051
1052
|
}
|
|
1052
1053
|
|
|
1054
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
1055
|
+
height: 62px;
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
1059
|
+
padding-left: 10px;
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1063
|
+
margin-left: 24px !important;
|
|
1064
|
+
}
|
|
1065
|
+
|
|
1053
1066
|
/*! PivotView theme */
|
|
1054
1067
|
.e-pivotview .e-nextspan {
|
|
1055
1068
|
display: inline-block;
|
|
@@ -1077,8 +1090,11 @@
|
|
|
1077
1090
|
|
|
1078
1091
|
.e-pivotview .e-grid
|
|
1079
1092
|
.e-rowcell {
|
|
1080
|
-
font-size: 13px;
|
|
1093
|
+
font-size: 13px !important;
|
|
1081
1094
|
padding-left: 8px;
|
|
1095
|
+
-webkit-user-select: none;
|
|
1096
|
+
-ms-user-select: none;
|
|
1097
|
+
user-select: none;
|
|
1082
1098
|
}
|
|
1083
1099
|
|
|
1084
1100
|
.e-pivotview .e-gtot,
|
|
@@ -1227,6 +1243,10 @@
|
|
|
1227
1243
|
|
|
1228
1244
|
.e-pivotview .e-grid .e-rowsheader {
|
|
1229
1245
|
padding-left: 8px;
|
|
1246
|
+
-webkit-user-select: none;
|
|
1247
|
+
-ms-user-select: none;
|
|
1248
|
+
user-select: none;
|
|
1249
|
+
-webkit-touch-callout: none;
|
|
1230
1250
|
}
|
|
1231
1251
|
|
|
1232
1252
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
@@ -1244,13 +1264,17 @@
|
|
|
1244
1264
|
padding-left: 8px !important;
|
|
1245
1265
|
}
|
|
1246
1266
|
|
|
1267
|
+
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1268
|
+
z-index: 1 !important;
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1247
1271
|
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1248
1272
|
.e-pivotview .sf-grid .e-columnsheader {
|
|
1249
1273
|
padding-right: 8px !important;
|
|
1250
1274
|
}
|
|
1251
1275
|
|
|
1252
|
-
.e-pivotview .
|
|
1253
|
-
.e-pivotview .
|
|
1276
|
+
.e-pivotview .e-grid .e-headercelldiv,
|
|
1277
|
+
.e-pivotview .e-grid .e-stackedheadercelldiv {
|
|
1254
1278
|
line-height: normal;
|
|
1255
1279
|
}
|
|
1256
1280
|
|
|
@@ -1268,7 +1292,7 @@
|
|
|
1268
1292
|
|
|
1269
1293
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1270
1294
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1271
|
-
padding-left:
|
|
1295
|
+
padding-left: 12px !important;
|
|
1272
1296
|
margin-top: 5px;
|
|
1273
1297
|
margin-top: 0;
|
|
1274
1298
|
}
|
|
@@ -1970,7 +1994,7 @@
|
|
|
1970
1994
|
|
|
1971
1995
|
.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
1972
1996
|
.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
1973
|
-
padding-right:
|
|
1997
|
+
padding-right: 12px !important;
|
|
1974
1998
|
}
|
|
1975
1999
|
|
|
1976
2000
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
@@ -2098,6 +2122,11 @@
|
|
|
2098
2122
|
padding-left: 8px !important;
|
|
2099
2123
|
}
|
|
2100
2124
|
|
|
2125
|
+
.e-bigger .e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler,
|
|
2126
|
+
.e-bigger.e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler {
|
|
2127
|
+
height: 100% !important;
|
|
2128
|
+
}
|
|
2129
|
+
|
|
2101
2130
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2102
2131
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2103
2132
|
.e-bigger .e-pivotview .e-headertext,
|
|
@@ -2109,6 +2138,11 @@
|
|
|
2109
2138
|
font-size: 14px !important;
|
|
2110
2139
|
}
|
|
2111
2140
|
|
|
2141
|
+
.e-bigger .e-pivotview .e-bigger .e-stackedheadercelldiv,
|
|
2142
|
+
.e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
|
|
2143
|
+
padding-left: 16px !important;
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2112
2146
|
.e-bigger .e-pivotview th .e-expand,
|
|
2113
2147
|
.e-bigger .e-pivotview th .e-collapse,
|
|
2114
2148
|
.e-bigger.e-pivotview th .e-expand,
|
|
@@ -2161,7 +2195,7 @@
|
|
|
2161
2195
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2162
2196
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2163
2197
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2164
|
-
font-size: 16px;
|
|
2198
|
+
font-size: 16px !important;
|
|
2165
2199
|
height: 20px;
|
|
2166
2200
|
width: 20px;
|
|
2167
2201
|
}
|
|
@@ -2250,7 +2284,7 @@
|
|
|
2250
2284
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2251
2285
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2252
2286
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2253
|
-
font-size: 16px;
|
|
2287
|
+
font-size: 16px !important;
|
|
2254
2288
|
height: 20px;
|
|
2255
2289
|
width: 20px;
|
|
2256
2290
|
}
|
|
@@ -2309,7 +2343,7 @@
|
|
|
2309
2343
|
|
|
2310
2344
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2311
2345
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2312
|
-
font-size: 13px;
|
|
2346
|
+
font-size: 13px !important;
|
|
2313
2347
|
}
|
|
2314
2348
|
|
|
2315
2349
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
@@ -2354,7 +2388,7 @@
|
|
|
2354
2388
|
.e-bigger .e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue,
|
|
2355
2389
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2356
2390
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2357
|
-
padding-right:
|
|
2391
|
+
padding-right: 16px !important;
|
|
2358
2392
|
}
|
|
2359
2393
|
|
|
2360
2394
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -2760,7 +2794,7 @@
|
|
|
2760
2794
|
}
|
|
2761
2795
|
|
|
2762
2796
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2763
|
-
padding-bottom:
|
|
2797
|
+
padding-bottom: 4px;
|
|
2764
2798
|
}
|
|
2765
2799
|
|
|
2766
2800
|
.e-pivot-formatting-dialog .e-format-delete-icon {
|
|
@@ -2788,7 +2822,7 @@
|
|
|
2788
2822
|
|
|
2789
2823
|
.e-pivot-formatting-dialog .e-format-font-color-picker {
|
|
2790
2824
|
margin-left: 0;
|
|
2791
|
-
margin-right:
|
|
2825
|
+
margin-right: 16px;
|
|
2792
2826
|
}
|
|
2793
2827
|
|
|
2794
2828
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
@@ -2911,7 +2945,7 @@
|
|
|
2911
2945
|
}
|
|
2912
2946
|
|
|
2913
2947
|
.e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker {
|
|
2914
|
-
margin-left:
|
|
2948
|
+
margin-left: 16px;
|
|
2915
2949
|
margin-right: 0;
|
|
2916
2950
|
}
|
|
2917
2951
|
|
|
@@ -2933,6 +2967,10 @@
|
|
|
2933
2967
|
padding-left: 12px;
|
|
2934
2968
|
}
|
|
2935
2969
|
|
|
2970
|
+
.e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker {
|
|
2971
|
+
margin-right: 0;
|
|
2972
|
+
}
|
|
2973
|
+
|
|
2936
2974
|
.e-bigger.e-pivot-formatting-dialog,
|
|
2937
2975
|
.e-bigger .e-pivot-formatting-dialog {
|
|
2938
2976
|
min-width: 707px !important;
|
|
@@ -3027,7 +3065,7 @@
|
|
|
3027
3065
|
color: #000;
|
|
3028
3066
|
font-size: 13px;
|
|
3029
3067
|
margin-bottom: 4px;
|
|
3030
|
-
margin-top:
|
|
3068
|
+
margin-top: 12px;
|
|
3031
3069
|
overflow: hidden;
|
|
3032
3070
|
padding: 4px 0;
|
|
3033
3071
|
padding-bottom: 0;
|
|
@@ -3061,7 +3099,9 @@
|
|
|
3061
3099
|
|
|
3062
3100
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
3063
3101
|
color: #000;
|
|
3102
|
+
float: right !important;
|
|
3064
3103
|
margin: 0;
|
|
3104
|
+
margin-right: 12px !important;
|
|
3065
3105
|
}
|
|
3066
3106
|
|
|
3067
3107
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
@@ -3084,6 +3124,13 @@
|
|
|
3084
3124
|
width: 24px;
|
|
3085
3125
|
}
|
|
3086
3126
|
|
|
3127
|
+
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons.e-format {
|
|
3128
|
+
float: right;
|
|
3129
|
+
font-size: 20px;
|
|
3130
|
+
margin-right: 12px;
|
|
3131
|
+
padding-top: 10px;
|
|
3132
|
+
}
|
|
3133
|
+
|
|
3087
3134
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-iconspace {
|
|
3088
3135
|
cursor: pointer;
|
|
3089
3136
|
display: inline-block;
|
|
@@ -3106,9 +3153,9 @@
|
|
|
3106
3153
|
font-size: 14px;
|
|
3107
3154
|
height: 24px;
|
|
3108
3155
|
margin-right: 4px;
|
|
3109
|
-
padding: 5px;
|
|
3110
3156
|
pointer-events: auto;
|
|
3111
3157
|
width: 24px;
|
|
3158
|
+
padding: 8px 8px 8px 12px;
|
|
3112
3159
|
}
|
|
3113
3160
|
|
|
3114
3161
|
.e-pivot-calc-dialog-div .e-dlg-header {
|
|
@@ -3224,7 +3271,7 @@
|
|
|
3224
3271
|
}
|
|
3225
3272
|
|
|
3226
3273
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
3227
|
-
height:
|
|
3274
|
+
height: 474px;
|
|
3228
3275
|
width: 50%;
|
|
3229
3276
|
}
|
|
3230
3277
|
|
|
@@ -3236,7 +3283,7 @@
|
|
|
3236
3283
|
|
|
3237
3284
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
3238
3285
|
display: inline-block;
|
|
3239
|
-
height:
|
|
3286
|
+
height: 441px;
|
|
3240
3287
|
overflow: auto;
|
|
3241
3288
|
width: 100%;
|
|
3242
3289
|
}
|
|
@@ -3294,6 +3341,7 @@
|
|
|
3294
3341
|
.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-item div.e-icons {
|
|
3295
3342
|
padding: 0;
|
|
3296
3343
|
height: auto;
|
|
3344
|
+
float: none !important;
|
|
3297
3345
|
}
|
|
3298
3346
|
|
|
3299
3347
|
.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 li {
|
|
@@ -3464,12 +3512,12 @@
|
|
|
3464
3512
|
|
|
3465
3513
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
3466
3514
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
3467
|
-
height:
|
|
3515
|
+
height: 530px;
|
|
3468
3516
|
}
|
|
3469
3517
|
|
|
3470
3518
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div,
|
|
3471
3519
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-treeview-outer-div {
|
|
3472
|
-
height:
|
|
3520
|
+
height: 491px;
|
|
3473
3521
|
}
|
|
3474
3522
|
|
|
3475
3523
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div .e-pivot-treeview-outer .e-pivot-all-field-title,
|
|
@@ -3775,7 +3823,7 @@
|
|
|
3775
3823
|
}
|
|
3776
3824
|
|
|
3777
3825
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content {
|
|
3778
|
-
padding: 0
|
|
3826
|
+
padding: 0 24px 10px;
|
|
3779
3827
|
}
|
|
3780
3828
|
|
|
3781
3829
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content .e-field-option-wrapper .e-field-name-text-wrapper {
|
|
@@ -4579,7 +4627,7 @@
|
|
|
4579
4627
|
|
|
4580
4628
|
.e-bigger .e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content,
|
|
4581
4629
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content {
|
|
4582
|
-
padding: 0
|
|
4630
|
+
padding: 0 28px 10px;
|
|
4583
4631
|
}
|
|
4584
4632
|
|
|
4585
4633
|
.e-bigger .e-pivotfieldlist-wrapper .e-value-field-settings .e-field-name-text-wrapper,
|
|
@@ -4639,6 +4687,7 @@
|
|
|
4639
4687
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-base-item-option-wrapper .e-type-option-text,
|
|
4640
4688
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-base-item-option-wrapper .e-caption-input-text {
|
|
4641
4689
|
font-size: 14px;
|
|
4690
|
+
padding-bottom: 6px;
|
|
4642
4691
|
}
|
|
4643
4692
|
|
|
4644
4693
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -5054,7 +5103,7 @@
|
|
|
5054
5103
|
color: #000;
|
|
5055
5104
|
cursor: pointer;
|
|
5056
5105
|
font-size: 14px;
|
|
5057
|
-
height: 20px;
|
|
5106
|
+
height: 20px !important;
|
|
5058
5107
|
padding: 5px 0 0 4px;
|
|
5059
5108
|
width: 20px;
|
|
5060
5109
|
}
|
|
@@ -5974,6 +6023,7 @@
|
|
|
5974
6023
|
height: 24px;
|
|
5975
6024
|
padding-left: 10px;
|
|
5976
6025
|
width: 24px;
|
|
6026
|
+
font-size: 14px !important;
|
|
5977
6027
|
}
|
|
5978
6028
|
|
|
5979
6029
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
@@ -6527,7 +6577,7 @@
|
|
|
6527
6577
|
color: #000;
|
|
6528
6578
|
cursor: pointer;
|
|
6529
6579
|
font-size: 14px;
|
|
6530
|
-
height: 20px;
|
|
6580
|
+
height: 20px !important;
|
|
6531
6581
|
padding: 5px 0 0 4px;
|
|
6532
6582
|
width: 20px;
|
|
6533
6583
|
}
|
|
@@ -7447,6 +7497,7 @@
|
|
|
7447
7497
|
height: 24px;
|
|
7448
7498
|
padding-left: 10px;
|
|
7449
7499
|
width: 24px;
|
|
7500
|
+
font-size: 14px !important;
|
|
7450
7501
|
}
|
|
7451
7502
|
|
|
7452
7503
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
@@ -7842,7 +7893,7 @@
|
|
|
7842
7893
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-right-axis-fields,
|
|
7843
7894
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-left-axis-fields,
|
|
7844
7895
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-right-axis-fields {
|
|
7845
|
-
padding-left: 16px;
|
|
7896
|
+
padding-left: 16px !important;
|
|
7846
7897
|
}
|
|
7847
7898
|
|
|
7848
7899
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-field-header,
|
|
@@ -7868,7 +7919,7 @@
|
|
|
7868
7919
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-ascend,
|
|
7869
7920
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-descend {
|
|
7870
7921
|
font-size: 16px;
|
|
7871
|
-
height: 24px;
|
|
7922
|
+
height: 24px !important;
|
|
7872
7923
|
padding: 5px 0 0 4px;
|
|
7873
7924
|
width: 24px;
|
|
7874
7925
|
}
|
|
@@ -8307,7 +8358,7 @@
|
|
|
8307
8358
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-ascend,
|
|
8308
8359
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-descend {
|
|
8309
8360
|
font-size: 16px;
|
|
8310
|
-
height: 24px;
|
|
8361
|
+
height: 24px !important;
|
|
8311
8362
|
padding: 5px 0 0 4px;
|
|
8312
8363
|
width: 24px;
|
|
8313
8364
|
}
|