@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
|
@@ -680,9 +680,6 @@
|
|
|
680
680
|
background: #131313;
|
|
681
681
|
border-bottom: 0;
|
|
682
682
|
border-style: solid;
|
|
683
|
-
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
684
|
-
border-left: 1px solid rgba(255, 255, 255, 0.12);
|
|
685
|
-
border-right: 1px solid rgba(255, 255, 255, 0.12);
|
|
686
683
|
}
|
|
687
684
|
|
|
688
685
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
@@ -701,7 +698,7 @@
|
|
|
701
698
|
|
|
702
699
|
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
703
700
|
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
704
|
-
height: 40px;
|
|
701
|
+
height: 40px !important;
|
|
705
702
|
overflow: hidden;
|
|
706
703
|
padding-left: 10px;
|
|
707
704
|
}
|
|
@@ -713,6 +710,10 @@
|
|
|
713
710
|
font-size: 16px;
|
|
714
711
|
}
|
|
715
712
|
|
|
713
|
+
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
714
|
+
margin-left: 18px !important;
|
|
715
|
+
}
|
|
716
|
+
|
|
716
717
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
717
718
|
padding: 0 !important;
|
|
718
719
|
}
|
|
@@ -1052,6 +1053,18 @@
|
|
|
1052
1053
|
margin-top: 8px;
|
|
1053
1054
|
}
|
|
1054
1055
|
|
|
1056
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
1057
|
+
height: 62px;
|
|
1058
|
+
}
|
|
1059
|
+
|
|
1060
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
1061
|
+
padding-left: 10px;
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1065
|
+
margin-left: 24px !important;
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1055
1068
|
/*! PivotView theme */
|
|
1056
1069
|
.e-pivotview .e-nextspan {
|
|
1057
1070
|
display: inline-block;
|
|
@@ -1079,8 +1092,11 @@
|
|
|
1079
1092
|
|
|
1080
1093
|
.e-pivotview .e-grid
|
|
1081
1094
|
.e-rowcell {
|
|
1082
|
-
font-size: 13px;
|
|
1095
|
+
font-size: 13px !important;
|
|
1083
1096
|
padding-left: 8px;
|
|
1097
|
+
-webkit-user-select: none;
|
|
1098
|
+
-ms-user-select: none;
|
|
1099
|
+
user-select: none;
|
|
1084
1100
|
}
|
|
1085
1101
|
|
|
1086
1102
|
.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
|
}
|
|
1274
1298
|
|
|
@@ -1972,7 +1996,7 @@
|
|
|
1972
1996
|
|
|
1973
1997
|
.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
1974
1998
|
.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
1975
|
-
padding-right:
|
|
1999
|
+
padding-right: 12px !important;
|
|
1976
2000
|
}
|
|
1977
2001
|
|
|
1978
2002
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
@@ -2100,6 +2124,11 @@
|
|
|
2100
2124
|
padding-left: 8px !important;
|
|
2101
2125
|
}
|
|
2102
2126
|
|
|
2127
|
+
.e-bigger .e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler,
|
|
2128
|
+
.e-bigger.e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler {
|
|
2129
|
+
height: 100% !important;
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2103
2132
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2104
2133
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2105
2134
|
.e-bigger .e-pivotview .e-headertext,
|
|
@@ -2111,6 +2140,11 @@
|
|
|
2111
2140
|
font-size: 13px !important;
|
|
2112
2141
|
}
|
|
2113
2142
|
|
|
2143
|
+
.e-bigger .e-pivotview .e-bigger .e-stackedheadercelldiv,
|
|
2144
|
+
.e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
|
|
2145
|
+
padding-left: 16px !important;
|
|
2146
|
+
}
|
|
2147
|
+
|
|
2114
2148
|
.e-bigger .e-pivotview th .e-expand,
|
|
2115
2149
|
.e-bigger .e-pivotview th .e-collapse,
|
|
2116
2150
|
.e-bigger.e-pivotview th .e-expand,
|
|
@@ -2163,7 +2197,7 @@
|
|
|
2163
2197
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2164
2198
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2165
2199
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2166
|
-
font-size: 14px;
|
|
2200
|
+
font-size: 14px !important;
|
|
2167
2201
|
height: 20px;
|
|
2168
2202
|
width: 20px;
|
|
2169
2203
|
}
|
|
@@ -2252,7 +2286,7 @@
|
|
|
2252
2286
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2253
2287
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2254
2288
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2255
|
-
font-size: 14px;
|
|
2289
|
+
font-size: 14px !important;
|
|
2256
2290
|
height: 20px;
|
|
2257
2291
|
width: 20px;
|
|
2258
2292
|
}
|
|
@@ -2311,7 +2345,7 @@
|
|
|
2311
2345
|
|
|
2312
2346
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2313
2347
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2314
|
-
font-size: 13px;
|
|
2348
|
+
font-size: 13px !important;
|
|
2315
2349
|
}
|
|
2316
2350
|
|
|
2317
2351
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
@@ -2356,7 +2390,7 @@
|
|
|
2356
2390
|
.e-bigger .e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue,
|
|
2357
2391
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2358
2392
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2359
|
-
padding-right:
|
|
2393
|
+
padding-right: 16px !important;
|
|
2360
2394
|
}
|
|
2361
2395
|
|
|
2362
2396
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -679,9 +679,6 @@
|
|
|
679
679
|
background: #f5f5f5;
|
|
680
680
|
border-bottom: 0;
|
|
681
681
|
border-style: solid;
|
|
682
|
-
border-top: 1px solid rgba(51, 51, 51, 0.12);
|
|
683
|
-
border-left: 1px solid rgba(51, 51, 51, 0.12);
|
|
684
|
-
border-right: 1px solid rgba(51, 51, 51, 0.12);
|
|
685
682
|
}
|
|
686
683
|
|
|
687
684
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
@@ -700,7 +697,7 @@
|
|
|
700
697
|
|
|
701
698
|
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
702
699
|
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
703
|
-
height: 38px;
|
|
700
|
+
height: 38px !important;
|
|
704
701
|
overflow: hidden;
|
|
705
702
|
padding-left: 10px;
|
|
706
703
|
}
|
|
@@ -712,6 +709,10 @@
|
|
|
712
709
|
font-size: 16px;
|
|
713
710
|
}
|
|
714
711
|
|
|
712
|
+
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
713
|
+
margin-left: 18px !important;
|
|
714
|
+
}
|
|
715
|
+
|
|
715
716
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
716
717
|
padding: 0 !important;
|
|
717
718
|
}
|
|
@@ -1051,6 +1052,18 @@
|
|
|
1051
1052
|
margin-top: 8px;
|
|
1052
1053
|
}
|
|
1053
1054
|
|
|
1055
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
1056
|
+
height: 62px;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
1060
|
+
padding-left: 10px;
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1064
|
+
margin-left: 24px !important;
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1054
1067
|
/*! PivotView theme */
|
|
1055
1068
|
.e-pivotview .e-nextspan {
|
|
1056
1069
|
display: inline-block;
|
|
@@ -1078,8 +1091,11 @@
|
|
|
1078
1091
|
|
|
1079
1092
|
.e-pivotview .e-grid
|
|
1080
1093
|
.e-rowcell {
|
|
1081
|
-
font-size: 13px;
|
|
1094
|
+
font-size: 13px !important;
|
|
1082
1095
|
padding-left: 8px;
|
|
1096
|
+
-webkit-user-select: none;
|
|
1097
|
+
-ms-user-select: none;
|
|
1098
|
+
user-select: none;
|
|
1083
1099
|
}
|
|
1084
1100
|
|
|
1085
1101
|
.e-pivotview .e-gtot,
|
|
@@ -1226,6 +1242,10 @@
|
|
|
1226
1242
|
|
|
1227
1243
|
.e-pivotview .e-grid .e-rowsheader {
|
|
1228
1244
|
padding-left: 8px;
|
|
1245
|
+
-webkit-user-select: none;
|
|
1246
|
+
-ms-user-select: none;
|
|
1247
|
+
user-select: none;
|
|
1248
|
+
-webkit-touch-callout: none;
|
|
1229
1249
|
}
|
|
1230
1250
|
|
|
1231
1251
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
@@ -1243,13 +1263,17 @@
|
|
|
1243
1263
|
padding-left: 8px !important;
|
|
1244
1264
|
}
|
|
1245
1265
|
|
|
1266
|
+
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1267
|
+
z-index: 1 !important;
|
|
1268
|
+
}
|
|
1269
|
+
|
|
1246
1270
|
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1247
1271
|
.e-pivotview .sf-grid .e-columnsheader {
|
|
1248
1272
|
padding-right: 8px !important;
|
|
1249
1273
|
}
|
|
1250
1274
|
|
|
1251
|
-
.e-pivotview .
|
|
1252
|
-
.e-pivotview .
|
|
1275
|
+
.e-pivotview .e-grid .e-headercelldiv,
|
|
1276
|
+
.e-pivotview .e-grid .e-stackedheadercelldiv {
|
|
1253
1277
|
line-height: normal;
|
|
1254
1278
|
}
|
|
1255
1279
|
|
|
@@ -1267,7 +1291,7 @@
|
|
|
1267
1291
|
|
|
1268
1292
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1269
1293
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1270
|
-
padding-left:
|
|
1294
|
+
padding-left: 12px !important;
|
|
1271
1295
|
margin-top: 5px;
|
|
1272
1296
|
}
|
|
1273
1297
|
|
|
@@ -1971,7 +1995,7 @@
|
|
|
1971
1995
|
|
|
1972
1996
|
.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
1973
1997
|
.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
1974
|
-
padding-right:
|
|
1998
|
+
padding-right: 12px !important;
|
|
1975
1999
|
}
|
|
1976
2000
|
|
|
1977
2001
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
@@ -2099,6 +2123,11 @@
|
|
|
2099
2123
|
padding-left: 8px !important;
|
|
2100
2124
|
}
|
|
2101
2125
|
|
|
2126
|
+
.e-bigger .e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler,
|
|
2127
|
+
.e-bigger.e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler {
|
|
2128
|
+
height: 100% !important;
|
|
2129
|
+
}
|
|
2130
|
+
|
|
2102
2131
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2103
2132
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2104
2133
|
.e-bigger .e-pivotview .e-headertext,
|
|
@@ -2110,6 +2139,11 @@
|
|
|
2110
2139
|
font-size: 13px !important;
|
|
2111
2140
|
}
|
|
2112
2141
|
|
|
2142
|
+
.e-bigger .e-pivotview .e-bigger .e-stackedheadercelldiv,
|
|
2143
|
+
.e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
|
|
2144
|
+
padding-left: 16px !important;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2113
2147
|
.e-bigger .e-pivotview th .e-expand,
|
|
2114
2148
|
.e-bigger .e-pivotview th .e-collapse,
|
|
2115
2149
|
.e-bigger.e-pivotview th .e-expand,
|
|
@@ -2162,7 +2196,7 @@
|
|
|
2162
2196
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2163
2197
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2164
2198
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2165
|
-
font-size: 14px;
|
|
2199
|
+
font-size: 14px !important;
|
|
2166
2200
|
height: 20px;
|
|
2167
2201
|
width: 20px;
|
|
2168
2202
|
}
|
|
@@ -2251,7 +2285,7 @@
|
|
|
2251
2285
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2252
2286
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2253
2287
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2254
|
-
font-size: 14px;
|
|
2288
|
+
font-size: 14px !important;
|
|
2255
2289
|
height: 20px;
|
|
2256
2290
|
width: 20px;
|
|
2257
2291
|
}
|
|
@@ -2310,7 +2344,7 @@
|
|
|
2310
2344
|
|
|
2311
2345
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2312
2346
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2313
|
-
font-size: 13px;
|
|
2347
|
+
font-size: 13px !important;
|
|
2314
2348
|
}
|
|
2315
2349
|
|
|
2316
2350
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
@@ -2355,7 +2389,7 @@
|
|
|
2355
2389
|
.e-bigger .e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue,
|
|
2356
2390
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2357
2391
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2358
|
-
padding-right:
|
|
2392
|
+
padding-right: 16px !important;
|
|
2359
2393
|
}
|
|
2360
2394
|
|
|
2361
2395
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|
|
@@ -717,9 +717,6 @@
|
|
|
717
717
|
background: #f2f4f6;
|
|
718
718
|
border-bottom: 0;
|
|
719
719
|
border-style: solid;
|
|
720
|
-
border-top: 1px solid #dee2e6;
|
|
721
|
-
border-left: 1px solid #dee2e6;
|
|
722
|
-
border-right: 1px solid #dee2e6;
|
|
723
720
|
}
|
|
724
721
|
|
|
725
722
|
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
@@ -740,7 +737,7 @@
|
|
|
740
737
|
|
|
741
738
|
.e-pivotview .e-pivot-toolbar .e-menu-wrapper ul .e-menu-item,
|
|
742
739
|
.e-pivotview .e-pivot-toolbar .e-menu-container ul .e-menu-item {
|
|
743
|
-
height: 30px;
|
|
740
|
+
height: 30px !important;
|
|
744
741
|
overflow: hidden;
|
|
745
742
|
padding-left: 10px;
|
|
746
743
|
background-color: #f8f9fa;
|
|
@@ -773,6 +770,10 @@
|
|
|
773
770
|
color: #ffffff;
|
|
774
771
|
}
|
|
775
772
|
|
|
773
|
+
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
774
|
+
margin-left: 18px !important;
|
|
775
|
+
}
|
|
776
|
+
|
|
776
777
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
777
778
|
padding: 0 !important;
|
|
778
779
|
}
|
|
@@ -1126,6 +1127,18 @@
|
|
|
1126
1127
|
margin-top: 2px;
|
|
1127
1128
|
}
|
|
1128
1129
|
|
|
1130
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
1131
|
+
height: 62px;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
1135
|
+
padding-left: 10px;
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1139
|
+
margin-left: 24px !important;
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1129
1142
|
/*! PivotView theme */
|
|
1130
1143
|
.e-pivotview .e-nextspan {
|
|
1131
1144
|
display: inline-block;
|
|
@@ -1153,8 +1166,11 @@
|
|
|
1153
1166
|
|
|
1154
1167
|
.e-pivotview .e-grid
|
|
1155
1168
|
.e-rowcell {
|
|
1156
|
-
font-size: 13px;
|
|
1169
|
+
font-size: 13px !important;
|
|
1157
1170
|
padding-left: 8px;
|
|
1171
|
+
-webkit-user-select: none;
|
|
1172
|
+
-ms-user-select: none;
|
|
1173
|
+
user-select: none;
|
|
1158
1174
|
}
|
|
1159
1175
|
|
|
1160
1176
|
.e-pivotview .e-gtot,
|
|
@@ -1307,6 +1323,10 @@
|
|
|
1307
1323
|
|
|
1308
1324
|
.e-pivotview .e-grid .e-rowsheader {
|
|
1309
1325
|
padding-left: 8px;
|
|
1326
|
+
-webkit-user-select: none;
|
|
1327
|
+
-ms-user-select: none;
|
|
1328
|
+
user-select: none;
|
|
1329
|
+
-webkit-touch-callout: none;
|
|
1310
1330
|
}
|
|
1311
1331
|
|
|
1312
1332
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
@@ -1325,13 +1345,17 @@
|
|
|
1325
1345
|
padding-left: 8px !important;
|
|
1326
1346
|
}
|
|
1327
1347
|
|
|
1348
|
+
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1349
|
+
z-index: 1 !important;
|
|
1350
|
+
}
|
|
1351
|
+
|
|
1328
1352
|
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1329
1353
|
.e-pivotview .sf-grid .e-columnsheader {
|
|
1330
1354
|
padding-right: 8px !important;
|
|
1331
1355
|
}
|
|
1332
1356
|
|
|
1333
|
-
.e-pivotview .
|
|
1334
|
-
.e-pivotview .
|
|
1357
|
+
.e-pivotview .e-grid .e-headercelldiv,
|
|
1358
|
+
.e-pivotview .e-grid .e-stackedheadercelldiv {
|
|
1335
1359
|
line-height: normal;
|
|
1336
1360
|
}
|
|
1337
1361
|
|
|
@@ -1349,7 +1373,7 @@
|
|
|
1349
1373
|
|
|
1350
1374
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1351
1375
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1352
|
-
padding-left:
|
|
1376
|
+
padding-left: 12px !important;
|
|
1353
1377
|
margin-top: 5px;
|
|
1354
1378
|
}
|
|
1355
1379
|
|
|
@@ -1549,7 +1573,7 @@
|
|
|
1549
1573
|
font-weight: normal;
|
|
1550
1574
|
height: 24px;
|
|
1551
1575
|
line-height: .9em;
|
|
1552
|
-
padding:
|
|
1576
|
+
padding: 4px 8px;
|
|
1553
1577
|
text-transform: none;
|
|
1554
1578
|
vertical-align: bottom;
|
|
1555
1579
|
z-index: 1;
|
|
@@ -1773,7 +1797,7 @@
|
|
|
1773
1797
|
}
|
|
1774
1798
|
|
|
1775
1799
|
.e-pivotview .e-group-row .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
1776
|
-
padding:
|
|
1800
|
+
padding: 4px 8px;
|
|
1777
1801
|
width: 180px;
|
|
1778
1802
|
font-weight: 400;
|
|
1779
1803
|
}
|
|
@@ -2077,7 +2101,7 @@
|
|
|
2077
2101
|
|
|
2078
2102
|
.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2079
2103
|
.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2080
|
-
padding-right:
|
|
2104
|
+
padding-right: 12px !important;
|
|
2081
2105
|
}
|
|
2082
2106
|
|
|
2083
2107
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
@@ -2242,6 +2266,11 @@
|
|
|
2242
2266
|
padding-left: 8px !important;
|
|
2243
2267
|
}
|
|
2244
2268
|
|
|
2269
|
+
.e-bigger .e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler,
|
|
2270
|
+
.e-bigger.e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler {
|
|
2271
|
+
height: 100% !important;
|
|
2272
|
+
}
|
|
2273
|
+
|
|
2245
2274
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2246
2275
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2247
2276
|
.e-bigger .e-pivotview .e-headertext,
|
|
@@ -2254,6 +2283,11 @@
|
|
|
2254
2283
|
font-size: 13px !important;
|
|
2255
2284
|
}
|
|
2256
2285
|
|
|
2286
|
+
.e-bigger .e-pivotview .e-bigger .e-stackedheadercelldiv,
|
|
2287
|
+
.e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
|
|
2288
|
+
padding-left: 16px !important;
|
|
2289
|
+
}
|
|
2290
|
+
|
|
2257
2291
|
.e-bigger .e-pivotview th .e-expand,
|
|
2258
2292
|
.e-bigger .e-pivotview th .e-collapse,
|
|
2259
2293
|
.e-bigger.e-pivotview th .e-expand,
|
|
@@ -2307,7 +2341,7 @@
|
|
|
2307
2341
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2308
2342
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2309
2343
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2310
|
-
font-size: 12px;
|
|
2344
|
+
font-size: 12px !important;
|
|
2311
2345
|
height: 20px;
|
|
2312
2346
|
width: 20px;
|
|
2313
2347
|
padding-left: 12px;
|
|
@@ -2425,7 +2459,7 @@
|
|
|
2425
2459
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2426
2460
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2427
2461
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2428
|
-
font-size: 12px;
|
|
2462
|
+
font-size: 12px !important;
|
|
2429
2463
|
height: 20px;
|
|
2430
2464
|
width: 20px;
|
|
2431
2465
|
padding-left: 12px;
|
|
@@ -2486,7 +2520,7 @@
|
|
|
2486
2520
|
|
|
2487
2521
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2488
2522
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2489
|
-
font-size: 13px;
|
|
2523
|
+
font-size: 13px !important;
|
|
2490
2524
|
}
|
|
2491
2525
|
|
|
2492
2526
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
@@ -2531,7 +2565,7 @@
|
|
|
2531
2565
|
.e-bigger .e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue,
|
|
2532
2566
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2533
2567
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2534
|
-
padding-right:
|
|
2568
|
+
padding-right: 16px !important;
|
|
2535
2569
|
}
|
|
2536
2570
|
|
|
2537
2571
|
.e-content-placeholder.e-pivotview.e-placeholder-pivotview {
|