@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-dark.css
CHANGED
|
@@ -3,180 +3,179 @@
|
|
|
3
3
|
/*! component's common definitions and variables */
|
|
4
4
|
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
|
|
5
5
|
.e-pivotview .e-expand::before {
|
|
6
|
-
content: '\
|
|
6
|
+
content: '\e75c';
|
|
7
7
|
}
|
|
8
8
|
|
|
9
9
|
.e-pivotview .e-collapse::before {
|
|
10
|
-
content: '\
|
|
10
|
+
content: '\e734';
|
|
11
11
|
}
|
|
12
12
|
|
|
13
13
|
.e-pivotview.e-rtl .e-expand::before {
|
|
14
|
-
content: '\
|
|
14
|
+
content: '\e738';
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.e-pivotview .e-sort::before {
|
|
18
|
-
content: '\
|
|
18
|
+
content: '\e7df';
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
.e-pivotview .e-pv-filter::before {
|
|
22
|
-
content: '\
|
|
22
|
+
content: '\e7f7';
|
|
23
23
|
}
|
|
24
24
|
|
|
25
25
|
.e-pivotview .e-pv-filtered::before {
|
|
26
|
-
|
|
27
|
-
content: '\e7c5';
|
|
26
|
+
content: '\e735';
|
|
28
27
|
}
|
|
29
28
|
|
|
30
29
|
.e-pivotview .e-remove::before {
|
|
31
|
-
content: '\
|
|
30
|
+
content: '\e7e7';
|
|
32
31
|
}
|
|
33
32
|
|
|
34
33
|
.e-pivotview .e-selected-option-icon::before {
|
|
35
|
-
content: '\
|
|
34
|
+
content: '\e72b';
|
|
36
35
|
}
|
|
37
36
|
|
|
38
37
|
.e-pivotview .e-clear-filter-icon::before {
|
|
39
|
-
content: '\
|
|
38
|
+
content: '\e72c';
|
|
40
39
|
}
|
|
41
40
|
|
|
42
41
|
.e-pivotview .e-dropdown-icon::before {
|
|
43
|
-
content: '\
|
|
42
|
+
content: '\e729';
|
|
44
43
|
}
|
|
45
44
|
|
|
46
45
|
.e-pivotview .e-export::before {
|
|
47
|
-
content: '\
|
|
46
|
+
content: '\e72e';
|
|
48
47
|
}
|
|
49
48
|
|
|
50
49
|
.e-pivotview .e-new-report::before {
|
|
51
|
-
content: '\
|
|
50
|
+
content: '\e7dc';
|
|
52
51
|
}
|
|
53
52
|
|
|
54
53
|
.e-pivotview .e-save-report::before {
|
|
55
|
-
content: '\
|
|
54
|
+
content: '\e7c8';
|
|
56
55
|
}
|
|
57
56
|
|
|
58
57
|
.e-pivotview .e-saveas-report::before {
|
|
59
|
-
content: '\
|
|
58
|
+
content: '\e7ae';
|
|
60
59
|
}
|
|
61
60
|
|
|
62
61
|
.e-pivotview .e-rename-report::before {
|
|
63
|
-
content: '\
|
|
62
|
+
content: '\e76d';
|
|
64
63
|
}
|
|
65
64
|
|
|
66
65
|
.e-pivotview .e-remove-report::before {
|
|
67
|
-
content: '\
|
|
66
|
+
content: '\e820';
|
|
68
67
|
}
|
|
69
68
|
|
|
70
69
|
.e-pivotview .e-sub-total::before {
|
|
71
|
-
content: '\
|
|
70
|
+
content: '\e702';
|
|
72
71
|
}
|
|
73
72
|
|
|
74
73
|
.e-pivotview .e-grand-total::before {
|
|
75
|
-
content: '\
|
|
74
|
+
content: '\e74d';
|
|
76
75
|
}
|
|
77
76
|
|
|
78
77
|
.e-pivotview .e-toolbar-fieldlist::before {
|
|
79
|
-
content: '\
|
|
78
|
+
content: '\e751';
|
|
80
79
|
}
|
|
81
80
|
|
|
82
81
|
.e-pivotview .e-toolbar-grid::before {
|
|
83
|
-
content: '\
|
|
82
|
+
content: '\e7e9';
|
|
84
83
|
}
|
|
85
84
|
|
|
86
85
|
.e-pivotview .e-toolbar-chart::before {
|
|
87
|
-
content: '\
|
|
86
|
+
content: '\e826';
|
|
88
87
|
}
|
|
89
88
|
|
|
90
89
|
.e-pivotview .e-toolbar-formatting::before {
|
|
91
|
-
content: '\
|
|
90
|
+
content: '\e71b';
|
|
92
91
|
}
|
|
93
92
|
|
|
94
93
|
.e-pivotview .e-pivot-button .e-edit::before {
|
|
95
|
-
content: '\
|
|
94
|
+
content: '\e730';
|
|
96
95
|
}
|
|
97
96
|
|
|
98
97
|
.e-pivotview .e-sort-ascend-icon::before {
|
|
99
|
-
content: '\
|
|
98
|
+
content: '\e7a3';
|
|
100
99
|
}
|
|
101
100
|
|
|
102
101
|
.e-pivotview .e-sort-descend-icon::before {
|
|
103
|
-
content: '\
|
|
102
|
+
content: '\e7b6';
|
|
104
103
|
}
|
|
105
104
|
|
|
106
105
|
.e-pivotview-pdf-export::before {
|
|
107
|
-
content: '\
|
|
106
|
+
content: '\e700';
|
|
108
107
|
}
|
|
109
108
|
|
|
110
109
|
.e-pivotview-excel-export::before {
|
|
111
|
-
content: '\
|
|
110
|
+
content: '\e7c1';
|
|
112
111
|
}
|
|
113
112
|
|
|
114
113
|
.e-pivotview-csv-export::before {
|
|
115
|
-
content: '\
|
|
114
|
+
content: '\e7ba';
|
|
116
115
|
}
|
|
117
116
|
|
|
118
117
|
.e-pivotview-png-export::before {
|
|
119
|
-
content: '\
|
|
118
|
+
content: '\e7ee';
|
|
120
119
|
}
|
|
121
120
|
|
|
122
121
|
.e-pivotview-jpeg-export::before {
|
|
123
|
-
content: '\
|
|
122
|
+
content: '\e786';
|
|
124
123
|
}
|
|
125
124
|
|
|
126
125
|
.e-pivotview-svg-export::before {
|
|
127
|
-
content: '\
|
|
126
|
+
content: '\e7cf';
|
|
128
127
|
}
|
|
129
128
|
|
|
130
129
|
.e-mdx::before {
|
|
131
|
-
content: '\
|
|
130
|
+
content: '\e7ac';
|
|
132
131
|
}
|
|
133
132
|
|
|
134
133
|
.e-pivotview-select-icon::before {
|
|
135
|
-
content: '\
|
|
134
|
+
content: '\e774';
|
|
136
135
|
}
|
|
137
136
|
|
|
138
137
|
.e-pivotview-export::before {
|
|
139
|
-
content: '\
|
|
138
|
+
content: '\e72e';
|
|
140
139
|
}
|
|
141
140
|
|
|
142
141
|
.e-pivotview-grid::before {
|
|
143
|
-
content: '\
|
|
142
|
+
content: '\e7e9';
|
|
144
143
|
}
|
|
145
144
|
|
|
146
145
|
.e-pivotview-expand::before {
|
|
147
|
-
content: '\
|
|
146
|
+
content: '\e7c9';
|
|
148
147
|
}
|
|
149
148
|
|
|
150
149
|
.e-pivotview-collapse::before {
|
|
151
|
-
content: '\
|
|
150
|
+
content: '\e80f';
|
|
152
151
|
}
|
|
153
152
|
|
|
154
153
|
.e-pivot-format-menu::before {
|
|
155
|
-
content: '\
|
|
154
|
+
content: '\e76d';
|
|
156
155
|
}
|
|
157
156
|
|
|
158
157
|
.e-pivot-number-format-menu::before {
|
|
159
|
-
content: '\
|
|
158
|
+
content: '\e787';
|
|
160
159
|
}
|
|
161
160
|
|
|
162
161
|
.e-pivot-conditional-format-menu::before {
|
|
163
|
-
content: '\
|
|
162
|
+
content: '\e71b';
|
|
164
163
|
}
|
|
165
164
|
|
|
166
165
|
.e-pivot-format-toolbar::before {
|
|
167
|
-
content: '\
|
|
166
|
+
content: '\e787';
|
|
168
167
|
}
|
|
169
168
|
|
|
170
169
|
.e-pivotview-group::before {
|
|
171
|
-
content: '\
|
|
170
|
+
content: '\e7a5';
|
|
172
171
|
}
|
|
173
172
|
|
|
174
173
|
.e-pivotview-ungroup::before {
|
|
175
|
-
content: '\
|
|
174
|
+
content: '\e779';
|
|
176
175
|
}
|
|
177
176
|
|
|
178
177
|
.e-level-options .e-selected-level-icon::before {
|
|
179
|
-
content: '\
|
|
178
|
+
content: '\e774';
|
|
180
179
|
}
|
|
181
180
|
|
|
182
181
|
/*! PivotView layout */
|
|
@@ -734,6 +733,10 @@
|
|
|
734
733
|
line-height: 40px;
|
|
735
734
|
}
|
|
736
735
|
|
|
736
|
+
.e-pivotview .e-pivot-toolbar .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
737
|
+
margin-left: 18px !important;
|
|
738
|
+
}
|
|
739
|
+
|
|
737
740
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item.e-template {
|
|
738
741
|
padding: 0 !important;
|
|
739
742
|
}
|
|
@@ -801,7 +804,7 @@
|
|
|
801
804
|
|
|
802
805
|
.e-pivotview-report-label {
|
|
803
806
|
float: left;
|
|
804
|
-
margin-top:
|
|
807
|
+
margin-top: 4px;
|
|
805
808
|
width: 40%;
|
|
806
809
|
}
|
|
807
810
|
|
|
@@ -1082,7 +1085,20 @@
|
|
|
1082
1085
|
|
|
1083
1086
|
.e-bigger .e-pivotview-report-dialog .e-pivotview-report-label,
|
|
1084
1087
|
.e-bigger.e-pivotview-report-dialog .e-pivotview-report-label {
|
|
1085
|
-
margin-top:
|
|
1088
|
+
margin-top: 8px;
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
.e-bigger .e-dialog .e-footer-content {
|
|
1092
|
+
height: 62px;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
.e-bigger .e-dialog .e-dlg-header-content {
|
|
1096
|
+
height: 52px;
|
|
1097
|
+
padding-left: 10px;
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.e-bigger .e-tab .e-tab-header .e-toolbar-item.e-active {
|
|
1101
|
+
margin-left: 24px !important;
|
|
1086
1102
|
}
|
|
1087
1103
|
|
|
1088
1104
|
/*! PivotView theme */
|
|
@@ -1112,8 +1128,11 @@
|
|
|
1112
1128
|
|
|
1113
1129
|
.e-pivotview .e-grid
|
|
1114
1130
|
.e-rowcell {
|
|
1115
|
-
font-size: 14px;
|
|
1131
|
+
font-size: 14px !important;
|
|
1116
1132
|
padding-left: 8px;
|
|
1133
|
+
-webkit-user-select: none;
|
|
1134
|
+
-ms-user-select: none;
|
|
1135
|
+
user-select: none;
|
|
1117
1136
|
}
|
|
1118
1137
|
|
|
1119
1138
|
.e-pivotview .e-gtot,
|
|
@@ -1147,6 +1166,7 @@
|
|
|
1147
1166
|
margin-left: 8px;
|
|
1148
1167
|
margin-top: 5px;
|
|
1149
1168
|
vertical-align: middle;
|
|
1169
|
+
margin-left: 4px;
|
|
1150
1170
|
}
|
|
1151
1171
|
|
|
1152
1172
|
.e-pivotview .e-pivot-conditional-empty-format {
|
|
@@ -1171,6 +1191,14 @@
|
|
|
1171
1191
|
width: 100%;
|
|
1172
1192
|
}
|
|
1173
1193
|
|
|
1194
|
+
.e-pivotview .e-toolbar .e-tbar-btn {
|
|
1195
|
+
background-color: transparent;
|
|
1196
|
+
}
|
|
1197
|
+
|
|
1198
|
+
.e-pivotview .e-toolbar .e-tbar-btn:hover {
|
|
1199
|
+
background-color: #4b5563;
|
|
1200
|
+
}
|
|
1201
|
+
|
|
1174
1202
|
.e-pivotview .e-grid .e-rowsheader.e-active,
|
|
1175
1203
|
.e-pivotview .e-grid .e-rowsheader.e-cellselectionbackground,
|
|
1176
1204
|
.e-pivotview .e-grid .e-columnsheader.e-active,
|
|
@@ -1231,7 +1259,7 @@
|
|
|
1231
1259
|
|
|
1232
1260
|
.e-pivotview .e-sortfilterdiv {
|
|
1233
1261
|
float: right;
|
|
1234
|
-
margin: -
|
|
1262
|
+
margin: -13px -5px !important;
|
|
1235
1263
|
}
|
|
1236
1264
|
|
|
1237
1265
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
@@ -1268,6 +1296,11 @@
|
|
|
1268
1296
|
|
|
1269
1297
|
.e-pivotview .e-grid .e-rowsheader {
|
|
1270
1298
|
padding-left: 8px;
|
|
1299
|
+
-webkit-user-select: none;
|
|
1300
|
+
-ms-user-select: none;
|
|
1301
|
+
user-select: none;
|
|
1302
|
+
-webkit-touch-callout: none;
|
|
1303
|
+
padding-left: 12px;
|
|
1271
1304
|
}
|
|
1272
1305
|
|
|
1273
1306
|
.e-pivotview .e-grid .e-rowsheader.e-active .e-icons {
|
|
@@ -1284,6 +1317,13 @@
|
|
|
1284
1317
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1285
1318
|
padding-left: 8px !important;
|
|
1286
1319
|
text-transform: none;
|
|
1320
|
+
padding-left: 12px !important;
|
|
1321
|
+
padding-top: 0px !important;
|
|
1322
|
+
padding-bottom: 0px !important;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1325
|
+
.e-pivotview .sf-grid .e-spinner-pane {
|
|
1326
|
+
z-index: 1 !important;
|
|
1287
1327
|
}
|
|
1288
1328
|
|
|
1289
1329
|
.e-pivotview .sf-grid .e-headercelldiv,
|
|
@@ -1291,8 +1331,8 @@
|
|
|
1291
1331
|
padding-right: 8px !important;
|
|
1292
1332
|
}
|
|
1293
1333
|
|
|
1294
|
-
.e-pivotview .
|
|
1295
|
-
.e-pivotview .
|
|
1334
|
+
.e-pivotview .e-grid .e-headercelldiv,
|
|
1335
|
+
.e-pivotview .e-grid .e-stackedheadercelldiv {
|
|
1296
1336
|
line-height: normal;
|
|
1297
1337
|
}
|
|
1298
1338
|
|
|
@@ -1310,9 +1350,10 @@
|
|
|
1310
1350
|
|
|
1311
1351
|
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1312
1352
|
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1313
|
-
padding-left:
|
|
1353
|
+
padding-left: 12px !important;
|
|
1314
1354
|
margin-top: 5px;
|
|
1315
1355
|
margin-top: 2px;
|
|
1356
|
+
padding-left: 8px !important;
|
|
1316
1357
|
}
|
|
1317
1358
|
|
|
1318
1359
|
.e-pivotview .e-stackedheadercelldiv {
|
|
@@ -2016,7 +2057,7 @@
|
|
|
2016
2057
|
|
|
2017
2058
|
.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2018
2059
|
.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2019
|
-
padding-right:
|
|
2060
|
+
padding-right: 12px !important;
|
|
2020
2061
|
}
|
|
2021
2062
|
|
|
2022
2063
|
.e-pivotview.e-rtl .e-sortfilterdiv {
|
|
@@ -2132,6 +2173,8 @@
|
|
|
2132
2173
|
.e-bigger .e-pivotview .e-grid .e-rowsheader,
|
|
2133
2174
|
.e-bigger.e-pivotview .e-grid .e-rowsheader {
|
|
2134
2175
|
padding-left: 8px !important;
|
|
2176
|
+
padding-left: 16px !important;
|
|
2177
|
+
padding-right: 12px !important;
|
|
2135
2178
|
}
|
|
2136
2179
|
|
|
2137
2180
|
.e-bigger .e-pivotview .e-grid .e-headercelldiv,
|
|
@@ -2144,6 +2187,11 @@
|
|
|
2144
2187
|
padding-left: 8px !important;
|
|
2145
2188
|
}
|
|
2146
2189
|
|
|
2190
|
+
.e-bigger .e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler,
|
|
2191
|
+
.e-bigger.e-pivotview .e-grid .e-gridheader .e-headercell .e-rhandler {
|
|
2192
|
+
height: 100% !important;
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2147
2195
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2148
2196
|
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2149
2197
|
.e-bigger .e-pivotview .e-headertext,
|
|
@@ -2155,6 +2203,11 @@
|
|
|
2155
2203
|
font-size: 14px !important;
|
|
2156
2204
|
}
|
|
2157
2205
|
|
|
2206
|
+
.e-bigger .e-pivotview .e-bigger .e-stackedheadercelldiv,
|
|
2207
|
+
.e-bigger.e-pivotview .e-bigger .e-stackedheadercelldiv {
|
|
2208
|
+
padding-left: 16px !important;
|
|
2209
|
+
}
|
|
2210
|
+
|
|
2158
2211
|
.e-bigger .e-pivotview th .e-expand,
|
|
2159
2212
|
.e-bigger .e-pivotview th .e-collapse,
|
|
2160
2213
|
.e-bigger.e-pivotview th .e-expand,
|
|
@@ -2186,7 +2239,7 @@
|
|
|
2186
2239
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button {
|
|
2187
2240
|
height: 30px;
|
|
2188
2241
|
line-height: 1em;
|
|
2189
|
-
padding:
|
|
2242
|
+
padding: 5px 12px;
|
|
2190
2243
|
}
|
|
2191
2244
|
|
|
2192
2245
|
.e-bigger .e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -2207,7 +2260,7 @@
|
|
|
2207
2260
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2208
2261
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2209
2262
|
.e-bigger.e-pivotview .e-grouping-bar .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2210
|
-
font-size: 14px;
|
|
2263
|
+
font-size: 14px !important;
|
|
2211
2264
|
height: 20px;
|
|
2212
2265
|
width: 20px;
|
|
2213
2266
|
}
|
|
@@ -2288,7 +2341,7 @@
|
|
|
2288
2341
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button {
|
|
2289
2342
|
height: 30px;
|
|
2290
2343
|
line-height: 1em;
|
|
2291
|
-
padding:
|
|
2344
|
+
padding: 5px 12px;
|
|
2292
2345
|
}
|
|
2293
2346
|
|
|
2294
2347
|
.e-bigger .e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -2309,7 +2362,7 @@
|
|
|
2309
2362
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-pv-filtered,
|
|
2310
2363
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-remove,
|
|
2311
2364
|
.e-bigger.e-pivotview .e-group-rows .e-pvt-btn-div .e-pivot-button .e-edit {
|
|
2312
|
-
font-size: 14px;
|
|
2365
|
+
font-size: 14px !important;
|
|
2313
2366
|
height: 20px;
|
|
2314
2367
|
width: 20px;
|
|
2315
2368
|
}
|
|
@@ -2326,7 +2379,7 @@
|
|
|
2326
2379
|
|
|
2327
2380
|
.e-bigger .e-pivotview .e-sortfilterdiv,
|
|
2328
2381
|
.e-bigger.e-pivotview .e-sortfilterdiv {
|
|
2329
|
-
margin: -
|
|
2382
|
+
margin: -13px -10px !important;
|
|
2330
2383
|
}
|
|
2331
2384
|
|
|
2332
2385
|
.e-bigger .e-pivotview .e-sortfilterdiv.e-value-sort-icon,
|
|
@@ -2374,7 +2427,8 @@
|
|
|
2374
2427
|
|
|
2375
2428
|
.e-bigger .e-pivotview .e-rowcell,
|
|
2376
2429
|
.e-bigger.e-pivotview .e-rowcell {
|
|
2377
|
-
font-size: 16px;
|
|
2430
|
+
font-size: 16px !important;
|
|
2431
|
+
padding: 0 12px;
|
|
2378
2432
|
}
|
|
2379
2433
|
|
|
2380
2434
|
.e-bigger .e-pivotview.e-rtl .e-grid .e-rowsheader,
|
|
@@ -2419,12 +2473,12 @@
|
|
|
2419
2473
|
.e-bigger .e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue,
|
|
2420
2474
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadertext.e-cellvalue,
|
|
2421
2475
|
.e-bigger.e-pivotview.e-rtl .e-stackedheadercelldiv.e-cellvalue {
|
|
2422
|
-
padding-right:
|
|
2476
|
+
padding-right: 16px !important;
|
|
2423
2477
|
}
|
|
2424
2478
|
|
|
2425
2479
|
.e-bigger .e-pivotview .e-expand::before,
|
|
2426
2480
|
.e-bigger.e-pivotview .e-expand::before {
|
|
2427
|
-
font-size:
|
|
2481
|
+
font-size: 24px;
|
|
2428
2482
|
}
|
|
2429
2483
|
|
|
2430
2484
|
.e-bigger .e-pivotview .e-collapse::before,
|
|
@@ -2440,384 +2494,383 @@
|
|
|
2440
2494
|
/*! component's common definitions and variables */
|
|
2441
2495
|
/*! field-list component icons */
|
|
2442
2496
|
.e-pivotfieldlist .e-select-table::before {
|
|
2443
|
-
content: '\
|
|
2497
|
+
content: '\e751';
|
|
2444
2498
|
}
|
|
2445
2499
|
|
|
2446
2500
|
.e-pivot-formatting-dialog .e-format-delete-icon::before {
|
|
2447
|
-
content: '\
|
|
2501
|
+
content: '\e7e7';
|
|
2448
2502
|
}
|
|
2449
2503
|
|
|
2450
2504
|
.e-pivot-formatting-dialog .e-add-icon::before {
|
|
2451
|
-
content: '\
|
|
2505
|
+
content: '\e805';
|
|
2452
2506
|
}
|
|
2453
2507
|
|
|
2454
2508
|
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
2455
2509
|
.e-pivot-formatting-dialog .e-colorpicker-container .e-format-back-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
2456
|
-
content: '\
|
|
2510
|
+
content: '\e783';
|
|
2457
2511
|
}
|
|
2458
2512
|
|
|
2459
2513
|
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before,
|
|
2460
2514
|
.e-pivot-formatting-dialog .e-colorpicker-container .e-format-font-color + .e-split-btn-wrapper .e-split-btn .e-selected-color::before {
|
|
2461
|
-
content: '\
|
|
2515
|
+
content: '\e76f';
|
|
2462
2516
|
}
|
|
2463
2517
|
|
|
2464
2518
|
.e-level-options .e-selected-level-icon::before {
|
|
2465
|
-
content: '\
|
|
2519
|
+
content: '\e774';
|
|
2466
2520
|
}
|
|
2467
2521
|
|
|
2468
2522
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
2469
|
-
content: '\
|
|
2523
|
+
content: '\e726';
|
|
2470
2524
|
}
|
|
2471
2525
|
|
|
2472
2526
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title-wrapper .e-info.e-icons::before,
|
|
2473
2527
|
.e-pivot-calc-dialog-div .e-pivot-all-field-title-container .e-info.e-icons::before {
|
|
2474
|
-
content: '\
|
|
2528
|
+
content: '\e800';
|
|
2475
2529
|
}
|
|
2476
2530
|
|
|
2477
2531
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-edited.e-icons::before {
|
|
2478
|
-
content: '\
|
|
2532
|
+
content: '\e740';
|
|
2479
2533
|
}
|
|
2480
2534
|
|
|
2481
2535
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-edit.e-icons::before {
|
|
2482
|
-
content: '\
|
|
2536
|
+
content: '\e730';
|
|
2483
2537
|
}
|
|
2484
2538
|
|
|
2485
2539
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-remove-report.e-icons::before {
|
|
2486
|
-
content: '\
|
|
2540
|
+
content: '\e820';
|
|
2487
2541
|
}
|
|
2488
2542
|
|
|
2489
2543
|
.e-pivot-calc-dialog-div .e-remove-report.e-icons::before {
|
|
2490
|
-
content: '\
|
|
2544
|
+
content: '\e820';
|
|
2491
2545
|
}
|
|
2492
2546
|
|
|
2493
2547
|
.e-pivot-calc-dialog-div .e-list-item .e-text-content .e-format.e-icons::before {
|
|
2494
|
-
content: '\
|
|
2548
|
+
content: '\e75c';
|
|
2495
2549
|
}
|
|
2496
2550
|
|
|
2497
2551
|
.e-pivot-calc-dialog-div .e-measureGroupCDB-icon::before {
|
|
2498
|
-
content: '\
|
|
2552
|
+
content: '\e7d2' !important;
|
|
2499
2553
|
}
|
|
2500
2554
|
|
|
2501
2555
|
.e-pivot-calc-dialog-div .e-measure-icon::before {
|
|
2502
|
-
content: '\
|
|
2556
|
+
content: '\e7d2' !important;
|
|
2503
2557
|
}
|
|
2504
2558
|
|
|
2505
2559
|
.e-pivot-calc-dialog-div .e-folderCDB-icon::before {
|
|
2506
|
-
content: '\
|
|
2560
|
+
content: '\e83c' !important;
|
|
2507
2561
|
}
|
|
2508
2562
|
|
|
2509
2563
|
.e-pivot-calc-dialog-div .e-folderCDB-open-icon::before {
|
|
2510
|
-
content: '\
|
|
2564
|
+
content: '\e760' !important;
|
|
2511
2565
|
}
|
|
2512
2566
|
|
|
2513
2567
|
.e-pivot-calc-dialog-div .e-dimensionCDB-icon::before {
|
|
2514
|
-
content: '\
|
|
2568
|
+
content: '\e81d' !important;
|
|
2515
2569
|
}
|
|
2516
2570
|
|
|
2517
2571
|
.e-pivot-calc-dialog-div .e-kpiCDB-icon::before {
|
|
2518
|
-
content: '\
|
|
2572
|
+
content: '\e73f' !important;
|
|
2519
2573
|
}
|
|
2520
2574
|
|
|
2521
2575
|
.e-pivot-calc-dialog-div .e-kpiGoal-icon::before {
|
|
2522
|
-
content: '\
|
|
2576
|
+
content: '\e73f' !important;
|
|
2523
2577
|
}
|
|
2524
2578
|
|
|
2525
2579
|
.e-pivot-calc-dialog-div .e-kpiStatus-icon::before {
|
|
2526
|
-
content: '\
|
|
2580
|
+
content: '\e73f' !important;
|
|
2527
2581
|
}
|
|
2528
2582
|
|
|
2529
2583
|
.e-pivot-calc-dialog-div .e-kpiTrend-icon::before {
|
|
2530
|
-
content: '\
|
|
2584
|
+
content: '\e73f' !important;
|
|
2531
2585
|
}
|
|
2532
2586
|
|
|
2533
2587
|
.e-pivot-calc-dialog-div .e-kpiValue-icon::before {
|
|
2534
|
-
content: '\
|
|
2588
|
+
content: '\e73f' !important;
|
|
2535
2589
|
}
|
|
2536
2590
|
|
|
2537
2591
|
.e-pivot-calc-dialog-div .e-namedSetCDB-icon::before {
|
|
2538
|
-
content: '\
|
|
2592
|
+
content: '\e829' !important;
|
|
2539
2593
|
}
|
|
2540
2594
|
|
|
2541
2595
|
.e-pivot-calc-dialog-div .e-hierarchyCDB-icon::before {
|
|
2542
|
-
content: '\
|
|
2596
|
+
content: '\e709' !important;
|
|
2543
2597
|
}
|
|
2544
2598
|
|
|
2545
2599
|
.e-pivot-calc-dialog-div .e-attributeCDB-icon::before {
|
|
2546
|
-
content: '\
|
|
2600
|
+
content: '\e73e' !important;
|
|
2547
2601
|
}
|
|
2548
2602
|
|
|
2549
2603
|
.e-pivot-calc-dialog-div .e-hierarchy-level-0-icon::before {
|
|
2550
|
-
content: '\
|
|
2604
|
+
content: '\e76a' !important;
|
|
2551
2605
|
}
|
|
2552
2606
|
|
|
2553
2607
|
.e-pivot-calc-dialog-div .e-hierarchy-level-1-icon::before {
|
|
2554
|
-
content: '\
|
|
2608
|
+
content: '\e76a' !important;
|
|
2555
2609
|
}
|
|
2556
2610
|
|
|
2557
2611
|
.e-pivot-calc-dialog-div .e-hierarchy-level-2-icon::before {
|
|
2558
|
-
content: '\
|
|
2612
|
+
content: '\e807' !important;
|
|
2559
2613
|
}
|
|
2560
2614
|
|
|
2561
2615
|
.e-pivot-calc-dialog-div .e-hierarchy-level-3-icon::before {
|
|
2562
|
-
content: '\
|
|
2616
|
+
content: '\e780' !important;
|
|
2563
2617
|
}
|
|
2564
2618
|
|
|
2565
2619
|
.e-pivot-calc-dialog-div .e-hierarchy-level-4-icon::before {
|
|
2566
|
-
content: '\
|
|
2620
|
+
content: '\e711' !important;
|
|
2567
2621
|
}
|
|
2568
2622
|
|
|
2569
2623
|
.e-pivot-calc-dialog-div .e-hierarchy-level-5-icon::before {
|
|
2570
|
-
content: '\
|
|
2624
|
+
content: '\e837' !important;
|
|
2571
2625
|
}
|
|
2572
2626
|
|
|
2573
2627
|
.e-pivot-calc-dialog-div .e-calcMemberGroupCDB::before {
|
|
2574
|
-
content: '\
|
|
2628
|
+
content: '\e798' !important;
|
|
2575
2629
|
}
|
|
2576
2630
|
|
|
2577
2631
|
.e-pivot-calc-dialog-div .e-calc-measure-icon::before {
|
|
2578
|
-
content: '\
|
|
2632
|
+
content: '\e7d2' !important;
|
|
2579
2633
|
}
|
|
2580
2634
|
|
|
2581
2635
|
.e-pivot-calc-dialog-div .e-calc-dimension-icon::before {
|
|
2582
|
-
content: '\
|
|
2636
|
+
content: '\e81d' !important;
|
|
2583
2637
|
}
|
|
2584
2638
|
|
|
2585
2639
|
.e-pivot-calc-dialog-div .e-sort-none::before {
|
|
2586
|
-
content: '\
|
|
2640
|
+
content: '\e824' !important;
|
|
2587
2641
|
}
|
|
2588
2642
|
|
|
2589
2643
|
.e-pivot-calc-dialog-div .e-sort-ascend::before {
|
|
2590
|
-
content: '\
|
|
2644
|
+
content: '\e7df' !important;
|
|
2591
2645
|
}
|
|
2592
2646
|
|
|
2593
2647
|
.e-pivot-calc-dialog-div .e-sort-descend::before {
|
|
2594
|
-
content: '\
|
|
2648
|
+
content: '\e7d8' !important;
|
|
2595
2649
|
}
|
|
2596
2650
|
|
|
2597
2651
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
2598
2652
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
2599
|
-
content: '\
|
|
2653
|
+
content: '\e773';
|
|
2600
2654
|
}
|
|
2601
2655
|
|
|
2602
2656
|
.e-pivotfieldlist-wrapper .e-sort::before,
|
|
2603
2657
|
.e-pivotfieldlist-container .e-sort::before {
|
|
2604
|
-
content: '\
|
|
2658
|
+
content: '\e7df';
|
|
2605
2659
|
}
|
|
2606
2660
|
|
|
2607
2661
|
.e-pivotfieldlist-wrapper .e-pv-filter::before,
|
|
2608
2662
|
.e-pivotfieldlist-container .e-pv-filter::before {
|
|
2609
|
-
content: '\
|
|
2663
|
+
content: '\e7f7';
|
|
2610
2664
|
}
|
|
2611
2665
|
|
|
2612
2666
|
.e-pivotfieldlist-wrapper .e-pv-filtered::before,
|
|
2613
2667
|
.e-pivotfieldlist-container .e-pv-filtered::before {
|
|
2614
|
-
|
|
2615
|
-
content: '\e7c5';
|
|
2668
|
+
content: '\e735';
|
|
2616
2669
|
}
|
|
2617
2670
|
|
|
2618
2671
|
.e-pivotfieldlist-wrapper .e-drag::before,
|
|
2619
2672
|
.e-pivotfieldlist-container .e-drag::before {
|
|
2620
|
-
content: '\
|
|
2673
|
+
content: '\e726';
|
|
2621
2674
|
}
|
|
2622
2675
|
|
|
2623
2676
|
.e-pivotfieldlist-wrapper .e-add-icon::before,
|
|
2624
2677
|
.e-pivotfieldlist-container .e-add-icon::before {
|
|
2625
|
-
content: '\
|
|
2678
|
+
content: '\e805';
|
|
2626
2679
|
}
|
|
2627
2680
|
|
|
2628
2681
|
.e-pivotfieldlist-wrapper .e-remove::before,
|
|
2629
2682
|
.e-pivotfieldlist-container .e-remove::before {
|
|
2630
|
-
content: '\
|
|
2683
|
+
content: '\e7e7';
|
|
2631
2684
|
}
|
|
2632
2685
|
|
|
2633
2686
|
.e-pivotfieldlist-wrapper .e-axis-rows::before,
|
|
2634
2687
|
.e-pivotfieldlist-container .e-axis-rows::before {
|
|
2635
|
-
content: '\
|
|
2688
|
+
content: '\e7e6';
|
|
2636
2689
|
}
|
|
2637
2690
|
|
|
2638
2691
|
.e-pivotfieldlist-wrapper .e-axis-columns::before,
|
|
2639
2692
|
.e-pivotfieldlist-container .e-axis-columns::before {
|
|
2640
|
-
content: '\
|
|
2693
|
+
content: '\e76b';
|
|
2641
2694
|
}
|
|
2642
2695
|
|
|
2643
2696
|
.e-pivotfieldlist-wrapper .e-axis-values::before,
|
|
2644
2697
|
.e-pivotfieldlist-container .e-axis-values::before {
|
|
2645
|
-
content: '\
|
|
2698
|
+
content: '\e7d2';
|
|
2646
2699
|
}
|
|
2647
2700
|
|
|
2648
2701
|
.e-pivotfieldlist-wrapper .e-axis-filters::before,
|
|
2649
2702
|
.e-pivotfieldlist-container .e-axis-filters::before {
|
|
2650
|
-
content: '\
|
|
2703
|
+
content: '\e7f7';
|
|
2651
2704
|
}
|
|
2652
2705
|
|
|
2653
2706
|
.e-pivotfieldlist-wrapper .e-selected-option-icon::before,
|
|
2654
2707
|
.e-pivotfieldlist-container .e-selected-option-icon::before {
|
|
2655
|
-
content: '\
|
|
2708
|
+
content: '\e72b';
|
|
2656
2709
|
}
|
|
2657
2710
|
|
|
2658
2711
|
.e-pivotfieldlist-wrapper .e-clear-filter-icon::before,
|
|
2659
2712
|
.e-pivotfieldlist-container .e-clear-filter-icon::before {
|
|
2660
|
-
content: '\
|
|
2713
|
+
content: '\e72c';
|
|
2661
2714
|
}
|
|
2662
2715
|
|
|
2663
2716
|
.e-pivotfieldlist-wrapper .e-dropdown-icon::before,
|
|
2664
2717
|
.e-pivotfieldlist-container .e-dropdown-icon::before {
|
|
2665
|
-
content: '\
|
|
2718
|
+
content: '\e729';
|
|
2666
2719
|
}
|
|
2667
2720
|
|
|
2668
2721
|
.e-pivotfieldlist-wrapper .e-measureGroupCDB-icon::before,
|
|
2669
2722
|
.e-pivotfieldlist-container .e-measureGroupCDB-icon::before {
|
|
2670
|
-
content: '\
|
|
2723
|
+
content: '\e7d2' !important;
|
|
2671
2724
|
}
|
|
2672
2725
|
|
|
2673
2726
|
.e-pivotfieldlist-wrapper .e-measure-icon::before,
|
|
2674
2727
|
.e-pivotfieldlist-container .e-measure-icon::before {
|
|
2675
|
-
content: '\
|
|
2728
|
+
content: '\e7d2' !important;
|
|
2676
2729
|
}
|
|
2677
2730
|
|
|
2678
2731
|
.e-pivotfieldlist-wrapper .e-folderCDB-icon::before,
|
|
2679
2732
|
.e-pivotfieldlist-container .e-folderCDB-icon::before {
|
|
2680
|
-
content: '\
|
|
2733
|
+
content: '\e83c' !important;
|
|
2681
2734
|
}
|
|
2682
2735
|
|
|
2683
2736
|
.e-pivotfieldlist-wrapper .e-folderCDB-open-icon::before,
|
|
2684
2737
|
.e-pivotfieldlist-container .e-folderCDB-open-icon::before {
|
|
2685
|
-
content: '\
|
|
2738
|
+
content: '\e760' !important;
|
|
2686
2739
|
}
|
|
2687
2740
|
|
|
2688
2741
|
.e-pivotfieldlist-wrapper .e-dimensionCDB-icon::before,
|
|
2689
2742
|
.e-pivotfieldlist-container .e-dimensionCDB-icon::before {
|
|
2690
|
-
content: '\
|
|
2743
|
+
content: '\e81d' !important;
|
|
2691
2744
|
}
|
|
2692
2745
|
|
|
2693
2746
|
.e-pivotfieldlist-wrapper .e-kpiCDB-icon::before,
|
|
2694
2747
|
.e-pivotfieldlist-container .e-kpiCDB-icon::before {
|
|
2695
|
-
content: '\
|
|
2748
|
+
content: '\e73f' !important;
|
|
2696
2749
|
}
|
|
2697
2750
|
|
|
2698
2751
|
.e-pivotfieldlist-wrapper .e-kpiGoal-icon::before,
|
|
2699
2752
|
.e-pivotfieldlist-container .e-kpiGoal-icon::before {
|
|
2700
|
-
content: '\
|
|
2753
|
+
content: '\e73f' !important;
|
|
2701
2754
|
}
|
|
2702
2755
|
|
|
2703
2756
|
.e-pivotfieldlist-wrapper .e-kpiStatus-icon::before,
|
|
2704
2757
|
.e-pivotfieldlist-container .e-kpiStatus-icon::before {
|
|
2705
|
-
content: '\
|
|
2758
|
+
content: '\e73f' !important;
|
|
2706
2759
|
}
|
|
2707
2760
|
|
|
2708
2761
|
.e-pivotfieldlist-wrapper .e-kpiTrend-icon::before,
|
|
2709
2762
|
.e-pivotfieldlist-container .e-kpiTrend-icon::before {
|
|
2710
|
-
content: '\
|
|
2763
|
+
content: '\e73f' !important;
|
|
2711
2764
|
}
|
|
2712
2765
|
|
|
2713
2766
|
.e-pivotfieldlist-wrapper .e-kpiValue-icon::before,
|
|
2714
2767
|
.e-pivotfieldlist-container .e-kpiValue-icon::before {
|
|
2715
|
-
content: '\
|
|
2768
|
+
content: '\e73f' !important;
|
|
2716
2769
|
}
|
|
2717
2770
|
|
|
2718
2771
|
.e-pivotfieldlist-wrapper .e-namedSetCDB-icon::before,
|
|
2719
2772
|
.e-pivotfieldlist-container .e-namedSetCDB-icon::before {
|
|
2720
|
-
content: '\
|
|
2773
|
+
content: '\e829' !important;
|
|
2721
2774
|
}
|
|
2722
2775
|
|
|
2723
2776
|
.e-pivotfieldlist-wrapper .e-hierarchyCDB-icon::before,
|
|
2724
2777
|
.e-pivotfieldlist-container .e-hierarchyCDB-icon::before {
|
|
2725
|
-
content: '\
|
|
2778
|
+
content: '\e709' !important;
|
|
2726
2779
|
}
|
|
2727
2780
|
|
|
2728
2781
|
.e-pivotfieldlist-wrapper .e-attributeCDB-icon::before,
|
|
2729
2782
|
.e-pivotfieldlist-container .e-attributeCDB-icon::before {
|
|
2730
|
-
content: '\
|
|
2783
|
+
content: '\e73e' !important;
|
|
2731
2784
|
}
|
|
2732
2785
|
|
|
2733
2786
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-0-icon::before,
|
|
2734
2787
|
.e-pivotfieldlist-container .e-hierarchy-level-0-icon::before {
|
|
2735
|
-
content: '\
|
|
2788
|
+
content: '\e76a' !important;
|
|
2736
2789
|
}
|
|
2737
2790
|
|
|
2738
2791
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-1-icon::before,
|
|
2739
2792
|
.e-pivotfieldlist-container .e-hierarchy-level-1-icon::before {
|
|
2740
|
-
content: '\
|
|
2793
|
+
content: '\e76a' !important;
|
|
2741
2794
|
}
|
|
2742
2795
|
|
|
2743
2796
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-2-icon::before,
|
|
2744
2797
|
.e-pivotfieldlist-container .e-hierarchy-level-2-icon::before {
|
|
2745
|
-
content: '\
|
|
2798
|
+
content: '\e807' !important;
|
|
2746
2799
|
}
|
|
2747
2800
|
|
|
2748
2801
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-3-icon::before,
|
|
2749
2802
|
.e-pivotfieldlist-container .e-hierarchy-level-3-icon::before {
|
|
2750
|
-
content: '\
|
|
2803
|
+
content: '\e780' !important;
|
|
2751
2804
|
}
|
|
2752
2805
|
|
|
2753
2806
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-4-icon::before,
|
|
2754
2807
|
.e-pivotfieldlist-container .e-hierarchy-level-4-icon::before {
|
|
2755
|
-
content: '\
|
|
2808
|
+
content: '\e711' !important;
|
|
2756
2809
|
}
|
|
2757
2810
|
|
|
2758
2811
|
.e-pivotfieldlist-wrapper .e-hierarchy-level-5-icon::before,
|
|
2759
2812
|
.e-pivotfieldlist-container .e-hierarchy-level-5-icon::before {
|
|
2760
|
-
content: '\
|
|
2813
|
+
content: '\e837' !important;
|
|
2761
2814
|
}
|
|
2762
2815
|
|
|
2763
2816
|
.e-pivotfieldlist-wrapper .e-calcMemberGroupCDB::before,
|
|
2764
2817
|
.e-pivotfieldlist-container .e-calcMemberGroupCDB::before {
|
|
2765
|
-
content: '\
|
|
2818
|
+
content: '\e798' !important;
|
|
2766
2819
|
}
|
|
2767
2820
|
|
|
2768
2821
|
.e-pivotfieldlist-wrapper .e-calc-measure-icon::before,
|
|
2769
2822
|
.e-pivotfieldlist-container .e-calc-measure-icon::before {
|
|
2770
|
-
content: '\
|
|
2823
|
+
content: '\e7d2' !important;
|
|
2771
2824
|
}
|
|
2772
2825
|
|
|
2773
2826
|
.e-pivotfieldlist-wrapper .e-calc-dimension-icon::before,
|
|
2774
2827
|
.e-pivotfieldlist-container .e-calc-dimension-icon::before {
|
|
2775
|
-
content: '\
|
|
2828
|
+
content: '\e81d' !important;
|
|
2776
2829
|
}
|
|
2777
2830
|
|
|
2778
2831
|
.e-pivotfieldlist-wrapper .e-sort-none::before,
|
|
2779
2832
|
.e-pivotfieldlist-container .e-sort-none::before {
|
|
2780
|
-
content: '\
|
|
2833
|
+
content: '\e824' !important;
|
|
2781
2834
|
}
|
|
2782
2835
|
|
|
2783
2836
|
.e-pivotfieldlist-wrapper .e-sort-ascend::before,
|
|
2784
2837
|
.e-pivotfieldlist-container .e-sort-ascend::before {
|
|
2785
|
-
content: '\
|
|
2838
|
+
content: '\e7df' !important;
|
|
2786
2839
|
}
|
|
2787
2840
|
|
|
2788
2841
|
.e-pivotfieldlist-wrapper .e-sort-descend::before,
|
|
2789
2842
|
.e-pivotfieldlist-container .e-sort-descend::before {
|
|
2790
|
-
content: '\
|
|
2843
|
+
content: '\e7d8' !important;
|
|
2791
2844
|
}
|
|
2792
2845
|
|
|
2793
2846
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before,
|
|
2794
2847
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edited.e-icons::before {
|
|
2795
|
-
content: '\
|
|
2848
|
+
content: '\e740';
|
|
2796
2849
|
}
|
|
2797
2850
|
|
|
2798
2851
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before,
|
|
2799
2852
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-edit.e-icons::before {
|
|
2800
|
-
content: '\
|
|
2853
|
+
content: '\e730';
|
|
2801
2854
|
}
|
|
2802
2855
|
|
|
2803
2856
|
.e-pivotfieldlist-wrapper .e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before,
|
|
2804
2857
|
.e-pivotfieldlist-container .e-pivot-calc-outer-div .e-pivot-accord .e-remove-report.e-icons::before {
|
|
2805
|
-
content: '\
|
|
2858
|
+
content: '\e820';
|
|
2806
2859
|
}
|
|
2807
2860
|
|
|
2808
2861
|
.e-pivotfieldlist-wrapper .e-pivot-button .e-edit::before,
|
|
2809
2862
|
.e-pivotfieldlist-container .e-pivot-button .e-edit::before {
|
|
2810
|
-
content: '\
|
|
2863
|
+
content: '\e730';
|
|
2811
2864
|
}
|
|
2812
2865
|
|
|
2813
2866
|
.e-pivotfieldlist-wrapper .e-sort-ascend-icon::before,
|
|
2814
2867
|
.e-pivotfieldlist-container .e-sort-ascend-icon::before {
|
|
2815
|
-
content: '\
|
|
2868
|
+
content: '\e7a3';
|
|
2816
2869
|
}
|
|
2817
2870
|
|
|
2818
2871
|
.e-pivotfieldlist-wrapper .e-sort-descend-icon::before,
|
|
2819
2872
|
.e-pivotfieldlist-container .e-sort-descend-icon::before {
|
|
2820
|
-
content: '\
|
|
2873
|
+
content: '\e7b6';
|
|
2821
2874
|
}
|
|
2822
2875
|
|
|
2823
2876
|
/*! field-list theme */
|
|
@@ -2836,7 +2889,7 @@
|
|
|
2836
2889
|
}
|
|
2837
2890
|
|
|
2838
2891
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
2839
|
-
padding-bottom:
|
|
2892
|
+
padding-bottom: 4px;
|
|
2840
2893
|
}
|
|
2841
2894
|
|
|
2842
2895
|
.e-pivot-formatting-dialog .e-format-delete-icon {
|
|
@@ -2864,8 +2917,7 @@
|
|
|
2864
2917
|
|
|
2865
2918
|
.e-pivot-formatting-dialog .e-format-font-color-picker {
|
|
2866
2919
|
margin-left: 0;
|
|
2867
|
-
margin-right:
|
|
2868
|
-
margin-right: 7px;
|
|
2920
|
+
margin-right: 16px;
|
|
2869
2921
|
}
|
|
2870
2922
|
|
|
2871
2923
|
.e-pivot-formatting-dialog .e-format-inner-div {
|
|
@@ -2992,9 +3044,8 @@
|
|
|
2992
3044
|
}
|
|
2993
3045
|
|
|
2994
3046
|
.e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker {
|
|
2995
|
-
margin-left:
|
|
3047
|
+
margin-left: 16px;
|
|
2996
3048
|
margin-right: 0;
|
|
2997
|
-
margin-left: 6px;
|
|
2998
3049
|
}
|
|
2999
3050
|
|
|
3000
3051
|
.e-pivot-formatting-dialog.e-rtl .e-format-condition-button {
|
|
@@ -3016,7 +3067,7 @@
|
|
|
3016
3067
|
}
|
|
3017
3068
|
|
|
3018
3069
|
.e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker {
|
|
3019
|
-
margin-
|
|
3070
|
+
margin-right: 0;
|
|
3020
3071
|
}
|
|
3021
3072
|
|
|
3022
3073
|
.e-bigger.e-pivot-formatting-dialog,
|
|
@@ -3064,7 +3115,6 @@
|
|
|
3064
3115
|
.e-bigger .e-pivot-formatting-dialog .e-format-font-color-picker {
|
|
3065
3116
|
margin-left: 0;
|
|
3066
3117
|
margin-right: 20px;
|
|
3067
|
-
margin-right: 7px;
|
|
3068
3118
|
}
|
|
3069
3119
|
|
|
3070
3120
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
@@ -3085,11 +3135,6 @@
|
|
|
3085
3135
|
padding-top: 16px;
|
|
3086
3136
|
}
|
|
3087
3137
|
|
|
3088
|
-
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-font-color-picker,
|
|
3089
|
-
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-font-color-picker {
|
|
3090
|
-
margin-right: 30px;
|
|
3091
|
-
}
|
|
3092
|
-
|
|
3093
3138
|
.e-bigger.e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker,
|
|
3094
3139
|
.e-bigger .e-pivot-formatting-dialog.e-rtl .e-format-font-color-picker {
|
|
3095
3140
|
margin-left: 20px;
|
|
@@ -3097,11 +3142,6 @@
|
|
|
3097
3142
|
margin-left: 6px;
|
|
3098
3143
|
}
|
|
3099
3144
|
|
|
3100
|
-
.e-bigger.e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker,
|
|
3101
|
-
.e-bigger .e-pivot-formatting-dialog.e-rtl.e-device .e-format-font-color-picker {
|
|
3102
|
-
margin-left: 30px;
|
|
3103
|
-
}
|
|
3104
|
-
|
|
3105
3145
|
.e-pivot-calc-dialog-div {
|
|
3106
3146
|
max-height: 550px !important;
|
|
3107
3147
|
min-width: 290px;
|
|
@@ -3125,7 +3165,7 @@
|
|
|
3125
3165
|
color: #d1d5db;
|
|
3126
3166
|
font-size: 12px;
|
|
3127
3167
|
margin-bottom: 4px;
|
|
3128
|
-
margin-top:
|
|
3168
|
+
margin-top: 12px;
|
|
3129
3169
|
overflow: hidden;
|
|
3130
3170
|
padding: 4px 0;
|
|
3131
3171
|
padding-bottom: 0;
|
|
@@ -3160,7 +3200,9 @@
|
|
|
3160
3200
|
|
|
3161
3201
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
3162
3202
|
color: #d1d5db;
|
|
3203
|
+
float: right !important;
|
|
3163
3204
|
margin: 0;
|
|
3205
|
+
margin-right: 12px !important;
|
|
3164
3206
|
}
|
|
3165
3207
|
|
|
3166
3208
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
@@ -3173,10 +3215,6 @@
|
|
|
3173
3215
|
padding: 0;
|
|
3174
3216
|
}
|
|
3175
3217
|
|
|
3176
|
-
.e-pivot-calc-dialog-div .e-treeview ul .e-list-item .e-text-content .e-list-text {
|
|
3177
|
-
line-height: 31px;
|
|
3178
|
-
}
|
|
3179
|
-
|
|
3180
3218
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons {
|
|
3181
3219
|
cursor: pointer;
|
|
3182
3220
|
font-size: 18px;
|
|
@@ -3191,8 +3229,10 @@
|
|
|
3191
3229
|
|
|
3192
3230
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons.e-format {
|
|
3193
3231
|
float: right;
|
|
3232
|
+
font-size: 20px;
|
|
3194
3233
|
margin-right: 12px;
|
|
3195
3234
|
padding-top: 10px;
|
|
3235
|
+
padding-top: 8px;
|
|
3196
3236
|
}
|
|
3197
3237
|
|
|
3198
3238
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-iconspace {
|
|
@@ -3224,6 +3264,8 @@
|
|
|
3224
3264
|
height: 20px;
|
|
3225
3265
|
margin-top: 0;
|
|
3226
3266
|
padding: 0 5px;
|
|
3267
|
+
position: relative;
|
|
3268
|
+
top: 2px;
|
|
3227
3269
|
width: 20px;
|
|
3228
3270
|
}
|
|
3229
3271
|
|
|
@@ -3312,7 +3354,7 @@
|
|
|
3312
3354
|
color: #fff;
|
|
3313
3355
|
font-size: 13px;
|
|
3314
3356
|
height: 70px;
|
|
3315
|
-
padding: 5px
|
|
3357
|
+
padding: 5px 8px;
|
|
3316
3358
|
resize: none;
|
|
3317
3359
|
width: 100%;
|
|
3318
3360
|
}
|
|
@@ -3348,7 +3390,7 @@
|
|
|
3348
3390
|
}
|
|
3349
3391
|
|
|
3350
3392
|
.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
3351
|
-
height:
|
|
3393
|
+
height: 441px;
|
|
3352
3394
|
width: 50%;
|
|
3353
3395
|
}
|
|
3354
3396
|
|
|
@@ -3360,7 +3402,7 @@
|
|
|
3360
3402
|
|
|
3361
3403
|
.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 {
|
|
3362
3404
|
display: inline-block;
|
|
3363
|
-
height:
|
|
3405
|
+
height: 414px;
|
|
3364
3406
|
overflow: auto;
|
|
3365
3407
|
width: 100%;
|
|
3366
3408
|
}
|
|
@@ -3418,6 +3460,7 @@
|
|
|
3418
3460
|
.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 {
|
|
3419
3461
|
padding: 0;
|
|
3420
3462
|
height: auto;
|
|
3463
|
+
float: none !important;
|
|
3421
3464
|
}
|
|
3422
3465
|
|
|
3423
3466
|
.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 {
|
|
@@ -3449,8 +3492,8 @@
|
|
|
3449
3492
|
flex: auto;
|
|
3450
3493
|
margin-top: 0;
|
|
3451
3494
|
padding-bottom: 4px;
|
|
3452
|
-
padding-left:
|
|
3453
|
-
padding-right:
|
|
3495
|
+
padding-left: 18px;
|
|
3496
|
+
padding-right: 18px;
|
|
3454
3497
|
}
|
|
3455
3498
|
|
|
3456
3499
|
.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 {
|
|
@@ -3459,6 +3502,7 @@
|
|
|
3459
3502
|
display: -ms-flexbox;
|
|
3460
3503
|
display: flex;
|
|
3461
3504
|
font-size: 12px;
|
|
3505
|
+
height: 30px;
|
|
3462
3506
|
}
|
|
3463
3507
|
|
|
3464
3508
|
.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 {
|
|
@@ -3475,6 +3519,7 @@
|
|
|
3475
3519
|
display: -ms-flexbox;
|
|
3476
3520
|
display: flex;
|
|
3477
3521
|
font-size: 12px;
|
|
3522
|
+
height: 30px;
|
|
3478
3523
|
}
|
|
3479
3524
|
|
|
3480
3525
|
.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 {
|
|
@@ -3552,7 +3597,8 @@
|
|
|
3552
3597
|
font-size: 14px;
|
|
3553
3598
|
padding: 6px 0;
|
|
3554
3599
|
padding-bottom: 0;
|
|
3555
|
-
padding:
|
|
3600
|
+
padding-bottom: 4px;
|
|
3601
|
+
padding-top: 16px;
|
|
3556
3602
|
}
|
|
3557
3603
|
|
|
3558
3604
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview ul li,
|
|
@@ -3563,6 +3609,7 @@
|
|
|
3563
3609
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons,
|
|
3564
3610
|
.e-bigger .e-pivot-calc-dialog-div .e-treeview .e-list-item div.e-icons {
|
|
3565
3611
|
font-size: 22px;
|
|
3612
|
+
padding-top: 12px;
|
|
3566
3613
|
}
|
|
3567
3614
|
|
|
3568
3615
|
.e-bigger.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons,
|
|
@@ -3590,12 +3637,12 @@
|
|
|
3590
3637
|
|
|
3591
3638
|
.e-bigger.e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div,
|
|
3592
3639
|
.e-bigger .e-pivot-calc-dialog-div.e-olap-calc-dialog-div .e-pivot-calc-outer-div .e-olap-field-tree-div {
|
|
3593
|
-
height:
|
|
3640
|
+
height: 497px;
|
|
3594
3641
|
}
|
|
3595
3642
|
|
|
3596
3643
|
.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,
|
|
3597
3644
|
.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 {
|
|
3598
|
-
height:
|
|
3645
|
+
height: 465px;
|
|
3599
3646
|
}
|
|
3600
3647
|
|
|
3601
3648
|
.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,
|
|
@@ -3608,6 +3655,7 @@
|
|
|
3608
3655
|
.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,
|
|
3609
3656
|
.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 {
|
|
3610
3657
|
font-size: 14px;
|
|
3658
|
+
height: 34px;
|
|
3611
3659
|
}
|
|
3612
3660
|
|
|
3613
3661
|
.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,
|
|
@@ -3910,7 +3958,7 @@
|
|
|
3910
3958
|
}
|
|
3911
3959
|
|
|
3912
3960
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content {
|
|
3913
|
-
padding: 0
|
|
3961
|
+
padding: 0 24px 10px;
|
|
3914
3962
|
}
|
|
3915
3963
|
|
|
3916
3964
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content .e-field-option-wrapper .e-field-name-text-wrapper {
|
|
@@ -4738,7 +4786,7 @@
|
|
|
4738
4786
|
|
|
4739
4787
|
.e-bigger .e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content,
|
|
4740
4788
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-value-field-div-content {
|
|
4741
|
-
padding: 0
|
|
4789
|
+
padding: 0 28px 10px;
|
|
4742
4790
|
}
|
|
4743
4791
|
|
|
4744
4792
|
.e-bigger .e-pivotfieldlist-wrapper .e-value-field-settings .e-field-name-text-wrapper,
|
|
@@ -4798,6 +4846,7 @@
|
|
|
4798
4846
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-base-item-option-wrapper .e-type-option-text,
|
|
4799
4847
|
.e-bigger.e-pivotfieldlist-wrapper .e-value-field-settings .e-base-item-option-wrapper .e-caption-input-text {
|
|
4800
4848
|
font-size: 14px;
|
|
4849
|
+
padding-bottom: 6px;
|
|
4801
4850
|
}
|
|
4802
4851
|
|
|
4803
4852
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -5132,6 +5181,7 @@
|
|
|
5132
5181
|
.e-pivotfieldlist-wrapper .e-dlg-header-content,
|
|
5133
5182
|
.e-pivotfieldlist-wrapper .e-footer-content {
|
|
5134
5183
|
border: 0;
|
|
5184
|
+
height: 46px;
|
|
5135
5185
|
}
|
|
5136
5186
|
|
|
5137
5187
|
.e-pivotfieldlist-wrapper .e-field-list-title {
|
|
@@ -5195,7 +5245,7 @@
|
|
|
5195
5245
|
height: 28px;
|
|
5196
5246
|
line-height: 1.125em;
|
|
5197
5247
|
overflow: hidden;
|
|
5198
|
-
padding: 6px 0 0
|
|
5248
|
+
padding: 6px 0 0 18px;
|
|
5199
5249
|
text-align: left;
|
|
5200
5250
|
text-overflow: ellipsis;
|
|
5201
5251
|
text-transform: uppercase;
|
|
@@ -5207,7 +5257,7 @@
|
|
|
5207
5257
|
color: #d1d5db;
|
|
5208
5258
|
display: -ms-flexbox;
|
|
5209
5259
|
display: flex;
|
|
5210
|
-
padding-right:
|
|
5260
|
+
padding-right: 18px;
|
|
5211
5261
|
}
|
|
5212
5262
|
|
|
5213
5263
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-field-table .e-field-header-wrapper .e-field-header {
|
|
@@ -5221,7 +5271,7 @@
|
|
|
5221
5271
|
color: #d1d5db;
|
|
5222
5272
|
cursor: pointer;
|
|
5223
5273
|
font-size: 14px;
|
|
5224
|
-
height: 20px;
|
|
5274
|
+
height: 20px !important;
|
|
5225
5275
|
padding: 6px 0 0 4px;
|
|
5226
5276
|
width: 20px;
|
|
5227
5277
|
}
|
|
@@ -5384,8 +5434,8 @@
|
|
|
5384
5434
|
display: -ms-flexbox;
|
|
5385
5435
|
display: flex;
|
|
5386
5436
|
height: 28px;
|
|
5387
|
-
padding: 2px
|
|
5388
|
-
padding: 5px
|
|
5437
|
+
padding: 2px 18px 5px;
|
|
5438
|
+
padding: 5px 18px;
|
|
5389
5439
|
border-radius: 3px 3px 0 0;
|
|
5390
5440
|
}
|
|
5391
5441
|
|
|
@@ -5615,6 +5665,7 @@
|
|
|
5615
5665
|
text-align: left;
|
|
5616
5666
|
text-overflow: ellipsis;
|
|
5617
5667
|
width: 70%;
|
|
5668
|
+
line-height: 1.2em;
|
|
5618
5669
|
}
|
|
5619
5670
|
|
|
5620
5671
|
.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,
|
|
@@ -5872,12 +5923,12 @@
|
|
|
5872
5923
|
|
|
5873
5924
|
.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header {
|
|
5874
5925
|
padding-left: 0;
|
|
5875
|
-
padding-right:
|
|
5926
|
+
padding-right: 18px;
|
|
5876
5927
|
text-align: right;
|
|
5877
5928
|
}
|
|
5878
5929
|
|
|
5879
5930
|
.e-pivotfieldlist-wrapper.e-rtl .e-field-table .e-field-header-wrapper {
|
|
5880
|
-
padding-left:
|
|
5931
|
+
padding-left: 18px;
|
|
5881
5932
|
padding-right: 0;
|
|
5882
5933
|
}
|
|
5883
5934
|
|
|
@@ -6006,6 +6057,8 @@
|
|
|
6006
6057
|
height: 48px;
|
|
6007
6058
|
padding-bottom: 9px;
|
|
6008
6059
|
padding-top: 9px;
|
|
6060
|
+
padding-left: 16px;
|
|
6061
|
+
padding-right: 16px;
|
|
6009
6062
|
}
|
|
6010
6063
|
|
|
6011
6064
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -6062,7 +6115,7 @@
|
|
|
6062
6115
|
display: inline-block;
|
|
6063
6116
|
height: 100%;
|
|
6064
6117
|
min-height: 250px;
|
|
6065
|
-
padding-top:
|
|
6118
|
+
padding-top: 0;
|
|
6066
6119
|
position: relative;
|
|
6067
6120
|
width: 100%;
|
|
6068
6121
|
}
|
|
@@ -6109,6 +6162,7 @@
|
|
|
6109
6162
|
padding: 9px 16px;
|
|
6110
6163
|
text-transform: none;
|
|
6111
6164
|
width: 100%;
|
|
6165
|
+
border-width: 0;
|
|
6112
6166
|
}
|
|
6113
6167
|
|
|
6114
6168
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -6171,6 +6225,7 @@
|
|
|
6171
6225
|
height: 24px;
|
|
6172
6226
|
padding-left: 10px;
|
|
6173
6227
|
width: 24px;
|
|
6228
|
+
font-size: 14px !important;
|
|
6174
6229
|
padding-left: 0;
|
|
6175
6230
|
margin-left: 8px;
|
|
6176
6231
|
}
|
|
@@ -6645,6 +6700,7 @@
|
|
|
6645
6700
|
.e-pivotfieldlist-container .e-dlg-header-content,
|
|
6646
6701
|
.e-pivotfieldlist-container .e-footer-content {
|
|
6647
6702
|
border: 0;
|
|
6703
|
+
height: 46px;
|
|
6648
6704
|
}
|
|
6649
6705
|
|
|
6650
6706
|
.e-pivotfieldlist-container .e-field-list-title {
|
|
@@ -6705,10 +6761,11 @@
|
|
|
6705
6761
|
font-weight: normal;
|
|
6706
6762
|
height: 28px;
|
|
6707
6763
|
overflow: hidden;
|
|
6708
|
-
padding: 6px 0 0
|
|
6764
|
+
padding: 6px 0 0 18px;
|
|
6709
6765
|
text-align: left;
|
|
6710
6766
|
text-overflow: ellipsis;
|
|
6711
6767
|
word-break: break-all;
|
|
6768
|
+
text-transform: uppercase;
|
|
6712
6769
|
}
|
|
6713
6770
|
|
|
6714
6771
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container {
|
|
@@ -6716,7 +6773,7 @@
|
|
|
6716
6773
|
color: #d1d5db;
|
|
6717
6774
|
display: -ms-flexbox;
|
|
6718
6775
|
display: flex;
|
|
6719
|
-
padding-right:
|
|
6776
|
+
padding-right: 18px;
|
|
6720
6777
|
}
|
|
6721
6778
|
|
|
6722
6779
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
@@ -6730,7 +6787,7 @@
|
|
|
6730
6787
|
color: #d1d5db;
|
|
6731
6788
|
cursor: pointer;
|
|
6732
6789
|
font-size: 14px;
|
|
6733
|
-
height: 20px;
|
|
6790
|
+
height: 20px !important;
|
|
6734
6791
|
padding: 6px 0 0 4px;
|
|
6735
6792
|
width: 20px;
|
|
6736
6793
|
}
|
|
@@ -6893,8 +6950,8 @@
|
|
|
6893
6950
|
display: -ms-flexbox;
|
|
6894
6951
|
display: flex;
|
|
6895
6952
|
height: 28px;
|
|
6896
|
-
padding: 2px
|
|
6897
|
-
padding: 5px
|
|
6953
|
+
padding: 2px 18px 5px;
|
|
6954
|
+
padding: 5px 18px;
|
|
6898
6955
|
}
|
|
6899
6956
|
|
|
6900
6957
|
.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,
|
|
@@ -7122,6 +7179,7 @@
|
|
|
7122
7179
|
text-align: left;
|
|
7123
7180
|
text-overflow: ellipsis;
|
|
7124
7181
|
width: 70%;
|
|
7182
|
+
line-height: 1.2em;
|
|
7125
7183
|
}
|
|
7126
7184
|
|
|
7127
7185
|
.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,
|
|
@@ -7379,12 +7437,12 @@
|
|
|
7379
7437
|
|
|
7380
7438
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header {
|
|
7381
7439
|
padding-left: 0;
|
|
7382
|
-
padding-right:
|
|
7440
|
+
padding-right: 18px;
|
|
7383
7441
|
text-align: right;
|
|
7384
7442
|
}
|
|
7385
7443
|
|
|
7386
7444
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
7387
|
-
padding-left:
|
|
7445
|
+
padding-left: 18px;
|
|
7388
7446
|
padding-right: 0;
|
|
7389
7447
|
}
|
|
7390
7448
|
|
|
@@ -7499,6 +7557,8 @@
|
|
|
7499
7557
|
height: 48px;
|
|
7500
7558
|
padding-bottom: 9px;
|
|
7501
7559
|
padding-top: 9px;
|
|
7560
|
+
padding-left: 16px;
|
|
7561
|
+
padding-right: 16px;
|
|
7502
7562
|
}
|
|
7503
7563
|
|
|
7504
7564
|
.e-pivotfieldlist-container.e-device .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -7555,7 +7615,7 @@
|
|
|
7555
7615
|
display: inline-block;
|
|
7556
7616
|
height: 100%;
|
|
7557
7617
|
min-height: 250px;
|
|
7558
|
-
padding-top:
|
|
7618
|
+
padding-top: 0;
|
|
7559
7619
|
position: relative;
|
|
7560
7620
|
width: 100%;
|
|
7561
7621
|
}
|
|
@@ -7664,6 +7724,7 @@
|
|
|
7664
7724
|
height: 24px;
|
|
7665
7725
|
padding-left: 10px;
|
|
7666
7726
|
width: 24px;
|
|
7727
|
+
font-size: 14px !important;
|
|
7667
7728
|
}
|
|
7668
7729
|
|
|
7669
7730
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button .e-sort:hover,
|
|
@@ -8061,7 +8122,7 @@
|
|
|
8061
8122
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-right-axis-fields,
|
|
8062
8123
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-left-axis-fields,
|
|
8063
8124
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-right-axis-fields {
|
|
8064
|
-
padding-left: 16px;
|
|
8125
|
+
padding-left: 16px !important;
|
|
8065
8126
|
}
|
|
8066
8127
|
|
|
8067
8128
|
.e-bigger .e-pivotfieldlist-wrapper .e-field-table .e-field-header,
|
|
@@ -8087,7 +8148,7 @@
|
|
|
8087
8148
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-ascend,
|
|
8088
8149
|
.e-bigger.e-pivotfieldlist-wrapper .e-field-table .e-field-header-wrapper .e-sort-descend {
|
|
8089
8150
|
font-size: 16px;
|
|
8090
|
-
height: 24px;
|
|
8151
|
+
height: 24px !important;
|
|
8091
8152
|
padding: 6px 0 0 4px;
|
|
8092
8153
|
width: 24px;
|
|
8093
8154
|
}
|
|
@@ -8219,7 +8280,7 @@
|
|
|
8219
8280
|
.e-bigger.e-pivotfieldlist-wrapper .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-wrapper .e-axis-header,
|
|
8220
8281
|
.e-bigger.e-pivotfieldlist-wrapper .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-wrapper .e-axis-header {
|
|
8221
8282
|
font-size: 14px;
|
|
8222
|
-
line-height: 1.
|
|
8283
|
+
line-height: 1.8em;
|
|
8223
8284
|
margin-top: 4px;
|
|
8224
8285
|
padding: 0 12px;
|
|
8225
8286
|
}
|
|
@@ -8307,6 +8368,7 @@
|
|
|
8307
8368
|
font-size: 22px;
|
|
8308
8369
|
height: 24px;
|
|
8309
8370
|
width: 24px;
|
|
8371
|
+
padding-left: 6px;
|
|
8310
8372
|
}
|
|
8311
8373
|
|
|
8312
8374
|
.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,
|
|
@@ -8545,7 +8607,7 @@
|
|
|
8545
8607
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-ascend,
|
|
8546
8608
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-field-header-container .e-sort-descend {
|
|
8547
8609
|
font-size: 16px;
|
|
8548
|
-
height: 24px;
|
|
8610
|
+
height: 24px !important;
|
|
8549
8611
|
padding: 6px 0 0 4px;
|
|
8550
8612
|
width: 24px;
|
|
8551
8613
|
}
|
|
@@ -8675,7 +8737,7 @@
|
|
|
8675
8737
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-container .e-axis-header,
|
|
8676
8738
|
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container .e-axis-header {
|
|
8677
8739
|
font-size: 14px;
|
|
8678
|
-
line-height: 1.
|
|
8740
|
+
line-height: 1.8em;
|
|
8679
8741
|
margin-top: 4px;
|
|
8680
8742
|
padding: 0 12px;
|
|
8681
8743
|
}
|