@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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-pivotview/styles/pivotview/fluent.scss';
|
|
@@ -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 {
|
|
@@ -678,9 +678,6 @@
|
|
|
678
678
|
background: #262626;
|
|
679
679
|
border-bottom: 0;
|
|
680
680
|
border-style: solid;
|
|
681
|
-
border-top: 1px solid #969696;
|
|
682
|
-
border-left: 1px solid #969696;
|
|
683
|
-
border-right: 1px solid #969696;
|
|
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: 38px;
|
|
699
|
+
height: 38px !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: 13px !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: 14px;
|
|
2198
|
+
font-size: 14px !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: 14px;
|
|
2287
|
+
font-size: 14px !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 {
|
|
@@ -679,9 +679,6 @@
|
|
|
679
679
|
background: #212121;
|
|
680
680
|
border-bottom: 0;
|
|
681
681
|
border-style: solid;
|
|
682
|
-
border-top: 1px solid #e0e0e0;
|
|
683
|
-
border-left: 1px solid #e0e0e0;
|
|
684
|
-
border-right: 1px solid #e0e0e0;
|
|
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: 40px;
|
|
700
|
+
height: 40px !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: 12px;
|
|
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 {
|
|
@@ -680,9 +680,6 @@
|
|
|
680
680
|
background: #f5f5f5;
|
|
681
681
|
border-bottom: 0;
|
|
682
682
|
border-style: solid;
|
|
683
|
-
border-top: 1px solid #e0e0e0;
|
|
684
|
-
border-left: 1px solid #e0e0e0;
|
|
685
|
-
border-right: 1px solid #e0e0e0;
|
|
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: 12px;
|
|
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 {
|