@syncfusion/ej2-vue-pivotview 19.4.55 → 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 +16 -0
- package/dist/ej2-vue-pivotview.umd.min.js +2 -2
- 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
package/styles/tailwind.css
CHANGED
|
@@ -5,180 +5,179 @@
|
|
|
5
5
|
/*! component's common definitions and variables */
|
|
6
6
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
7
7
|
.e-pivotview .e-expand::before {
|
|
8
|
-
content: '\
|
|
8
|
+
content: '\e75c';
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.e-pivotview .e-collapse::before {
|
|
12
|
-
content: '\
|
|
12
|
+
content: '\e734';
|
|
13
13
|
}
|
|
14
14
|
|
|
15
15
|
.e-pivotview.e-rtl .e-expand::before {
|
|
16
|
-
content: '\
|
|
16
|
+
content: '\e738';
|
|
17
17
|
}
|
|
18
18
|
|
|
19
19
|
.e-pivotview .e-sort::before {
|
|
20
|
-
content: '\
|
|
20
|
+
content: '\e7df';
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
.e-pivotview .e-pv-filter::before {
|
|
24
|
-
content: '\
|
|
24
|
+
content: '\e7f7';
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
.e-pivotview .e-pv-filtered::before {
|
|
28
|
-
|
|
29
|
-
content: '\e7c5';
|
|
28
|
+
content: '\e735';
|
|
30
29
|
}
|
|
31
30
|
|
|
32
31
|
.e-pivotview .e-remove::before {
|
|
33
|
-
content: '\
|
|
32
|
+
content: '\e7e7';
|
|
34
33
|
}
|
|
35
34
|
|
|
36
35
|
.e-pivotview .e-selected-option-icon::before {
|
|
37
|
-
content: '\
|
|
36
|
+
content: '\e72b';
|
|
38
37
|
}
|
|
39
38
|
|
|
40
39
|
.e-pivotview .e-clear-filter-icon::before {
|
|
41
|
-
content: '\
|
|
40
|
+
content: '\e72c';
|
|
42
41
|
}
|
|
43
42
|
|
|
44
43
|
.e-pivotview .e-dropdown-icon::before {
|
|
45
|
-
content: '\
|
|
44
|
+
content: '\e729';
|
|
46
45
|
}
|
|
47
46
|
|
|
48
47
|
.e-pivotview .e-export::before {
|
|
49
|
-
content: '\
|
|
48
|
+
content: '\e72e';
|
|
50
49
|
}
|
|
51
50
|
|
|
52
51
|
.e-pivotview .e-new-report::before {
|
|
53
|
-
content: '\
|
|
52
|
+
content: '\e7dc';
|
|
54
53
|
}
|
|
55
54
|
|
|
56
55
|
.e-pivotview .e-save-report::before {
|
|
57
|
-
content: '\
|
|
56
|
+
content: '\e7c8';
|
|
58
57
|
}
|
|
59
58
|
|
|
60
59
|
.e-pivotview .e-saveas-report::before {
|
|
61
|
-
content: '\
|
|
60
|
+
content: '\e7ae';
|
|
62
61
|
}
|
|
63
62
|
|
|
64
63
|
.e-pivotview .e-rename-report::before {
|
|
65
|
-
content: '\
|
|
64
|
+
content: '\e76d';
|
|
66
65
|
}
|
|
67
66
|
|
|
68
67
|
.e-pivotview .e-remove-report::before {
|
|
69
|
-
content: '\
|
|
68
|
+
content: '\e820';
|
|
70
69
|
}
|
|
71
70
|
|
|
72
71
|
.e-pivotview .e-sub-total::before {
|
|
73
|
-
content: '\
|
|
72
|
+
content: '\e702';
|
|
74
73
|
}
|
|
75
74
|
|
|
76
75
|
.e-pivotview .e-grand-total::before {
|
|
77
|
-
content: '\
|
|
76
|
+
content: '\e74d';
|
|
78
77
|
}
|
|
79
78
|
|
|
80
79
|
.e-pivotview .e-toolbar-fieldlist::before {
|
|
81
|
-
content: '\
|
|
80
|
+
content: '\e751';
|
|
82
81
|
}
|
|
83
82
|
|
|
84
83
|
.e-pivotview .e-toolbar-grid::before {
|
|
85
|
-
content: '\
|
|
84
|
+
content: '\e7e9';
|
|
86
85
|
}
|
|
87
86
|
|
|
88
87
|
.e-pivotview .e-toolbar-chart::before {
|
|
89
|
-
content: '\
|
|
88
|
+
content: '\e826';
|
|
90
89
|
}
|
|
91
90
|
|
|
92
91
|
.e-pivotview .e-toolbar-formatting::before {
|
|
93
|
-
content: '\
|
|
92
|
+
content: '\e71b';
|
|
94
93
|
}
|
|
95
94
|
|
|
96
95
|
.e-pivotview .e-pivot-button .e-edit::before {
|
|
97
|
-
content: '\
|
|
96
|
+
content: '\e730';
|
|
98
97
|
}
|
|
99
98
|
|
|
100
99
|
.e-pivotview .e-sort-ascend-icon::before {
|
|
101
|
-
content: '\
|
|
100
|
+
content: '\e7a3';
|
|
102
101
|
}
|
|
103
102
|
|
|
104
103
|
.e-pivotview .e-sort-descend-icon::before {
|
|
105
|
-
content: '\
|
|
104
|
+
content: '\e7b6';
|
|
106
105
|
}
|
|
107
106
|
|
|
108
107
|
.e-pivotview-pdf-export::before {
|
|
109
|
-
content: '\
|
|
108
|
+
content: '\e700';
|
|
110
109
|
}
|
|
111
110
|
|
|
112
111
|
.e-pivotview-excel-export::before {
|
|
113
|
-
content: '\
|
|
112
|
+
content: '\e7c1';
|
|
114
113
|
}
|
|
115
114
|
|
|
116
115
|
.e-pivotview-csv-export::before {
|
|
117
|
-
content: '\
|
|
116
|
+
content: '\e7ba';
|
|
118
117
|
}
|
|
119
118
|
|
|
120
119
|
.e-pivotview-png-export::before {
|
|
121
|
-
content: '\
|
|
120
|
+
content: '\e7ee';
|
|
122
121
|
}
|
|
123
122
|
|
|
124
123
|
.e-pivotview-jpeg-export::before {
|
|
125
|
-
content: '\
|
|
124
|
+
content: '\e786';
|
|
126
125
|
}
|
|
127
126
|
|
|
128
127
|
.e-pivotview-svg-export::before {
|
|
129
|
-
content: '\
|
|
128
|
+
content: '\e7cf';
|
|
130
129
|
}
|
|
131
130
|
|
|
132
131
|
.e-mdx::before {
|
|
133
|
-
content: '\
|
|
132
|
+
content: '\e7ac';
|
|
134
133
|
}
|
|
135
134
|
|
|
136
135
|
.e-pivotview-select-icon::before {
|
|
137
|
-
content: '\
|
|
136
|
+
content: '\e774';
|
|
138
137
|
}
|
|
139
138
|
|
|
140
139
|
.e-pivotview-export::before {
|
|
141
|
-
content: '\
|
|
140
|
+
content: '\e72e';
|
|
142
141
|
}
|
|
143
142
|
|
|
144
143
|
.e-pivotview-grid::before {
|
|
145
|
-
content: '\
|
|
144
|
+
content: '\e7e9';
|
|
146
145
|
}
|
|
147
146
|
|
|
148
147
|
.e-pivotview-expand::before {
|
|
149
|
-
content: '\
|
|
148
|
+
content: '\e7c9';
|
|
150
149
|
}
|
|
151
150
|
|
|
152
151
|
.e-pivotview-collapse::before {
|
|
153
|
-
content: '\
|
|
152
|
+
content: '\e80f';
|
|
154
153
|
}
|
|
155
154
|
|
|
156
155
|
.e-pivot-format-menu::before {
|
|
157
|
-
content: '\
|
|
156
|
+
content: '\e76d';
|
|
158
157
|
}
|
|
159
158
|
|
|
160
159
|
.e-pivot-number-format-menu::before {
|
|
161
|
-
content: '\
|
|
160
|
+
content: '\e787';
|
|
162
161
|
}
|
|
163
162
|
|
|
164
163
|
.e-pivot-conditional-format-menu::before {
|
|
165
|
-
content: '\
|
|
164
|
+
content: '\e71b';
|
|
166
165
|
}
|
|
167
166
|
|
|
168
167
|
.e-pivot-format-toolbar::before {
|
|
169
|
-
content: '\
|
|
168
|
+
content: '\e787';
|
|
170
169
|
}
|
|
171
170
|
|
|
172
171
|
.e-pivotview-group::before {
|
|
173
|
-
content: '\
|
|
172
|
+
content: '\e7a5';
|
|
174
173
|
}
|
|
175
174
|
|
|
176
175
|
.e-pivotview-ungroup::before {
|
|
177
|
-
content: '\
|
|
176
|
+
content: '\e779';
|
|
178
177
|
}
|
|
179
178
|
|
|
180
179
|
.e-level-options .e-selected-level-icon::before {
|
|
181
|
-
content: '\
|
|
180
|
+
content: '\e774';
|
|
182
181
|
}
|
|
183
182
|
|
|
184
183
|
/*! PivotView layout */
|
|
@@ -736,6 +735,10 @@
|
|
|
736
735
|
line-height: 40px;
|
|
737
736
|
}
|
|
738
737
|
|
|
738
|
+
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
739
|
+
margin-left: 18px !important;
|
|
740
|
+
}
|
|
741
|
+
|
|
739
742
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
740
743
|
padding: 0 !important;
|
|
741
744
|
}
|
|
@@ -803,7 +806,7 @@
|
|
|
803
806
|
|
|
804
807
|
.e-pivotview-report-label {
|
|
805
808
|
float: left;
|
|
806
|
-
margin-top:
|
|
809
|
+
margin-top: 4px;
|
|
807
810
|
width: 40%;
|
|
808
811
|
}
|
|
809
812
|
|
|
@@ -1084,7 +1087,20 @@
|
|
|
1084
1087
|
|
|
1085
1088
|
.e-bigger .e-pivotview-report-dialog .e-pivotview-report-label,
|
|
1086
1089
|
.e-bigger.e-pivotview-report-dialog .e-pivotview-report-label {
|
|
1087
|
-
margin-top:
|
|
1090
|
+
margin-top: 8px;
|
|
1091
|
+
}
|
|
1092
|
+
|
|
1093
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
1094
|
+
height: 62px;
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
1098
|
+
height: 52px;
|
|
1099
|
+
padding-left: 10px;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1103
|
+
margin-left: 24px !important;
|
|
1088
1104
|
}
|
|
1089
1105
|
|
|
1090
1106
|
/*! PivotView theme */
|
|
@@ -1114,8 +1130,11 @@
|
|
|
1114
1130
|
|
|
1115
1131
|
.e-pivotview .e-grid
|
|
1116
1132
|
.e-rowcell {
|
|
1117
|
-
font-size: 14px;
|
|
1133
|
+
font-size: 14px !important;
|
|
1118
1134
|
padding-left: 8px;
|
|
1135
|
+
-webkit-user-select: none;
|
|
1136
|
+
-ms-user-select: none;
|
|
1137
|
+
user-select: none;
|
|
1119
1138
|
}
|
|
1120
1139
|
|
|
1121
1140
|
.e-pivotview .e-gtot,
|
|
@@ -1149,6 +1168,7 @@
|
|
|
1149
1168
|
margin-left: 8px;
|
|
1150
1169
|
margin-top: 5px;
|
|
1151
1170
|
vertical-align: middle;
|
|
1171
|
+
margin-left: 4px;
|
|
1152
1172
|
}
|
|
1153
1173
|
|
|
1154
1174
|
.e-pivotview .e-pivot-conditional-empty-format {
|
|
@@ -1173,6 +1193,14 @@
|
|
|
1173
1193
|
width: 100%;
|
|
1174
1194
|
}
|
|
1175
1195
|
|
|
1196
|
+
.e-pivotview .e-toolbar .e-tbar-btn {
|
|
1197
|
+
background-color: transparent;
|
|
1198
|
+
}
|
|
1199
|
+
|
|
1200
|
+
.e-pivotview .e-toolbar .e-tbar-btn:hover {
|
|
1201
|
+
background-color: #e5e7eb;
|
|
1202
|
+
}
|
|
1203
|
+
|
|
1176
1204
|
.e-pivotview .e-grid .e-rowsheader.e-active,
|
|
1177
1205
|
.e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
|
|
1178
1206
|
.e-pivotview .e-grid .e-columnsheader.e-active,
|
|
@@ -1233,7 +1261,7 @@
|
|
|
1233
1261
|
|
|
1234
1262
|
.e-pivotview .e-sortfilterdiv {
|
|
1235
1263
|
float: right;
|
|
1236
|
-
margin: -
|
|
1264
|
+
margin: -13px -5px !important;
|
|
1237
1265
|
}
|
|
1238
1266
|
|
|
1239
1267
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
@@ -1270,6 +1298,11 @@
|
|
|
1270
1298
|
|
|
1271
1299
|
.e-pivotview .e-grid .e-rowsheader {
|
|
1272
1300
|
padding-left: 8px;
|
|
1301
|
+
-webkit-user-select: none;
|
|
1302
|
+
-ms-user-select: none;
|
|
1303
|
+
user-select: none;
|
|
1304
|
+
-webkit-touch-callout: none;
|
|
1305
|
+
padding-left: 12px;
|
|
1273
1306
|
}
|
|
1274
1307
|
|
|
1275
1308
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
@@ -1286,6 +1319,13 @@
|
|
|
1286
1319
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1287
1320
|
padding-left: 8px !important;
|
|
1288
1321
|
text-transform: none;
|
|
1322
|
+
padding-left: 12px !important;
|
|
1323
|
+
padding-top: 0px !important;
|
|
1324
|
+
padding-bottom: 0px !important;
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1328
|
+
z-index: 1 !important;
|
|
1289
1329
|
}
|
|
1290
1330
|
|
|
1291
1331
|
.e-pivotview .sf-grid .e-headercelldiv,
|
|
@@ -1293,8 +1333,8 @@
|
|
|
1293
1333
|
padding-right: 8px !important;
|
|
1294
1334
|
}
|
|
1295
1335
|
|
|
1296
|
-
.e-pivotview .
|
|
1297
|
-
.e-pivotview .
|
|
1336
|
+
.e-pivotview .e-grid .e-headercelldiv,
|
|
1337
|
+
.e-pivotview .e-grid .e-stackedheadercelldiv {
|
|
1298
1338
|
line-height: normal;
|
|
1299
1339
|
}
|
|
1300
1340
|
|
|
@@ -1312,9 +1352,10 @@
|
|
|
1312
1352
|
|
|
1313
1353
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1314
1354
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1315
|
-
padding-left:
|
|
1355
|
+
padding-left: 12px !important;
|
|
1316
1356
|
margin-top: 5px;
|
|
1317
1357
|
margin-top: 2px;
|
|
1358
|
+
padding-left: 8px !important;
|
|
1318
1359
|
}
|
|
1319
1360
|
|
|
1320
1361
|
.e-pivotview .e-stackedheadercelldiv {
|
|
@@ -2018,7 +2059,7 @@
|
|
|
2018
2059
|
|
|
2019
2060
|
.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2020
2061
|
.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2021
|
-
padding-right:
|
|
2062
|
+
padding-right: 12px !important;
|
|
2022
2063
|
}
|
|
2023
2064
|
|
|
2024
2065
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
@@ -2134,6 +2175,8 @@
|
|
|
2134
2175
|
.e-bigger .e-pivotview .e-grid .e-rowsheader,
|
|
2135
2176
|
.e-bigger.e-pivotview .e-grid .e-rowsheader {
|
|
2136
2177
|
padding-left: 8px !important;
|
|
2178
|
+
padding-left: 16px !important;
|
|
2179
|
+
padding-right: 12px !important;
|
|
2137
2180
|
}
|
|
2138
2181
|
|
|
2139
2182
|
.e-bigger .e-pivotview .e-grid .e-headercelldiv,
|
|
@@ -2146,6 +2189,11 @@
|
|
|
2146
2189
|
padding-left: 8px !important;
|
|
2147
2190
|
}
|
|
2148
2191
|
|
|
2192
|
+
.e-bigger .e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler,
|
|
2193
|
+
.e-bigger.e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler {
|
|
2194
|
+
height: 100% !important;
|
|
2195
|
+
}
|
|
2196
|
+
|
|
2149
2197
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2150
2198
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2151
2199
|
.e-bigger .e-pivotview .e-headertext,
|
|
@@ -2157,6 +2205,11 @@
|
|
|
2157
2205
|
font-size: 14px !important;
|
|
2158
2206
|
}
|
|
2159
2207
|
|
|
2208
|
+
.e-bigger .e-pivotview .e-bigger .e-stackedheadercelldiv,
|
|
2209
|
+
.e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
|
|
2210
|
+
padding-left: 16px !important;
|
|
2211
|
+
}
|
|
2212
|
+
|
|
2160
2213
|
.e-bigger .e-pivotview th .e-expand,
|
|
2161
2214
|
.e-bigger .e-pivotview th .e-collapse,
|
|
2162
2215
|
.e-bigger.e-pivotview th .e-expand,
|
|
@@ -2188,7 +2241,7 @@
|
|
|
2188
2241
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button {
|
|
2189
2242
|
height: 30px;
|
|
2190
2243
|
line-height: 1em;
|
|
2191
|
-
padding:
|
|
2244
|
+
padding: 5px 12px;
|
|
2192
2245
|
}
|
|
2193
2246
|
|
|
2194
2247
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -2209,7 +2262,7 @@
|
|
|
2209
2262
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2210
2263
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2211
2264
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2212
|
-
font-size: 14px;
|
|
2265
|
+
font-size: 14px !important;
|
|
2213
2266
|
height: 20px;
|
|
2214
2267
|
width: 20px;
|
|
2215
2268
|
}
|
|
@@ -2290,7 +2343,7 @@
|
|
|
2290
2343
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
2291
2344
|
height: 30px;
|
|
2292
2345
|
line-height: 1em;
|
|
2293
|
-
padding:
|
|
2346
|
+
padding: 5px 12px;
|
|
2294
2347
|
}
|
|
2295
2348
|
|
|
2296
2349
|
.e-bigger .e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -2311,7 +2364,7 @@
|
|
|
2311
2364
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2312
2365
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2313
2366
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2314
|
-
font-size: 14px;
|
|
2367
|
+
font-size: 14px !important;
|
|
2315
2368
|
height: 20px;
|
|
2316
2369
|
width: 20px;
|
|
2317
2370
|
}
|
|
@@ -2328,7 +2381,7 @@
|
|
|
2328
2381
|
|
|
2329
2382
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
2330
2383
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
2331
|
-
margin: -
|
|
2384
|
+
margin: -13px -10px !important;
|
|
2332
2385
|
}
|
|
2333
2386
|
|
|
2334
2387
|
.e-bigger .e-pivotview .e-sortfilterdiv.e-value-sort-icon,
|
|
@@ -2376,7 +2429,8 @@
|
|
|
2376
2429
|
|
|
2377
2430
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2378
2431
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2379
|
-
font-size: 16px;
|
|
2432
|
+
font-size: 16px !important;
|
|
2433
|
+
padding: 0 12px;
|
|
2380
2434
|
}
|
|
2381
2435
|
|
|
2382
2436
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
@@ -2421,12 +2475,12 @@
|
|
|
2421
2475
|
.e-bigger .e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue,
|
|
2422
2476
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2423
2477
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2424
|
-
padding-right:
|
|
2478
|
+
padding-right: 16px !important;
|
|
2425
2479
|
}
|
|
2426
2480
|
|
|
2427
2481
|
.e-bigger .e-pivotview .e-expand::before,
|
|
2428
2482
|
.e-bigger.e-pivotview .e-expand::before {
|
|
2429
|
-
font-size:
|
|
2483
|
+
font-size: 24px;
|
|
2430
2484
|
}
|
|
2431
2485
|
|
|
2432
2486
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
@@ -2442,384 +2496,383 @@
|
|
|
2442
2496
|
/*! component's common definitions and variables */
|
|
2443
2497
|
/*! field-list component icons */
|
|
2444
2498
|
.e-pivotfieldlist .e-select-table::before {
|
|
2445
|
-
content: '\
|
|
2499
|
+
content: '\e751';
|
|
2446
2500
|
}
|
|
2447
2501
|
|
|
2448
2502
|
.e-pivot-formatting-dialog .e-format-delete-icon::before {
|
|
2449
|
-
content: '\
|
|
2503
|
+
content: '\e7e7';
|
|
2450
2504
|
}
|
|
2451
2505
|
|
|
2452
2506
|
.e-pivot-formatting-dialog .e-add-icon::before {
|
|
2453
|
-
content: '\
|
|
2507
|
+
content: '\e805';
|
|
2454
2508
|
}
|
|
2455
2509
|
|
|
2456
2510
|
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
2457
2511
|
.e-pivot-formatting-dialog .e-colorpicker-container .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
2458
|
-
content: '\
|
|
2512
|
+
content: '\e783';
|
|
2459
2513
|
}
|
|
2460
2514
|
|
|
2461
2515
|
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
2462
2516
|
.e-pivot-formatting-dialog .e-colorpicker-container .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
2463
|
-
content: '\
|
|
2517
|
+
content: '\e76f';
|
|
2464
2518
|
}
|
|
2465
2519
|
|
|
2466
2520
|
.e-level-options .e-selected-level-icon::before {
|
|
2467
|
-
content: '\
|
|
2521
|
+
content: '\e774';
|
|
2468
2522
|
}
|
|
2469
2523
|
|
|
2470
2524
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2471
|
-
content: '\
|
|
2525
|
+
content: '\e726';
|
|
2472
2526
|
}
|
|
2473
2527
|
|
|
2474
2528
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title-wrapper .e-info.e-icons::before,
|
|
2475
2529
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title-container .e-info.e-icons::before {
|
|
2476
|
-
content: '\
|
|
2530
|
+
content: '\e800';
|
|
2477
2531
|
}
|
|
2478
2532
|
|
|
2479
2533
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-edited.e-icons::before {
|
|
2480
|
-
content: '\
|
|
2534
|
+
content: '\e740';
|
|
2481
2535
|
}
|
|
2482
2536
|
|
|
2483
2537
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-edit.e-icons::before {
|
|
2484
|
-
content: '\
|
|
2538
|
+
content: '\e730';
|
|
2485
2539
|
}
|
|
2486
2540
|
|
|
2487
2541
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-remove-report.e-icons::before {
|
|
2488
|
-
content: '\
|
|
2542
|
+
content: '\e820';
|
|
2489
2543
|
}
|
|
2490
2544
|
|
|
2491
2545
|
.e-pivot-calc-dialog-div .e-remove-report.e-icons::before {
|
|
2492
|
-
content: '\
|
|
2546
|
+
content: '\e820';
|
|
2493
2547
|
}
|
|
2494
2548
|
|
|
2495
2549
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-format.e-icons::before {
|
|
2496
|
-
content: '\
|
|
2550
|
+
content: '\e75c';
|
|
2497
2551
|
}
|
|
2498
2552
|
|
|
2499
2553
|
.e-pivot-calc-dialog-div .e-measureGroupCDB-icon::before {
|
|
2500
|
-
content: '\
|
|
2554
|
+
content: '\e7d2' !important;
|
|
2501
2555
|
}
|
|
2502
2556
|
|
|
2503
2557
|
.e-pivot-calc-dialog-div .e-measure-icon::before {
|
|
2504
|
-
content: '\
|
|
2558
|
+
content: '\e7d2' !important;
|
|
2505
2559
|
}
|
|
2506
2560
|
|
|
2507
2561
|
.e-pivot-calc-dialog-div .e-folderCDB-icon::before {
|
|
2508
|
-
content: '\
|
|
2562
|
+
content: '\e83c' !important;
|
|
2509
2563
|
}
|
|
2510
2564
|
|
|
2511
2565
|
.e-pivot-calc-dialog-div .e-folderCDB-open-icon::before {
|
|
2512
|
-
content: '\
|
|
2566
|
+
content: '\e760' !important;
|
|
2513
2567
|
}
|
|
2514
2568
|
|
|
2515
2569
|
.e-pivot-calc-dialog-div .e-dimensionCDB-icon::before {
|
|
2516
|
-
content: '\
|
|
2570
|
+
content: '\e81d' !important;
|
|
2517
2571
|
}
|
|
2518
2572
|
|
|
2519
2573
|
.e-pivot-calc-dialog-div .e-kpiCDB-icon::before {
|
|
2520
|
-
content: '\
|
|
2574
|
+
content: '\e73f' !important;
|
|
2521
2575
|
}
|
|
2522
2576
|
|
|
2523
2577
|
.e-pivot-calc-dialog-div .e-kpiGoal-icon::before {
|
|
2524
|
-
content: '\
|
|
2578
|
+
content: '\e73f' !important;
|
|
2525
2579
|
}
|
|
2526
2580
|
|
|
2527
2581
|
.e-pivot-calc-dialog-div .e-kpiStatus-icon::before {
|
|
2528
|
-
content: '\
|
|
2582
|
+
content: '\e73f' !important;
|
|
2529
2583
|
}
|
|
2530
2584
|
|
|
2531
2585
|
.e-pivot-calc-dialog-div .e-kpiTrend-icon::before {
|
|
2532
|
-
content: '\
|
|
2586
|
+
content: '\e73f' !important;
|
|
2533
2587
|
}
|
|
2534
2588
|
|
|
2535
2589
|
.e-pivot-calc-dialog-div .e-kpiValue-icon::before {
|
|
2536
|
-
content: '\
|
|
2590
|
+
content: '\e73f' !important;
|
|
2537
2591
|
}
|
|
2538
2592
|
|
|
2539
2593
|
.e-pivot-calc-dialog-div .e-namedSetCDB-icon::before {
|
|
2540
|
-
content: '\
|
|
2594
|
+
content: '\e829' !important;
|
|
2541
2595
|
}
|
|
2542
2596
|
|
|
2543
2597
|
.e-pivot-calc-dialog-div .e-hierarchyCDB-icon::before {
|
|
2544
|
-
content: '\
|
|
2598
|
+
content: '\e709' !important;
|
|
2545
2599
|
}
|
|
2546
2600
|
|
|
2547
2601
|
.e-pivot-calc-dialog-div .e-attributeCDB-icon::before {
|
|
2548
|
-
content: '\
|
|
2602
|
+
content: '\e73e' !important;
|
|
2549
2603
|
}
|
|
2550
2604
|
|
|
2551
2605
|
.e-pivot-calc-dialog-div .e-hierarchy-level-0-icon::before {
|
|
2552
|
-
content: '\
|
|
2606
|
+
content: '\e76a' !important;
|
|
2553
2607
|
}
|
|
2554
2608
|
|
|
2555
2609
|
.e-pivot-calc-dialog-div .e-hierarchy-level-1-icon::before {
|
|
2556
|
-
content: '\
|
|
2610
|
+
content: '\e76a' !important;
|
|
2557
2611
|
}
|
|
2558
2612
|
|
|
2559
2613
|
.e-pivot-calc-dialog-div .e-hierarchy-level-2-icon::before {
|
|
2560
|
-
content: '\
|
|
2614
|
+
content: '\e807' !important;
|
|
2561
2615
|
}
|
|
2562
2616
|
|
|
2563
2617
|
.e-pivot-calc-dialog-div .e-hierarchy-level-3-icon::before {
|
|
2564
|
-
content: '\
|
|
2618
|
+
content: '\e780' !important;
|
|
2565
2619
|
}
|
|
2566
2620
|
|
|
2567
2621
|
.e-pivot-calc-dialog-div .e-hierarchy-level-4-icon::before {
|
|
2568
|
-
content: '\
|
|
2622
|
+
content: '\e711' !important;
|
|
2569
2623
|
}
|
|
2570
2624
|
|
|
2571
2625
|
.e-pivot-calc-dialog-div .e-hierarchy-level-5-icon::before {
|
|
2572
|
-
content: '\
|
|
2626
|
+
content: '\e837' !important;
|
|
2573
2627
|
}
|
|
2574
2628
|
|
|
2575
2629
|
.e-pivot-calc-dialog-div .e-calcMemberGroupCDB::before {
|
|
2576
|
-
content: '\
|
|
2630
|
+
content: '\e798' !important;
|
|
2577
2631
|
}
|
|
2578
2632
|
|
|
2579
2633
|
.e-pivot-calc-dialog-div .e-calc-measure-icon::before {
|
|
2580
|
-
content: '\
|
|
2634
|
+
content: '\e7d2' !important;
|
|
2581
2635
|
}
|
|
2582
2636
|
|
|
2583
2637
|
.e-pivot-calc-dialog-div .e-calc-dimension-icon::before {
|
|
2584
|
-
content: '\
|
|
2638
|
+
content: '\e81d' !important;
|
|
2585
2639
|
}
|
|
2586
2640
|
|
|
2587
2641
|
.e-pivot-calc-dialog-div .e-sort-none::before {
|
|
2588
|
-
content: '\
|
|
2642
|
+
content: '\e824' !important;
|
|
2589
2643
|
}
|
|
2590
2644
|
|
|
2591
2645
|
.e-pivot-calc-dialog-div .e-sort-ascend::before {
|
|
2592
|
-
content: '\
|
|
2646
|
+
content: '\e7df' !important;
|
|
2593
2647
|
}
|
|
2594
2648
|
|
|
2595
2649
|
.e-pivot-calc-dialog-div .e-sort-descend::before {
|
|
2596
|
-
content: '\
|
|
2650
|
+
content: '\e7d8' !important;
|
|
2597
2651
|
}
|
|
2598
2652
|
|
|
2599
2653
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2600
2654
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2601
|
-
content: '\
|
|
2655
|
+
content: '\e773';
|
|
2602
2656
|
}
|
|
2603
2657
|
|
|
2604
2658
|
.e-pivotfieldlist-wrapper .e-sort::before,
|
|
2605
2659
|
.e-pivotfieldlist-container .e-sort::before {
|
|
2606
|
-
content: '\
|
|
2660
|
+
content: '\e7df';
|
|
2607
2661
|
}
|
|
2608
2662
|
|
|
2609
2663
|
.e-pivotfieldlist-wrapper .e-pv-filter::before,
|
|
2610
2664
|
.e-pivotfieldlist-container .e-pv-filter::before {
|
|
2611
|
-
content: '\
|
|
2665
|
+
content: '\e7f7';
|
|
2612
2666
|
}
|
|
2613
2667
|
|
|
2614
2668
|
.e-pivotfieldlist-wrapper .e-pv-filtered::before,
|
|
2615
2669
|
.e-pivotfieldlist-container .e-pv-filtered::before {
|
|
2616
|
-
|
|
2617
|
-
content: '\e7c5';
|
|
2670
|
+
content: '\e735';
|
|
2618
2671
|
}
|
|
2619
2672
|
|
|
2620
2673
|
.e-pivotfieldlist-wrapper .e-drag::before,
|
|
2621
2674
|
.e-pivotfieldlist-container .e-drag::before {
|
|
2622
|
-
content: '\
|
|
2675
|
+
content: '\e726';
|
|
2623
2676
|
}
|
|
2624
2677
|
|
|
2625
2678
|
.e-pivotfieldlist-wrapper .e-add-icon::before,
|
|
2626
2679
|
.e-pivotfieldlist-container .e-add-icon::before {
|
|
2627
|
-
content: '\
|
|
2680
|
+
content: '\e805';
|
|
2628
2681
|
}
|
|
2629
2682
|
|
|
2630
2683
|
.e-pivotfieldlist-wrapper .e-remove::before,
|
|
2631
2684
|
.e-pivotfieldlist-container .e-remove::before {
|
|
2632
|
-
content: '\
|
|
2685
|
+
content: '\e7e7';
|
|
2633
2686
|
}
|
|
2634
2687
|
|
|
2635
2688
|
.e-pivotfieldlist-wrapper .e-axis-rows::before,
|
|
2636
2689
|
.e-pivotfieldlist-container .e-axis-rows::before {
|
|
2637
|
-
content: '\
|
|
2690
|
+
content: '\e7e6';
|
|
2638
2691
|
}
|
|
2639
2692
|
|
|
2640
2693
|
.e-pivotfieldlist-wrapper .e-axis-columns::before,
|
|
2641
2694
|
.e-pivotfieldlist-container .e-axis-columns::before {
|
|
2642
|
-
content: '\
|
|
2695
|
+
content: '\e76b';
|
|
2643
2696
|
}
|
|
2644
2697
|
|
|
2645
2698
|
.e-pivotfieldlist-wrapper .e-axis-values::before,
|
|
2646
2699
|
.e-pivotfieldlist-container .e-axis-values::before {
|
|
2647
|
-
content: '\
|
|
2700
|
+
content: '\e7d2';
|
|
2648
2701
|
}
|
|
2649
2702
|
|
|
2650
2703
|
.e-pivotfieldlist-wrapper .e-axis-filters::before,
|
|
2651
2704
|
.e-pivotfieldlist-container .e-axis-filters::before {
|
|
2652
|
-
content: '\
|
|
2705
|
+
content: '\e7f7';
|
|
2653
2706
|
}
|
|
2654
2707
|
|
|
2655
2708
|
.e-pivotfieldlist-wrapper .e-selected-option-icon::before,
|
|
2656
2709
|
.e-pivotfieldlist-container .e-selected-option-icon::before {
|
|
2657
|
-
content: '\
|
|
2710
|
+
content: '\e72b';
|
|
2658
2711
|
}
|
|
2659
2712
|
|
|
2660
2713
|
.e-pivotfieldlist-wrapper .e-clear-filter-icon::before,
|
|
2661
2714
|
.e-pivotfieldlist-container .e-clear-filter-icon::before {
|
|
2662
|
-
content: '\
|
|
2715
|
+
content: '\e72c';
|
|
2663
2716
|
}
|
|
2664
2717
|
|
|
2665
2718
|
.e-pivotfieldlist-wrapper .e-dropdown-icon::before,
|
|
2666
2719
|
.e-pivotfieldlist-container .e-dropdown-icon::before {
|
|
2667
|
-
content: '\
|
|
2720
|
+
content: '\e729';
|
|
2668
2721
|
}
|
|
2669
2722
|
|
|
2670
2723
|
.e-pivotfieldlist-wrapper .e-measureGroupCDB-icon::before,
|
|
2671
2724
|
.e-pivotfieldlist-container .e-measureGroupCDB-icon::before {
|
|
2672
|
-
content: '\
|
|
2725
|
+
content: '\e7d2' !important;
|
|
2673
2726
|
}
|
|
2674
2727
|
|
|
2675
2728
|
.e-pivotfieldlist-wrapper .e-measure-icon::before,
|
|
2676
2729
|
.e-pivotfieldlist-container .e-measure-icon::before {
|
|
2677
|
-
content: '\
|
|
2730
|
+
content: '\e7d2' !important;
|
|
2678
2731
|
}
|
|
2679
2732
|
|
|
2680
2733
|
.e-pivotfieldlist-wrapper .e-folderCDB-icon::before,
|
|
2681
2734
|
.e-pivotfieldlist-container .e-folderCDB-icon::before {
|
|
2682
|
-
content: '\
|
|
2735
|
+
content: '\e83c' !important;
|
|
2683
2736
|
}
|
|
2684
2737
|
|
|
2685
2738
|
.e-pivotfieldlist-wrapper .e-folderCDB-open-icon::before,
|
|
2686
2739
|
.e-pivotfieldlist-container .e-folderCDB-open-icon::before {
|
|
2687
|
-
content: '\
|
|
2740
|
+
content: '\e760' !important;
|
|
2688
2741
|
}
|
|
2689
2742
|
|
|
2690
2743
|
.e-pivotfieldlist-wrapper .e-dimensionCDB-icon::before,
|
|
2691
2744
|
.e-pivotfieldlist-container .e-dimensionCDB-icon::before {
|
|
2692
|
-
content: '\
|
|
2745
|
+
content: '\e81d' !important;
|
|
2693
2746
|
}
|
|
2694
2747
|
|
|
2695
2748
|
.e-pivotfieldlist-wrapper .e-kpiCDB-icon::before,
|
|
2696
2749
|
.e-pivotfieldlist-container .e-kpiCDB-icon::before {
|
|
2697
|
-
content: '\
|
|
2750
|
+
content: '\e73f' !important;
|
|
2698
2751
|
}
|
|
2699
2752
|
|
|
2700
2753
|
.e-pivotfieldlist-wrapper .e-kpiGoal-icon::before,
|
|
2701
2754
|
.e-pivotfieldlist-container .e-kpiGoal-icon::before {
|
|
2702
|
-
content: '\
|
|
2755
|
+
content: '\e73f' !important;
|
|
2703
2756
|
}
|
|
2704
2757
|
|
|
2705
2758
|
.e-pivotfieldlist-wrapper .e-kpiStatus-icon::before,
|
|
2706
2759
|
.e-pivotfieldlist-container .e-kpiStatus-icon::before {
|
|
2707
|
-
content: '\
|
|
2760
|
+
content: '\e73f' !important;
|
|
2708
2761
|
}
|
|
2709
2762
|
|
|
2710
2763
|
.e-pivotfieldlist-wrapper .e-kpiTrend-icon::before,
|
|
2711
2764
|
.e-pivotfieldlist-container .e-kpiTrend-icon::before {
|
|
2712
|
-
content: '\
|
|
2765
|
+
content: '\e73f' !important;
|
|
2713
2766
|
}
|
|
2714
2767
|
|
|
2715
2768
|
.e-pivotfieldlist-wrapper .e-kpiValue-icon::before,
|
|
2716
2769
|
.e-pivotfieldlist-container .e-kpiValue-icon::before {
|
|
2717
|
-
content: '\
|
|
2770
|
+
content: '\e73f' !important;
|
|
2718
2771
|
}
|
|
2719
2772
|
|
|
2720
2773
|
.e-pivotfieldlist-wrapper .e-namedSetCDB-icon::before,
|
|
2721
2774
|
.e-pivotfieldlist-container .e-namedSetCDB-icon::before {
|
|
2722
|
-
content: '\
|
|
2775
|
+
content: '\e829' !important;
|
|
2723
2776
|
}
|
|
2724
2777
|
|
|
2725
2778
|
.e-pivotfieldlist-wrapper .e-hierarchyCDB-icon::before,
|
|
2726
2779
|
.e-pivotfieldlist-container .e-hierarchyCDB-icon::before {
|
|
2727
|
-
content: '\
|
|
2780
|
+
content: '\e709' !important;
|
|
2728
2781
|
}
|
|
2729
2782
|
|
|
2730
2783
|
.e-pivotfieldlist-wrapper .e-attributeCDB-icon::before,
|
|
2731
2784
|
.e-pivotfieldlist-container .e-attributeCDB-icon::before {
|
|
2732
|
-
content: '\
|
|
2785
|
+
content: '\e73e' !important;
|
|
2733
2786
|
}
|
|
2734
2787
|
|
|
2735
2788
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-0-icon::before,
|
|
2736
2789
|
.e-pivotfieldlist-container .e-hierarchy-level-0-icon::before {
|
|
2737
|
-
content: '\
|
|
2790
|
+
content: '\e76a' !important;
|
|
2738
2791
|
}
|
|
2739
2792
|
|
|
2740
2793
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-1-icon::before,
|
|
2741
2794
|
.e-pivotfieldlist-container .e-hierarchy-level-1-icon::before {
|
|
2742
|
-
content: '\
|
|
2795
|
+
content: '\e76a' !important;
|
|
2743
2796
|
}
|
|
2744
2797
|
|
|
2745
2798
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-2-icon::before,
|
|
2746
2799
|
.e-pivotfieldlist-container .e-hierarchy-level-2-icon::before {
|
|
2747
|
-
content: '\
|
|
2800
|
+
content: '\e807' !important;
|
|
2748
2801
|
}
|
|
2749
2802
|
|
|
2750
2803
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-3-icon::before,
|
|
2751
2804
|
.e-pivotfieldlist-container .e-hierarchy-level-3-icon::before {
|
|
2752
|
-
content: '\
|
|
2805
|
+
content: '\e780' !important;
|
|
2753
2806
|
}
|
|
2754
2807
|
|
|
2755
2808
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-4-icon::before,
|
|
2756
2809
|
.e-pivotfieldlist-container .e-hierarchy-level-4-icon::before {
|
|
2757
|
-
content: '\
|
|
2810
|
+
content: '\e711' !important;
|
|
2758
2811
|
}
|
|
2759
2812
|
|
|
2760
2813
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-5-icon::before,
|
|
2761
2814
|
.e-pivotfieldlist-container .e-hierarchy-level-5-icon::before {
|
|
2762
|
-
content: '\
|
|
2815
|
+
content: '\e837' !important;
|
|
2763
2816
|
}
|
|
2764
2817
|
|
|
2765
2818
|
.e-pivotfieldlist-wrapper .e-calcMemberGroupCDB::before,
|
|
2766
2819
|
.e-pivotfieldlist-container .e-calcMemberGroupCDB::before {
|
|
2767
|
-
content: '\
|
|
2820
|
+
content: '\e798' !important;
|
|
2768
2821
|
}
|
|
2769
2822
|
|
|
2770
2823
|
.e-pivotfieldlist-wrapper .e-calc-measure-icon::before,
|
|
2771
2824
|
.e-pivotfieldlist-container .e-calc-measure-icon::before {
|
|
2772
|
-
content: '\
|
|
2825
|
+
content: '\e7d2' !important;
|
|
2773
2826
|
}
|
|
2774
2827
|
|
|
2775
2828
|
.e-pivotfieldlist-wrapper .e-calc-dimension-icon::before,
|
|
2776
2829
|
.e-pivotfieldlist-container .e-calc-dimension-icon::before {
|
|
2777
|
-
content: '\
|
|
2830
|
+
content: '\e81d' !important;
|
|
2778
2831
|
}
|
|
2779
2832
|
|
|
2780
2833
|
.e-pivotfieldlist-wrapper .e-sort-none::before,
|
|
2781
2834
|
.e-pivotfieldlist-container .e-sort-none::before {
|
|
2782
|
-
content: '\
|
|
2835
|
+
content: '\e824' !important;
|
|
2783
2836
|
}
|
|
2784
2837
|
|
|
2785
2838
|
.e-pivotfieldlist-wrapper .e-sort-ascend::before,
|
|
2786
2839
|
.e-pivotfieldlist-container .e-sort-ascend::before {
|
|
2787
|
-
content: '\
|
|
2840
|
+
content: '\e7df' !important;
|
|
2788
2841
|
}
|
|
2789
2842
|
|
|
2790
2843
|
.e-pivotfieldlist-wrapper .e-sort-descend::before,
|
|
2791
2844
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2792
|
-
content: '\
|
|
2845
|
+
content: '\e7d8' !important;
|
|
2793
2846
|
}
|
|
2794
2847
|
|
|
2795
2848
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2796
2849
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2797
|
-
content: '\
|
|
2850
|
+
content: '\e740';
|
|
2798
2851
|
}
|
|
2799
2852
|
|
|
2800
2853
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before,
|
|
2801
2854
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
|
|
2802
|
-
content: '\
|
|
2855
|
+
content: '\e730';
|
|
2803
2856
|
}
|
|
2804
2857
|
|
|
2805
2858
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before,
|
|
2806
2859
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
|
|
2807
|
-
content: '\
|
|
2860
|
+
content: '\e820';
|
|
2808
2861
|
}
|
|
2809
2862
|
|
|
2810
2863
|
.e-pivotfieldlist-wrapper .e-pivot-button .e-edit::before,
|
|
2811
2864
|
.e-pivotfieldlist-container .e-pivot-button .e-edit::before {
|
|
2812
|
-
content: '\
|
|
2865
|
+
content: '\e730';
|
|
2813
2866
|
}
|
|
2814
2867
|
|
|
2815
2868
|
.e-pivotfieldlist-wrapper .e-sort-ascend-icon::before,
|
|
2816
2869
|
.e-pivotfieldlist-container .e-sort-ascend-icon::before {
|
|
2817
|
-
content: '\
|
|
2870
|
+
content: '\e7a3';
|
|
2818
2871
|
}
|
|
2819
2872
|
|
|
2820
2873
|
.e-pivotfieldlist-wrapper .e-sort-descend-icon::before,
|
|
2821
2874
|
.e-pivotfieldlist-container .e-sort-descend-icon::before {
|
|
2822
|
-
content: '\
|
|
2875
|
+
content: '\e7b6';
|
|
2823
2876
|
}
|
|
2824
2877
|
|
|
2825
2878
|
/*! field-list theme */
|
|
@@ -2838,7 +2891,7 @@
|
|
|
2838
2891
|
}
|
|
2839
2892
|
|
|
2840
2893
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2841
|
-
padding-bottom:
|
|
2894
|
+
padding-bottom: 4px;
|
|
2842
2895
|
}
|
|
2843
2896
|
|
|
2844
2897
|
.e-pivot-formatting-dialog .e-format-delete-icon {
|
|
@@ -2866,8 +2919,7 @@
|
|
|
2866
2919
|
|
|
2867
2920
|
.e-pivot-formatting-dialog .e-format-font-color-picker {
|
|
2868
2921
|
margin-left: 0;
|
|
2869
|
-
margin-right:
|
|
2870
|
-
margin-right: 7px;
|
|
2922
|
+
margin-right: 16px;
|
|
2871
2923
|
}
|
|
2872
2924
|
|
|
2873
2925
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
@@ -2994,9 +3046,8 @@
|
|
|
2994
3046
|
}
|
|
2995
3047
|
|
|
2996
3048
|
.e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker {
|
|
2997
|
-
margin-left:
|
|
3049
|
+
margin-left: 16px;
|
|
2998
3050
|
margin-right: 0;
|
|
2999
|
-
margin-left: 6px;
|
|
3000
3051
|
}
|
|
3001
3052
|
|
|
3002
3053
|
.e-pivot-formatting-dialog.e-rtl .e-format-condition-button {
|
|
@@ -3018,7 +3069,7 @@
|
|
|
3018
3069
|
}
|
|
3019
3070
|
|
|
3020
3071
|
.e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker {
|
|
3021
|
-
margin-
|
|
3072
|
+
margin-right: 0;
|
|
3022
3073
|
}
|
|
3023
3074
|
|
|
3024
3075
|
.e-bigger.e-pivot-formatting-dialog,
|
|
@@ -3066,7 +3117,6 @@
|
|
|
3066
3117
|
.e-bigger .e-pivot-formatting-dialog .e-format-font-color-picker {
|
|
3067
3118
|
margin-left: 0;
|
|
3068
3119
|
margin-right: 20px;
|
|
3069
|
-
margin-right: 7px;
|
|
3070
3120
|
}
|
|
3071
3121
|
|
|
3072
3122
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
@@ -3087,11 +3137,6 @@
|
|
|
3087
3137
|
padding-top: 16px;
|
|
3088
3138
|
}
|
|
3089
3139
|
|
|
3090
|
-
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-font-color-picker,
|
|
3091
|
-
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-font-color-picker {
|
|
3092
|
-
margin-right: 30px;
|
|
3093
|
-
}
|
|
3094
|
-
|
|
3095
3140
|
.e-bigger.e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker,
|
|
3096
3141
|
.e-bigger .e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker {
|
|
3097
3142
|
margin-left: 20px;
|
|
@@ -3099,11 +3144,6 @@
|
|
|
3099
3144
|
margin-left: 6px;
|
|
3100
3145
|
}
|
|
3101
3146
|
|
|
3102
|
-
.e-bigger.e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker,
|
|
3103
|
-
.e-bigger .e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker {
|
|
3104
|
-
margin-left: 30px;
|
|
3105
|
-
}
|
|
3106
|
-
|
|
3107
3147
|
.e-pivot-calc-dialog-div {
|
|
3108
3148
|
max-height: 550px !important;
|
|
3109
3149
|
min-width: 290px;
|
|
@@ -3127,7 +3167,7 @@
|
|
|
3127
3167
|
color: #374151;
|
|
3128
3168
|
font-size: 12px;
|
|
3129
3169
|
margin-bottom: 4px;
|
|
3130
|
-
margin-top:
|
|
3170
|
+
margin-top: 12px;
|
|
3131
3171
|
overflow: hidden;
|
|
3132
3172
|
padding: 4px 0;
|
|
3133
3173
|
padding-bottom: 0;
|
|
@@ -3162,7 +3202,9 @@
|
|
|
3162
3202
|
|
|
3163
3203
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
3164
3204
|
color: #6b7280;
|
|
3205
|
+
float: right !important;
|
|
3165
3206
|
margin: 0;
|
|
3207
|
+
margin-right: 12px !important;
|
|
3166
3208
|
}
|
|
3167
3209
|
|
|
3168
3210
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
@@ -3175,10 +3217,6 @@
|
|
|
3175
3217
|
padding: 0;
|
|
3176
3218
|
}
|
|
3177
3219
|
|
|
3178
|
-
.e-pivot-calc-dialog-div .e-treeview ul .e-list-item .e-text-content .e-list-text {
|
|
3179
|
-
line-height: 31px;
|
|
3180
|
-
}
|
|
3181
|
-
|
|
3182
3220
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons {
|
|
3183
3221
|
cursor: pointer;
|
|
3184
3222
|
font-size: 18px;
|
|
@@ -3193,8 +3231,10 @@
|
|
|
3193
3231
|
|
|
3194
3232
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons.e-format {
|
|
3195
3233
|
float: right;
|
|
3234
|
+
font-size: 20px;
|
|
3196
3235
|
margin-right: 12px;
|
|
3197
3236
|
padding-top: 10px;
|
|
3237
|
+
padding-top: 8px;
|
|
3198
3238
|
}
|
|
3199
3239
|
|
|
3200
3240
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-iconspace {
|
|
@@ -3226,6 +3266,8 @@
|
|
|
3226
3266
|
height: 20px;
|
|
3227
3267
|
margin-top: 0;
|
|
3228
3268
|
padding: 0 5px;
|
|
3269
|
+
position: relative;
|
|
3270
|
+
top: 2px;
|
|
3229
3271
|
width: 20px;
|
|
3230
3272
|
}
|
|
3231
3273
|
|
|
@@ -3314,7 +3356,7 @@
|
|
|
3314
3356
|
color: #111827;
|
|
3315
3357
|
font-size: 13px;
|
|
3316
3358
|
height: 70px;
|
|
3317
|
-
padding: 5px
|
|
3359
|
+
padding: 5px 8px;
|
|
3318
3360
|
resize: none;
|
|
3319
3361
|
width: 100%;
|
|
3320
3362
|
}
|
|
@@ -3350,7 +3392,7 @@
|
|
|
3350
3392
|
}
|
|
3351
3393
|
|
|
3352
3394
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
3353
|
-
height:
|
|
3395
|
+
height: 441px;
|
|
3354
3396
|
width: 50%;
|
|
3355
3397
|
}
|
|
3356
3398
|
|
|
@@ -3362,7 +3404,7 @@
|
|
|
3362
3404
|
|
|
3363
3405
|
.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 {
|
|
3364
3406
|
display: inline-block;
|
|
3365
|
-
height:
|
|
3407
|
+
height: 414px;
|
|
3366
3408
|
overflow: auto;
|
|
3367
3409
|
width: 100%;
|
|
3368
3410
|
}
|
|
@@ -3420,6 +3462,7 @@
|
|
|
3420
3462
|
.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 {
|
|
3421
3463
|
padding: 0;
|
|
3422
3464
|
height: auto;
|
|
3465
|
+
float: none !important;
|
|
3423
3466
|
}
|
|
3424
3467
|
|
|
3425
3468
|
.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 {
|
|
@@ -3451,8 +3494,8 @@
|
|
|
3451
3494
|
flex: auto;
|
|
3452
3495
|
margin-top: 0;
|
|
3453
3496
|
padding-bottom: 4px;
|
|
3454
|
-
padding-left:
|
|
3455
|
-
padding-right:
|
|
3497
|
+
padding-left: 18px;
|
|
3498
|
+
padding-right: 18px;
|
|
3456
3499
|
}
|
|
3457
3500
|
|
|
3458
3501
|
.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-wrapper {
|
|
@@ -3461,6 +3504,7 @@
|
|
|
3461
3504
|
display: -ms-flexbox;
|
|
3462
3505
|
display: flex;
|
|
3463
3506
|
font-size: 12px;
|
|
3507
|
+
height: 30px;
|
|
3464
3508
|
}
|
|
3465
3509
|
|
|
3466
3510
|
.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-wrapper .e-info {
|
|
@@ -3477,6 +3521,7 @@
|
|
|
3477
3521
|
display: -ms-flexbox;
|
|
3478
3522
|
display: flex;
|
|
3479
3523
|
font-size: 12px;
|
|
3524
|
+
height: 30px;
|
|
3480
3525
|
}
|
|
3481
3526
|
|
|
3482
3527
|
.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-container .e-info {
|
|
@@ -3554,7 +3599,8 @@
|
|
|
3554
3599
|
font-size: 14px;
|
|
3555
3600
|
padding: 6px 0;
|
|
3556
3601
|
padding-bottom: 0;
|
|
3557
|
-
padding:
|
|
3602
|
+
padding-bottom: 4px;
|
|
3603
|
+
padding-top: 16px;
|
|
3558
3604
|
}
|
|
3559
3605
|
|
|
3560
3606
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview ul li,
|
|
@@ -3565,6 +3611,7 @@
|
|
|
3565
3611
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons,
|
|
3566
3612
|
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons {
|
|
3567
3613
|
font-size: 22px;
|
|
3614
|
+
padding-top: 12px;
|
|
3568
3615
|
}
|
|
3569
3616
|
|
|
3570
3617
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons,
|
|
@@ -3592,12 +3639,12 @@
|
|
|
3592
3639
|
|
|
3593
3640
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
3594
3641
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
3595
|
-
height:
|
|
3642
|
+
height: 497px;
|
|
3596
3643
|
}
|
|
3597
3644
|
|
|
3598
3645
|
.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,
|
|
3599
3646
|
.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 {
|
|
3600
|
-
height:
|
|
3647
|
+
height: 465px;
|
|
3601
3648
|
}
|
|
3602
3649
|
|
|
3603
3650
|
.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,
|
|
@@ -3610,6 +3657,7 @@
|
|
|
3610
3657
|
.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-wrapper,
|
|
3611
3658
|
.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-container {
|
|
3612
3659
|
font-size: 14px;
|
|
3660
|
+
height: 34px;
|
|
3613
3661
|
}
|
|
3614
3662
|
|
|
3615
3663
|
.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-treeview ul .e-list-icon,
|
|
@@ -3912,7 +3960,7 @@
|
|
|
3912
3960
|
}
|
|
3913
3961
|
|
|
3914
3962
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content {
|
|
3915
|
-
padding: 0
|
|
3963
|
+
padding: 0 24px 10px;
|
|
3916
3964
|
}
|
|
3917
3965
|
|
|
3918
3966
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content .e-field-option-wrapper .e-field-name-text-wrapper {
|
|
@@ -4740,7 +4788,7 @@
|
|
|
4740
4788
|
|
|
4741
4789
|
.e-bigger .e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content,
|
|
4742
4790
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content {
|
|
4743
|
-
padding: 0
|
|
4791
|
+
padding: 0 28px 10px;
|
|
4744
4792
|
}
|
|
4745
4793
|
|
|
4746
4794
|
.e-bigger .e-pivotfieldlist-wrapper .e-value-field-settings .e-field-name-text-wrapper,
|
|
@@ -4800,6 +4848,7 @@
|
|
|
4800
4848
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-base-item-option-wrapper .e-type-option-text,
|
|
4801
4849
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-base-item-option-wrapper .e-caption-input-text {
|
|
4802
4850
|
font-size: 14px;
|
|
4851
|
+
padding-bottom: 6px;
|
|
4803
4852
|
}
|
|
4804
4853
|
|
|
4805
4854
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -5134,6 +5183,7 @@
|
|
|
5134
5183
|
.e-pivotfieldlist-wrapper .e-dlg-header-content,
|
|
5135
5184
|
.e-pivotfieldlist-wrapper .e-footer-content {
|
|
5136
5185
|
border: 0;
|
|
5186
|
+
height: 46px;
|
|
5137
5187
|
}
|
|
5138
5188
|
|
|
5139
5189
|
.e-pivotfieldlist-wrapper .e-field-list-title {
|
|
@@ -5197,7 +5247,7 @@
|
|
|
5197
5247
|
height: 28px;
|
|
5198
5248
|
line-height: 1.125em;
|
|
5199
5249
|
overflow: hidden;
|
|
5200
|
-
padding: 6px 0 0
|
|
5250
|
+
padding: 6px 0 0 18px;
|
|
5201
5251
|
text-align: left;
|
|
5202
5252
|
text-overflow: ellipsis;
|
|
5203
5253
|
text-transform: uppercase;
|
|
@@ -5209,7 +5259,7 @@
|
|
|
5209
5259
|
color: #374151;
|
|
5210
5260
|
display: -ms-flexbox;
|
|
5211
5261
|
display: flex;
|
|
5212
|
-
padding-right:
|
|
5262
|
+
padding-right: 18px;
|
|
5213
5263
|
}
|
|
5214
5264
|
|
|
5215
5265
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-field-table .e-field-header-wrapper .e-field-header {
|
|
@@ -5223,7 +5273,7 @@
|
|
|
5223
5273
|
color: #374151;
|
|
5224
5274
|
cursor: pointer;
|
|
5225
5275
|
font-size: 14px;
|
|
5226
|
-
height: 20px;
|
|
5276
|
+
height: 20px !important;
|
|
5227
5277
|
padding: 6px 0 0 4px;
|
|
5228
5278
|
width: 20px;
|
|
5229
5279
|
}
|
|
@@ -5386,8 +5436,8 @@
|
|
|
5386
5436
|
display: -ms-flexbox;
|
|
5387
5437
|
display: flex;
|
|
5388
5438
|
height: 28px;
|
|
5389
|
-
padding: 2px
|
|
5390
|
-
padding: 5px
|
|
5439
|
+
padding: 2px 18px 5px;
|
|
5440
|
+
padding: 5px 18px;
|
|
5391
5441
|
border-radius: 3px 3px 0 0;
|
|
5392
5442
|
}
|
|
5393
5443
|
|
|
@@ -5617,6 +5667,7 @@
|
|
|
5617
5667
|
text-align: left;
|
|
5618
5668
|
text-overflow: ellipsis;
|
|
5619
5669
|
width: 70%;
|
|
5670
|
+
line-height: 1.2em;
|
|
5620
5671
|
}
|
|
5621
5672
|
|
|
5622
5673
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button .e-draggable,
|
|
@@ -5874,12 +5925,12 @@
|
|
|
5874
5925
|
|
|
5875
5926
|
.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header {
|
|
5876
5927
|
padding-left: 0;
|
|
5877
|
-
padding-right:
|
|
5928
|
+
padding-right: 18px;
|
|
5878
5929
|
text-align: right;
|
|
5879
5930
|
}
|
|
5880
5931
|
|
|
5881
5932
|
.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header-wrapper {
|
|
5882
|
-
padding-left:
|
|
5933
|
+
padding-left: 18px;
|
|
5883
5934
|
padding-right: 0;
|
|
5884
5935
|
}
|
|
5885
5936
|
|
|
@@ -6008,6 +6059,8 @@
|
|
|
6008
6059
|
height: 48px;
|
|
6009
6060
|
padding-bottom: 9px;
|
|
6010
6061
|
padding-top: 9px;
|
|
6062
|
+
padding-left: 16px;
|
|
6063
|
+
padding-right: 16px;
|
|
6011
6064
|
}
|
|
6012
6065
|
|
|
6013
6066
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -6064,7 +6117,7 @@
|
|
|
6064
6117
|
display: inline-block;
|
|
6065
6118
|
height: 100%;
|
|
6066
6119
|
min-height: 250px;
|
|
6067
|
-
padding-top:
|
|
6120
|
+
padding-top: 0;
|
|
6068
6121
|
position: relative;
|
|
6069
6122
|
width: 100%;
|
|
6070
6123
|
}
|
|
@@ -6111,6 +6164,7 @@
|
|
|
6111
6164
|
padding: 9px 16px;
|
|
6112
6165
|
text-transform: none;
|
|
6113
6166
|
width: 100%;
|
|
6167
|
+
border-width: 0;
|
|
6114
6168
|
}
|
|
6115
6169
|
|
|
6116
6170
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -6173,6 +6227,7 @@
|
|
|
6173
6227
|
height: 24px;
|
|
6174
6228
|
padding-left: 10px;
|
|
6175
6229
|
width: 24px;
|
|
6230
|
+
font-size: 14px !important;
|
|
6176
6231
|
padding-left: 0;
|
|
6177
6232
|
margin-left: 8px;
|
|
6178
6233
|
}
|
|
@@ -6647,6 +6702,7 @@
|
|
|
6647
6702
|
.e-pivotfieldlist-container .e-dlg-header-content,
|
|
6648
6703
|
.e-pivotfieldlist-container .e-footer-content {
|
|
6649
6704
|
border: 0;
|
|
6705
|
+
height: 46px;
|
|
6650
6706
|
}
|
|
6651
6707
|
|
|
6652
6708
|
.e-pivotfieldlist-container .e-field-list-title {
|
|
@@ -6707,10 +6763,11 @@
|
|
|
6707
6763
|
font-weight: normal;
|
|
6708
6764
|
height: 28px;
|
|
6709
6765
|
overflow: hidden;
|
|
6710
|
-
padding: 6px 0 0
|
|
6766
|
+
padding: 6px 0 0 18px;
|
|
6711
6767
|
text-align: left;
|
|
6712
6768
|
text-overflow: ellipsis;
|
|
6713
6769
|
word-break: break-all;
|
|
6770
|
+
text-transform: uppercase;
|
|
6714
6771
|
}
|
|
6715
6772
|
|
|
6716
6773
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container {
|
|
@@ -6718,7 +6775,7 @@
|
|
|
6718
6775
|
color: #374151;
|
|
6719
6776
|
display: -ms-flexbox;
|
|
6720
6777
|
display: flex;
|
|
6721
|
-
padding-right:
|
|
6778
|
+
padding-right: 18px;
|
|
6722
6779
|
}
|
|
6723
6780
|
|
|
6724
6781
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
@@ -6732,7 +6789,7 @@
|
|
|
6732
6789
|
color: #374151;
|
|
6733
6790
|
cursor: pointer;
|
|
6734
6791
|
font-size: 14px;
|
|
6735
|
-
height: 20px;
|
|
6792
|
+
height: 20px !important;
|
|
6736
6793
|
padding: 6px 0 0 4px;
|
|
6737
6794
|
width: 20px;
|
|
6738
6795
|
}
|
|
@@ -6895,8 +6952,8 @@
|
|
|
6895
6952
|
display: -ms-flexbox;
|
|
6896
6953
|
display: flex;
|
|
6897
6954
|
height: 28px;
|
|
6898
|
-
padding: 2px
|
|
6899
|
-
padding: 5px
|
|
6955
|
+
padding: 2px 18px 5px;
|
|
6956
|
+
padding: 5px 18px;
|
|
6900
6957
|
}
|
|
6901
6958
|
|
|
6902
6959
|
.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,
|
|
@@ -7124,6 +7181,7 @@
|
|
|
7124
7181
|
text-align: left;
|
|
7125
7182
|
text-overflow: ellipsis;
|
|
7126
7183
|
width: 70%;
|
|
7184
|
+
line-height: 1.2em;
|
|
7127
7185
|
}
|
|
7128
7186
|
|
|
7129
7187
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button .e-draggable,
|
|
@@ -7381,12 +7439,12 @@
|
|
|
7381
7439
|
|
|
7382
7440
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header {
|
|
7383
7441
|
padding-left: 0;
|
|
7384
|
-
padding-right:
|
|
7442
|
+
padding-right: 18px;
|
|
7385
7443
|
text-align: right;
|
|
7386
7444
|
}
|
|
7387
7445
|
|
|
7388
7446
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
7389
|
-
padding-left:
|
|
7447
|
+
padding-left: 18px;
|
|
7390
7448
|
padding-right: 0;
|
|
7391
7449
|
}
|
|
7392
7450
|
|
|
@@ -7501,6 +7559,8 @@
|
|
|
7501
7559
|
height: 48px;
|
|
7502
7560
|
padding-bottom: 9px;
|
|
7503
7561
|
padding-top: 9px;
|
|
7562
|
+
padding-left: 16px;
|
|
7563
|
+
padding-right: 16px;
|
|
7504
7564
|
}
|
|
7505
7565
|
|
|
7506
7566
|
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -7557,7 +7617,7 @@
|
|
|
7557
7617
|
display: inline-block;
|
|
7558
7618
|
height: 100%;
|
|
7559
7619
|
min-height: 250px;
|
|
7560
|
-
padding-top:
|
|
7620
|
+
padding-top: 0;
|
|
7561
7621
|
position: relative;
|
|
7562
7622
|
width: 100%;
|
|
7563
7623
|
}
|
|
@@ -7666,6 +7726,7 @@
|
|
|
7666
7726
|
height: 24px;
|
|
7667
7727
|
padding-left: 10px;
|
|
7668
7728
|
width: 24px;
|
|
7729
|
+
font-size: 14px !important;
|
|
7669
7730
|
}
|
|
7670
7731
|
|
|
7671
7732
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
@@ -8063,7 +8124,7 @@
|
|
|
8063
8124
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-right-axis-fields,
|
|
8064
8125
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-left-axis-fields,
|
|
8065
8126
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-right-axis-fields {
|
|
8066
|
-
padding-left: 16px;
|
|
8127
|
+
padding-left: 16px !important;
|
|
8067
8128
|
}
|
|
8068
8129
|
|
|
8069
8130
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-field-header,
|
|
@@ -8089,7 +8150,7 @@
|
|
|
8089
8150
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-ascend,
|
|
8090
8151
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-descend {
|
|
8091
8152
|
font-size: 16px;
|
|
8092
|
-
height: 24px;
|
|
8153
|
+
height: 24px !important;
|
|
8093
8154
|
padding: 6px 0 0 4px;
|
|
8094
8155
|
width: 24px;
|
|
8095
8156
|
}
|
|
@@ -8221,7 +8282,7 @@
|
|
|
8221
8282
|
.e-bigger.e-pivotfieldlist-wrapper .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-header,
|
|
8222
8283
|
.e-bigger.e-pivotfieldlist-wrapper .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-header {
|
|
8223
8284
|
font-size: 14px;
|
|
8224
|
-
line-height: 1.
|
|
8285
|
+
line-height: 1.8em;
|
|
8225
8286
|
margin-top: 4px;
|
|
8226
8287
|
padding: 0 12px;
|
|
8227
8288
|
}
|
|
@@ -8309,6 +8370,7 @@
|
|
|
8309
8370
|
font-size: 22px;
|
|
8310
8371
|
height: 24px;
|
|
8311
8372
|
width: 24px;
|
|
8373
|
+
padding-left: 6px;
|
|
8312
8374
|
}
|
|
8313
8375
|
|
|
8314
8376
|
.e-bigger .e-pivotfieldlist-wrapper .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button .e-sort,
|
|
@@ -8547,7 +8609,7 @@
|
|
|
8547
8609
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-ascend,
|
|
8548
8610
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-descend {
|
|
8549
8611
|
font-size: 16px;
|
|
8550
|
-
height: 24px;
|
|
8612
|
+
height: 24px !important;
|
|
8551
8613
|
padding: 6px 0 0 4px;
|
|
8552
8614
|
width: 24px;
|
|
8553
8615
|
}
|
|
@@ -8677,7 +8739,7 @@
|
|
|
8677
8739
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-container .e-axis-header,
|
|
8678
8740
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container .e-axis-header {
|
|
8679
8741
|
font-size: 14px;
|
|
8680
|
-
line-height: 1.
|
|
8742
|
+
line-height: 1.8em;
|
|
8681
8743
|
margin-top: 4px;
|
|
8682
8744
|
padding: 0 12px;
|
|
8683
8745
|
}
|