@syncfusion/ej2-vue-pivotview 19.3.57 → 19.4.38
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 +23 -41
- package/dist/ej2-vue-pivotview.umd.min.js +1 -1
- package/dist/es6/ej2-vue-pivotview.es2015.js +2 -2
- package/dist/es6/ej2-vue-pivotview.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-pivotview.es5.js +2 -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.js +1 -1
- package/src/pivotview/pivotview.component.js +1 -1
- package/styles/bootstrap-dark.css +115 -104
- package/styles/bootstrap.css +115 -104
- package/styles/bootstrap4.css +114 -81
- package/styles/bootstrap5-dark.css +220 -168
- package/styles/bootstrap5.css +215 -161
- package/styles/fabric-dark.css +117 -103
- package/styles/fabric.css +115 -102
- package/styles/highcontrast-light.css +116 -102
- package/styles/highcontrast.css +118 -104
- package/styles/material-dark.css +108 -97
- package/styles/material.css +108 -97
- package/styles/pivotfieldlist/bootstrap-dark.css +49 -58
- package/styles/pivotfieldlist/bootstrap.css +49 -58
- package/styles/pivotfieldlist/bootstrap4.css +44 -39
- package/styles/pivotfieldlist/bootstrap5-dark.css +115 -89
- package/styles/pivotfieldlist/bootstrap5.css +115 -89
- package/styles/pivotfieldlist/fabric-dark.css +49 -58
- package/styles/pivotfieldlist/fabric.css +49 -58
- package/styles/pivotfieldlist/highcontrast-light.css +49 -58
- package/styles/pivotfieldlist/highcontrast.css +49 -58
- package/styles/pivotfieldlist/material-dark.css +44 -53
- package/styles/pivotfieldlist/material.css +44 -53
- package/styles/pivotfieldlist/tailwind-dark.css +138 -81
- package/styles/pivotfieldlist/tailwind.css +140 -83
- package/styles/pivotview/bootstrap-dark.css +66 -46
- package/styles/pivotview/bootstrap.css +66 -46
- package/styles/pivotview/bootstrap4.css +70 -42
- package/styles/pivotview/bootstrap5-dark.css +99 -73
- package/styles/pivotview/bootstrap5.css +100 -72
- package/styles/pivotview/fabric-dark.css +68 -45
- package/styles/pivotview/fabric.css +66 -44
- package/styles/pivotview/highcontrast-light.css +67 -44
- package/styles/pivotview/highcontrast.css +69 -46
- package/styles/pivotview/material-dark.css +64 -44
- package/styles/pivotview/material.css +64 -44
- package/styles/pivotview/tailwind-dark.css +106 -58
- package/styles/pivotview/tailwind.css +107 -57
- package/styles/tailwind-dark.css +250 -145
- package/styles/tailwind.css +247 -140
|
@@ -186,17 +186,18 @@
|
|
|
186
186
|
.e-pivotview .e-group-field-settings {
|
|
187
187
|
max-height: 450px !important;
|
|
188
188
|
border-radius: 4px;
|
|
189
|
-
max-width: 400px;
|
|
190
|
-
width: auto;
|
|
189
|
+
max-width: 400px !important;
|
|
190
|
+
width: auto !important;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
.e-pivotview .e-pivot-format-dialog {
|
|
194
194
|
border-radius: 4px;
|
|
195
|
-
max-width: 400px;
|
|
196
|
-
width: auto;
|
|
195
|
+
max-width: 400px !important;
|
|
196
|
+
width: auto !important;
|
|
197
197
|
}
|
|
198
198
|
|
|
199
|
-
.e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
199
|
+
.e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
200
|
+
.e-pivotview .e-value-field-settings .e-field-name-text-container {
|
|
200
201
|
display: -ms-flexbox;
|
|
201
202
|
display: flex;
|
|
202
203
|
}
|
|
@@ -211,9 +212,9 @@
|
|
|
211
212
|
.e-pivotview .e-value-field-settings .e-field-name-content {
|
|
212
213
|
-ms-flex: auto;
|
|
213
214
|
flex: auto;
|
|
214
|
-
width: 100%;
|
|
215
215
|
font-size: 13px;
|
|
216
216
|
font-weight: 500;
|
|
217
|
+
width: 100%;
|
|
217
218
|
}
|
|
218
219
|
|
|
219
220
|
.e-pivotview .e-value-field-settings .e-caption-input-wrapper,
|
|
@@ -299,13 +300,6 @@
|
|
|
299
300
|
font-size: 16px;
|
|
300
301
|
}
|
|
301
302
|
|
|
302
|
-
.e-pivotview .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
303
|
-
background-color: #2a2a2a;
|
|
304
|
-
border-color: #585858;
|
|
305
|
-
color: #fff;
|
|
306
|
-
outline: none;
|
|
307
|
-
}
|
|
308
|
-
|
|
309
303
|
.e-pivotview .e-member-editor-dialog .e-member-prompt {
|
|
310
304
|
padding: 15px 20px;
|
|
311
305
|
text-align: center;
|
|
@@ -446,7 +440,6 @@
|
|
|
446
440
|
|
|
447
441
|
.e-pivotview .e-member-editor-dialog .e-clear-filter-button {
|
|
448
442
|
float: left;
|
|
449
|
-
margin-left: -10px;
|
|
450
443
|
margin: 0;
|
|
451
444
|
}
|
|
452
445
|
|
|
@@ -493,7 +486,6 @@
|
|
|
493
486
|
|
|
494
487
|
.e-pivotview .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
495
488
|
float: right;
|
|
496
|
-
margin-right: -10px;
|
|
497
489
|
margin: 0;
|
|
498
490
|
}
|
|
499
491
|
|
|
@@ -561,9 +553,9 @@
|
|
|
561
553
|
.e-pivotview .e-member-editor-dialog .e-footer-content,
|
|
562
554
|
.e-pivotview .e-pivot-format-dialog .e-footer-content,
|
|
563
555
|
.e-pivotview .e-group-field-settings .e-footer-content {
|
|
564
|
-
border-radius: 4px;
|
|
565
556
|
border-top-left-radius: 0;
|
|
566
557
|
border-top-right-radius: 0;
|
|
558
|
+
border-radius: 4px;
|
|
567
559
|
padding-bottom: 8px;
|
|
568
560
|
padding-top: 8px;
|
|
569
561
|
}
|
|
@@ -628,7 +620,7 @@
|
|
|
628
620
|
}
|
|
629
621
|
|
|
630
622
|
.e-pivotview .e-pivotchart-type-dialog {
|
|
631
|
-
max-width: 350px;
|
|
623
|
+
max-width: 350px !important;
|
|
632
624
|
max-height: 380px !important;
|
|
633
625
|
}
|
|
634
626
|
|
|
@@ -660,8 +652,8 @@
|
|
|
660
652
|
}
|
|
661
653
|
|
|
662
654
|
.e-pivotview .e-pivot-format-dialog {
|
|
663
|
-
max-height:
|
|
664
|
-
max-width: 350px;
|
|
655
|
+
max-height: 550px !important;
|
|
656
|
+
max-width: 350px !important;
|
|
665
657
|
}
|
|
666
658
|
|
|
667
659
|
.e-pivotview .e-pivot-format-dialog .e-pivot-format-dialog-outer {
|
|
@@ -685,6 +677,7 @@
|
|
|
685
677
|
}
|
|
686
678
|
|
|
687
679
|
.e-pivotview .e-pivot-toolbar {
|
|
680
|
+
background: #131313;
|
|
688
681
|
border-bottom: 0;
|
|
689
682
|
border-style: solid;
|
|
690
683
|
border-top: 1px solid rgba(255, 255, 255, 0.12);
|
|
@@ -692,6 +685,10 @@
|
|
|
692
685
|
border-right: 1px solid rgba(255, 255, 255, 0.12);
|
|
693
686
|
}
|
|
694
687
|
|
|
688
|
+
.e-pivotview .e-pivot-toolbar .e-toolbar-items {
|
|
689
|
+
background: #131313;
|
|
690
|
+
}
|
|
691
|
+
|
|
695
692
|
.e-pivotview .e-pivot-toolbar .e-toolbar-item .e-tbar-btn.e-btn .e-icons.e-btn-icon {
|
|
696
693
|
font-size: 16px;
|
|
697
694
|
}
|
|
@@ -757,7 +754,7 @@
|
|
|
757
754
|
}
|
|
758
755
|
|
|
759
756
|
.e-pivotview-report-dialog {
|
|
760
|
-
max-width: 350px;
|
|
757
|
+
max-width: 350px !important;
|
|
761
758
|
}
|
|
762
759
|
|
|
763
760
|
.e-mdx-query-content {
|
|
@@ -773,7 +770,7 @@
|
|
|
773
770
|
}
|
|
774
771
|
|
|
775
772
|
.e-pivotview-mdx-dialog {
|
|
776
|
-
max-width: 500px;
|
|
773
|
+
max-width: 500px !important;
|
|
777
774
|
}
|
|
778
775
|
|
|
779
776
|
.e-report-outer {
|
|
@@ -826,7 +823,6 @@
|
|
|
826
823
|
|
|
827
824
|
.e-drillthrough-dialog .e-drillthrough-body-header-value {
|
|
828
825
|
color: #f0f0f0;
|
|
829
|
-
margin-left: 10px;
|
|
830
826
|
margin-right: 20px;
|
|
831
827
|
}
|
|
832
828
|
|
|
@@ -996,7 +992,8 @@
|
|
|
996
992
|
padding-top: 0;
|
|
997
993
|
}
|
|
998
994
|
|
|
999
|
-
.e-bigger .e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
995
|
+
.e-bigger .e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
996
|
+
.e-bigger .e-pivotview .e-value-field-settings .e-field-name-text-container,
|
|
1000
997
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-text-wrapper,
|
|
1001
998
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-text-container {
|
|
1002
999
|
display: -ms-flexbox;
|
|
@@ -1008,7 +1005,6 @@
|
|
|
1008
1005
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-title,
|
|
1009
1006
|
.e-bigger.e-pivotview .e-value-field-settings .e-field-name-content {
|
|
1010
1007
|
font-size: 14px;
|
|
1011
|
-
font-size: 13px;
|
|
1012
1008
|
font-weight: 500;
|
|
1013
1009
|
}
|
|
1014
1010
|
|
|
@@ -1200,23 +1196,18 @@
|
|
|
1200
1196
|
|
|
1201
1197
|
.e-pivotview .e-sortfilterdiv {
|
|
1202
1198
|
float: right;
|
|
1203
|
-
margin: -23px
|
|
1199
|
+
margin: -23px 0 !important;
|
|
1204
1200
|
}
|
|
1205
1201
|
|
|
1206
1202
|
.e-pivotview .e-sortfilterdiv.e-value-sort-icon {
|
|
1207
1203
|
margin: 0px !important;
|
|
1208
|
-
padding
|
|
1209
|
-
padding-top: 10px !important;
|
|
1204
|
+
padding: 2px 4px !important;
|
|
1210
1205
|
}
|
|
1211
1206
|
|
|
1212
1207
|
.e-pivotview .e-pivotchart > svg, .e-pivotview .e-pivotchart-inner > svg {
|
|
1213
1208
|
border: 1px solid #414141;
|
|
1214
1209
|
}
|
|
1215
1210
|
|
|
1216
|
-
.e-pivotview .e-pivotchart.e-ltr {
|
|
1217
|
-
direction: ltr;
|
|
1218
|
-
}
|
|
1219
|
-
|
|
1220
1211
|
.e-pivotview .e-grid .e-columnheader.e-wrap .e-sortfilterdiv,
|
|
1221
1212
|
.e-pivotview .e-grid.e-wrap .e-columnheader .e-sortfilterdiv {
|
|
1222
1213
|
margin: -30px -15px !important;
|
|
@@ -1242,11 +1233,27 @@
|
|
|
1242
1233
|
color: #f0f0f0 !important;
|
|
1243
1234
|
}
|
|
1244
1235
|
|
|
1236
|
+
.e-pivotview .sf-grid.e-responsive .e-stackedheadercelldiv .e-stackedheadertext,
|
|
1237
|
+
.e-pivotview .sf-grid.e-responsive .e-headercelldiv .e-headertext {
|
|
1238
|
+
text-overflow: ellipsis;
|
|
1239
|
+
white-space: nowrap;
|
|
1240
|
+
}
|
|
1241
|
+
|
|
1245
1242
|
.e-pivotview .e-grid .e-headercelldiv,
|
|
1246
1243
|
.e-pivotview .e-grid .e-columnsheader {
|
|
1247
1244
|
padding-left: 8px !important;
|
|
1248
1245
|
}
|
|
1249
1246
|
|
|
1247
|
+
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1248
|
+
.e-pivotview .sf-grid .e-columnsheader {
|
|
1249
|
+
padding-right: 8px !important;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1252
|
+
.e-pivotview .sf-grid .e-headercelldiv,
|
|
1253
|
+
.e-pivotview .sf-grid .e-stackedheadercelldiv {
|
|
1254
|
+
line-height: normal;
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1250
1257
|
.e-pivotview .e-frozenheader > .e-table,
|
|
1251
1258
|
.e-pivotview .e-frozencontent > .e-table {
|
|
1252
1259
|
border-left-color: #414141 !important;
|
|
@@ -1255,14 +1262,14 @@
|
|
|
1255
1262
|
border-right-width: 1px;
|
|
1256
1263
|
}
|
|
1257
1264
|
|
|
1258
|
-
.e-pivotview .e-stackedheadercelldiv
|
|
1259
|
-
|
|
1260
|
-
margin-top: 5px;
|
|
1265
|
+
.e-pivotview .e-stackedheadercelldiv {
|
|
1266
|
+
display: block;
|
|
1261
1267
|
}
|
|
1262
1268
|
|
|
1263
|
-
.e-pivotview .e-stackedheadertext.e-cellvalue
|
|
1264
|
-
|
|
1269
|
+
.e-pivotview .e-stackedheadertext.e-cellvalue,
|
|
1270
|
+
.e-pivotview .e-stackedheadercelldiv.e-cellvalue {
|
|
1265
1271
|
padding-left: 8px !important;
|
|
1272
|
+
margin-top: 5px;
|
|
1266
1273
|
}
|
|
1267
1274
|
|
|
1268
1275
|
.e-pivotview .e-headercelldiv.e-cellvalue {
|
|
@@ -1274,6 +1281,7 @@
|
|
|
1274
1281
|
}
|
|
1275
1282
|
|
|
1276
1283
|
.e-pivotview .e-stackedheadercelldiv,
|
|
1284
|
+
.e-pivotview .e-stackedheadertext,
|
|
1277
1285
|
.e-pivotview .e-headertext,
|
|
1278
1286
|
.e-pivotview .e-rowsheader .e-cellvalue {
|
|
1279
1287
|
color: #f0f0f0;
|
|
@@ -1282,6 +1290,7 @@
|
|
|
1282
1290
|
}
|
|
1283
1291
|
|
|
1284
1292
|
.e-pivotview .e-stackedheadercelldiv .e-hyperlinkcell,
|
|
1293
|
+
.e-pivotview .e-stackedheadertext .e-hyperlinkcell,
|
|
1285
1294
|
.e-pivotview .e-headertext .e-hyperlinkcell,
|
|
1286
1295
|
.e-pivotview .e-rowsheader .e-cellvalue .e-hyperlinkcell {
|
|
1287
1296
|
cursor: pointer;
|
|
@@ -1382,7 +1391,6 @@
|
|
|
1382
1391
|
.e-pivotview .e-group-rows,
|
|
1383
1392
|
.e-pivotview .e-group-all-fields {
|
|
1384
1393
|
background: #131313;
|
|
1385
|
-
vertical-align: top;
|
|
1386
1394
|
display: inline-table;
|
|
1387
1395
|
-ms-flex: auto;
|
|
1388
1396
|
flex: auto;
|
|
@@ -1391,6 +1399,7 @@
|
|
|
1391
1399
|
overflow: hidden;
|
|
1392
1400
|
padding-left: 8px;
|
|
1393
1401
|
scroll-behavior: smooth;
|
|
1402
|
+
vertical-align: top;
|
|
1394
1403
|
}
|
|
1395
1404
|
|
|
1396
1405
|
.e-pivotview .e-group-values.e-drag-restrict,
|
|
@@ -1486,7 +1495,7 @@
|
|
|
1486
1495
|
.e-pivotview .e-group-rows .e-pivot-button:hover .e-pv-filtered,
|
|
1487
1496
|
.e-pivotview .e-group-rows .e-pivot-button:hover .e-remove,
|
|
1488
1497
|
.e-pivotview .e-group-rows .e-pivot-button:hover .e-edit {
|
|
1489
|
-
color: #f0f0f0
|
|
1498
|
+
color: #f0f0f0;
|
|
1490
1499
|
}
|
|
1491
1500
|
|
|
1492
1501
|
.e-pivotview .e-grouping-bar .e-pivot-button.e-btn-focused,
|
|
@@ -1507,7 +1516,7 @@
|
|
|
1507
1516
|
.e-pivotview .e-group-rows .e-pivot-button.e-btn-focused .e-pv-filtered,
|
|
1508
1517
|
.e-pivotview .e-group-rows .e-pivot-button.e-btn-focused .e-remove,
|
|
1509
1518
|
.e-pivotview .e-group-rows .e-pivot-button.e-btn-focused .e-edit {
|
|
1510
|
-
color: #f0f0f0
|
|
1519
|
+
color: #f0f0f0;
|
|
1511
1520
|
}
|
|
1512
1521
|
|
|
1513
1522
|
.e-pivotview .e-grouping-bar .e-pivot-button:focus, .e-pivotview .e-grouping-bar .e-pivot-button:active,
|
|
@@ -1540,7 +1549,7 @@
|
|
|
1540
1549
|
.e-pivotview .e-group-rows .e-pivot-button:active .e-pv-filtered,
|
|
1541
1550
|
.e-pivotview .e-group-rows .e-pivot-button:active .e-remove,
|
|
1542
1551
|
.e-pivotview .e-group-rows .e-pivot-button:active .e-edit {
|
|
1543
|
-
color: #f0f0f0
|
|
1552
|
+
color: #f0f0f0;
|
|
1544
1553
|
}
|
|
1545
1554
|
|
|
1546
1555
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-content,
|
|
@@ -1563,7 +1572,7 @@
|
|
|
1563
1572
|
|
|
1564
1573
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-draggable,
|
|
1565
1574
|
.e-pivotview .e-group-rows .e-pivot-button .e-draggable {
|
|
1566
|
-
height: initial;
|
|
1575
|
+
height: initial !important;
|
|
1567
1576
|
}
|
|
1568
1577
|
|
|
1569
1578
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-drag,
|
|
@@ -1583,7 +1592,7 @@
|
|
|
1583
1592
|
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered,
|
|
1584
1593
|
.e-pivotview .e-group-rows .e-pivot-button .e-remove,
|
|
1585
1594
|
.e-pivotview .e-group-rows .e-pivot-button .e-edit {
|
|
1586
|
-
color: #f0f0f0
|
|
1595
|
+
color: #f0f0f0;
|
|
1587
1596
|
cursor: pointer;
|
|
1588
1597
|
display: inline-block;
|
|
1589
1598
|
font-size: 10px;
|
|
@@ -1604,7 +1613,7 @@
|
|
|
1604
1613
|
.e-pivotview .e-group-rows .e-pivot-button .e-pv-filtered:hover,
|
|
1605
1614
|
.e-pivotview .e-group-rows .e-pivot-button .e-remove:hover,
|
|
1606
1615
|
.e-pivotview .e-group-rows .e-pivot-button .e-edit:hover {
|
|
1607
|
-
color: #f0f0f0
|
|
1616
|
+
color: #f0f0f0;
|
|
1608
1617
|
}
|
|
1609
1618
|
|
|
1610
1619
|
.e-pivotview .e-grouping-bar .e-pivot-button .e-sort.e-disable,
|
|
@@ -1819,7 +1828,7 @@
|
|
|
1819
1828
|
padding-bottom: 7px;
|
|
1820
1829
|
}
|
|
1821
1830
|
|
|
1822
|
-
.e-pivotview .e-icons:not(.e-frame) {
|
|
1831
|
+
.e-pivotview .e-icons:not(.e-frame):not(.e-btn-icon):not(.e-sort):not(.e-dropdown-icon):not(.e-pv-filter):not(.e-pv-filtered):not(.e-remove):not(.e-edit):not(.e-drag) {
|
|
1823
1832
|
height: auto;
|
|
1824
1833
|
width: auto;
|
|
1825
1834
|
}
|
|
@@ -1843,7 +1852,7 @@
|
|
|
1843
1852
|
float: left;
|
|
1844
1853
|
font-size: 12px !important;
|
|
1845
1854
|
margin-left: 0px;
|
|
1846
|
-
margin-top:
|
|
1855
|
+
margin-top: 6px;
|
|
1847
1856
|
}
|
|
1848
1857
|
|
|
1849
1858
|
.e-pivotview .e-expand::before {
|
|
@@ -2009,7 +2018,7 @@
|
|
|
2009
2018
|
}
|
|
2010
2019
|
|
|
2011
2020
|
.e-pivottooltip {
|
|
2012
|
-
border-radius:
|
|
2021
|
+
border-radius: 4px;
|
|
2013
2022
|
padding: 3px 2px;
|
|
2014
2023
|
}
|
|
2015
2024
|
|
|
@@ -2092,14 +2101,23 @@
|
|
|
2092
2101
|
}
|
|
2093
2102
|
|
|
2094
2103
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2104
|
+
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2095
2105
|
.e-bigger .e-pivotview .e-headertext,
|
|
2096
2106
|
.e-bigger .e-pivotview .e-rowsheader .e-cellvalue,
|
|
2097
2107
|
.e-bigger.e-pivotview .e-stackedheadercelldiv,
|
|
2108
|
+
.e-bigger.e-pivotview .e-stackedheadertext,
|
|
2098
2109
|
.e-bigger.e-pivotview .e-headertext,
|
|
2099
2110
|
.e-bigger.e-pivotview .e-rowsheader .e-cellvalue {
|
|
2100
2111
|
font-size: 13px !important;
|
|
2101
2112
|
}
|
|
2102
2113
|
|
|
2114
|
+
.e-bigger .e-pivotview th .e-expand,
|
|
2115
|
+
.e-bigger .e-pivotview th .e-collapse,
|
|
2116
|
+
.e-bigger.e-pivotview th .e-expand,
|
|
2117
|
+
.e-bigger.e-pivotview th .e-collapse {
|
|
2118
|
+
margin-top: 6px;
|
|
2119
|
+
}
|
|
2120
|
+
|
|
2103
2121
|
.e-bigger .e-pivotview .e-grouping-bar .e-all-fields-axis,
|
|
2104
2122
|
.e-bigger.e-pivotview .e-grouping-bar .e-all-fields-axis {
|
|
2105
2123
|
height: 36px !important;
|
|
@@ -2274,9 +2292,11 @@
|
|
|
2274
2292
|
}
|
|
2275
2293
|
|
|
2276
2294
|
.e-bigger .e-pivotview .e-stackedheadercelldiv,
|
|
2295
|
+
.e-bigger .e-pivotview .e-stackedheadertext,
|
|
2277
2296
|
.e-bigger .e-pivotview .e-headertext,
|
|
2278
2297
|
.e-bigger .e-pivotview .e-rowsheader .e-cellvalue,
|
|
2279
2298
|
.e-bigger.e-pivotview .e-stackedheadercelldiv,
|
|
2299
|
+
.e-bigger.e-pivotview .e-stackedheadertext,
|
|
2280
2300
|
.e-bigger.e-pivotview .e-headertext,
|
|
2281
2301
|
.e-bigger.e-pivotview .e-rowsheader .e-cellvalue {
|
|
2282
2302
|
color: #f0f0f0 !important;
|
|
@@ -2843,6 +2863,18 @@
|
|
|
2843
2863
|
width: 14px;
|
|
2844
2864
|
}
|
|
2845
2865
|
|
|
2866
|
+
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-btn,
|
|
2867
|
+
.e-pivot-formatting-dialog .e-colorpicker-container .e-split-btn-wrapper .e-split-btn {
|
|
2868
|
+
pointer-events: none;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
.e-pivot-formatting-dialog .e-colorpicker-wrapper .e-split-btn-wrapper .e-split-btn .e-selected-color,
|
|
2872
|
+
.e-pivot-formatting-dialog .e-colorpicker-container .e-split-btn-wrapper .e-split-btn .e-selected-color {
|
|
2873
|
+
background: none;
|
|
2874
|
+
margin: 0 2px;
|
|
2875
|
+
width: 14px;
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2846
2878
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
2847
2879
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
2848
2880
|
border: 1px solid #959595;
|
|
@@ -2999,6 +3031,7 @@
|
|
|
2999
3031
|
.e-pivot-calc-dialog-div .e-olap-member-title {
|
|
3000
3032
|
color: #f0f0f0;
|
|
3001
3033
|
font-size: 13px;
|
|
3034
|
+
margin-bottom: 4px;
|
|
3002
3035
|
margin-top: 15px;
|
|
3003
3036
|
overflow: hidden;
|
|
3004
3037
|
padding: 4px 0;
|
|
@@ -3027,6 +3060,10 @@
|
|
|
3027
3060
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
3028
3061
|
}
|
|
3029
3062
|
|
|
3063
|
+
.e-pivot-calc-dialog-div .e-treeview ul li:not(.e-active) .e-list-icon {
|
|
3064
|
+
color: #f0f0f0;
|
|
3065
|
+
}
|
|
3066
|
+
|
|
3030
3067
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
3031
3068
|
color: #f0f0f0;
|
|
3032
3069
|
margin: 0;
|
|
@@ -3063,6 +3100,10 @@
|
|
|
3063
3100
|
width: 24px;
|
|
3064
3101
|
}
|
|
3065
3102
|
|
|
3103
|
+
.e-pivot-calc-dialog-div .e-treeview .e-list-item:not(.e-active) span.e-icons {
|
|
3104
|
+
color: #f0f0f0;
|
|
3105
|
+
}
|
|
3106
|
+
|
|
3066
3107
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item span.e-icons {
|
|
3067
3108
|
color: #f0f0f0;
|
|
3068
3109
|
cursor: move;
|
|
@@ -3070,7 +3111,6 @@
|
|
|
3070
3111
|
font-size: 14px;
|
|
3071
3112
|
height: 24px;
|
|
3072
3113
|
margin-right: 4px;
|
|
3073
|
-
margin-top: 4px;
|
|
3074
3114
|
padding: 5px;
|
|
3075
3115
|
pointer-events: auto;
|
|
3076
3116
|
width: 24px;
|
|
@@ -3088,7 +3128,7 @@
|
|
|
3088
3128
|
|
|
3089
3129
|
.e-pivot-calc-dialog-div .e-contextmenu {
|
|
3090
3130
|
background-color: #1a1a1a;
|
|
3091
|
-
border-radius:
|
|
3131
|
+
border-radius: 5px;
|
|
3092
3132
|
}
|
|
3093
3133
|
|
|
3094
3134
|
.e-pivot-calc-dialog-div .e-contextmenu .e-menu-item {
|
|
@@ -3149,11 +3189,10 @@
|
|
|
3149
3189
|
.e-pivot-calc-dialog-div .e-pivot-formula {
|
|
3150
3190
|
background-color: #1a1a1a;
|
|
3151
3191
|
border: 1px solid #6e6e6e;
|
|
3152
|
-
border-radius:
|
|
3192
|
+
border-radius: 5px;
|
|
3153
3193
|
color: #f0f0f0;
|
|
3154
3194
|
font-size: 13px;
|
|
3155
3195
|
height: 70px;
|
|
3156
|
-
margin-top: 5px;
|
|
3157
3196
|
padding: 5px 10px;
|
|
3158
3197
|
resize: none;
|
|
3159
3198
|
width: 100%;
|
|
@@ -3175,9 +3214,8 @@
|
|
|
3175
3214
|
.e-pivot-calc-dialog-div .e-pivot-treeview-outer {
|
|
3176
3215
|
background-color: #1a1a1a;
|
|
3177
3216
|
border: 1px solid #6e6e6e;
|
|
3178
|
-
border-radius:
|
|
3217
|
+
border-radius: 5px;
|
|
3179
3218
|
height: 120px;
|
|
3180
|
-
margin-top: 5px;
|
|
3181
3219
|
overflow: auto;
|
|
3182
3220
|
}
|
|
3183
3221
|
|
|
@@ -3469,8 +3507,8 @@
|
|
|
3469
3507
|
|
|
3470
3508
|
.e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog,
|
|
3471
3509
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog {
|
|
3472
|
-
max-width: 400px;
|
|
3473
|
-
min-width: 320px;
|
|
3510
|
+
max-width: 400px !important;
|
|
3511
|
+
min-width: 320px !important;
|
|
3474
3512
|
}
|
|
3475
3513
|
|
|
3476
3514
|
.e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-member-prompt,
|
|
@@ -3590,13 +3628,6 @@
|
|
|
3590
3628
|
font-size: 16px;
|
|
3591
3629
|
}
|
|
3592
3630
|
|
|
3593
|
-
.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
3594
|
-
background-color: #2a2a2a;
|
|
3595
|
-
border-color: #585858;
|
|
3596
|
-
color: #fff;
|
|
3597
|
-
outline: none;
|
|
3598
|
-
}
|
|
3599
|
-
|
|
3600
3631
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-select-all-wrapper ul {
|
|
3601
3632
|
margin-left: -35px;
|
|
3602
3633
|
overflow: hidden;
|
|
@@ -3740,8 +3771,8 @@
|
|
|
3740
3771
|
}
|
|
3741
3772
|
|
|
3742
3773
|
.e-pivotfieldlist-wrapper .e-value-field-settings {
|
|
3743
|
-
max-width: 400px;
|
|
3744
|
-
min-width: 300px;
|
|
3774
|
+
max-width: 400px !important;
|
|
3775
|
+
min-width: 300px !important;
|
|
3745
3776
|
}
|
|
3746
3777
|
|
|
3747
3778
|
.e-pivotfieldlist-wrapper .e-value-field-settings .e-dlg-content {
|
|
@@ -3809,7 +3840,7 @@
|
|
|
3809
3840
|
.e-pivotfieldlist-wrapper .e-member-editor-dialog,
|
|
3810
3841
|
.e-pivotfieldlist-wrapper .e-value-field-settings {
|
|
3811
3842
|
border-radius: 5px;
|
|
3812
|
-
width: auto;
|
|
3843
|
+
width: auto !important;
|
|
3813
3844
|
}
|
|
3814
3845
|
|
|
3815
3846
|
.e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -3878,8 +3909,8 @@
|
|
|
3878
3909
|
|
|
3879
3910
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog,
|
|
3880
3911
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
3881
|
-
|
|
3882
|
-
|
|
3912
|
+
max-width: 400px !important;
|
|
3913
|
+
min-width: 320px !important;
|
|
3883
3914
|
}
|
|
3884
3915
|
|
|
3885
3916
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
@@ -4005,13 +4036,6 @@
|
|
|
4005
4036
|
font-size: 16px;
|
|
4006
4037
|
}
|
|
4007
4038
|
|
|
4008
|
-
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-sort .e-member-sort:focus.e-active {
|
|
4009
|
-
background-color: #2a2a2a;
|
|
4010
|
-
border-color: #585858;
|
|
4011
|
-
color: #fff;
|
|
4012
|
-
outline: none;
|
|
4013
|
-
}
|
|
4014
|
-
|
|
4015
4039
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-select-all-container ul {
|
|
4016
4040
|
margin-left: -35px;
|
|
4017
4041
|
overflow: hidden;
|
|
@@ -4026,7 +4050,7 @@
|
|
|
4026
4050
|
}
|
|
4027
4051
|
|
|
4028
4052
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
4029
|
-
border:
|
|
4053
|
+
border: 0;
|
|
4030
4054
|
}
|
|
4031
4055
|
|
|
4032
4056
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
@@ -4155,8 +4179,8 @@
|
|
|
4155
4179
|
}
|
|
4156
4180
|
|
|
4157
4181
|
.e-pivotfieldlist-container .e-value-field-settings {
|
|
4158
|
-
max-width: 400px;
|
|
4159
|
-
min-width: 300px;
|
|
4182
|
+
max-width: 400px !important;
|
|
4183
|
+
min-width: 300px !important;
|
|
4160
4184
|
}
|
|
4161
4185
|
|
|
4162
4186
|
.e-pivotfieldlist-container .e-value-field-settings .e-dlg-content {
|
|
@@ -4224,7 +4248,7 @@
|
|
|
4224
4248
|
.e-pivotfieldlist-container .e-member-editor-dialog,
|
|
4225
4249
|
.e-pivotfieldlist-container .e-value-field-settings {
|
|
4226
4250
|
border-radius: 5px;
|
|
4227
|
-
width: auto;
|
|
4251
|
+
width: auto !important;
|
|
4228
4252
|
}
|
|
4229
4253
|
|
|
4230
4254
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-header-content,
|
|
@@ -4298,12 +4322,14 @@
|
|
|
4298
4322
|
border-radius: 4px;
|
|
4299
4323
|
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.12);
|
|
4300
4324
|
height: 28px;
|
|
4325
|
+
line-height: 1em;
|
|
4301
4326
|
min-width: 100px;
|
|
4302
4327
|
padding: 5px 10px;
|
|
4303
4328
|
}
|
|
4304
4329
|
|
|
4305
4330
|
.e-field-list-tree.e-drag-item.e-treeview .e-text-content,
|
|
4306
4331
|
.e-pivot-calc.e-drag-item.e-treeview .e-text-content {
|
|
4332
|
+
height: 100%;
|
|
4307
4333
|
padding: 0;
|
|
4308
4334
|
text-align: center;
|
|
4309
4335
|
width: 100%;
|
|
@@ -4417,23 +4443,8 @@
|
|
|
4417
4443
|
}
|
|
4418
4444
|
|
|
4419
4445
|
.e-pivot-error-dialog {
|
|
4420
|
-
max-width: 400px;
|
|
4421
|
-
width: auto;
|
|
4422
|
-
}
|
|
4423
|
-
|
|
4424
|
-
.e-pivot-error-dialog .e-dlg-header-content,
|
|
4425
|
-
.e-pivot-error-dialog .e-footer-content {
|
|
4426
|
-
border: 0;
|
|
4427
|
-
}
|
|
4428
|
-
|
|
4429
|
-
.e-pivot-error-dialog .e-dlg-header {
|
|
4430
|
-
font-weight: normal;
|
|
4431
|
-
opacity: 0.87;
|
|
4432
|
-
}
|
|
4433
|
-
|
|
4434
|
-
.e-pivot-error-dialog .e-dlg-content {
|
|
4435
|
-
font-weight: normal;
|
|
4436
|
-
opacity: 1;
|
|
4446
|
+
max-width: 400px !important;
|
|
4447
|
+
width: auto !important;
|
|
4437
4448
|
}
|
|
4438
4449
|
|
|
4439
4450
|
.e-bigger .e-pivotfieldlist-wrapper .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-wrapper .e-member-editor-container-outer-div,
|
|
@@ -4517,7 +4528,7 @@
|
|
|
4517
4528
|
|
|
4518
4529
|
.e-bigger .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div,
|
|
4519
4530
|
.e-bigger.e-pivotfieldlist-wrapper .e-member-editor-dialog .e-excelfilter .e-member-editor-container-outer-div {
|
|
4520
|
-
height: 99px
|
|
4531
|
+
height: 99px;
|
|
4521
4532
|
}
|
|
4522
4533
|
|
|
4523
4534
|
.e-bigger .e-pivotfieldlist-wrapper .e-member-editor-dialog .e-label-filter,
|
|
@@ -4886,8 +4897,8 @@
|
|
|
4886
4897
|
.e-pivotfieldlist-wrapper {
|
|
4887
4898
|
font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif, "-apple-system", "BlinkMacSystemFont";
|
|
4888
4899
|
font-size: 12px;
|
|
4889
|
-
max-width: 700px;
|
|
4890
|
-
min-width: 300px;
|
|
4900
|
+
max-width: 700px !important;
|
|
4901
|
+
min-width: 300px !important;
|
|
4891
4902
|
}
|
|
4892
4903
|
|
|
4893
4904
|
.e-pivotfieldlist-wrapper .e-layout-footer {
|
|
@@ -4976,9 +4987,9 @@
|
|
|
4976
4987
|
}
|
|
4977
4988
|
|
|
4978
4989
|
.e-pivotfieldlist-wrapper .e-title-header .e-title-content {
|
|
4979
|
-
font-size: 18px;
|
|
4980
4990
|
-ms-flex: auto;
|
|
4981
4991
|
flex: auto;
|
|
4992
|
+
font-size: 18px;
|
|
4982
4993
|
}
|
|
4983
4994
|
|
|
4984
4995
|
.e-pivotfieldlist-wrapper .e-field-list-container {
|
|
@@ -5012,13 +5023,13 @@
|
|
|
5012
5023
|
font-size: 13px;
|
|
5013
5024
|
font-weight: normal;
|
|
5014
5025
|
height: 28px;
|
|
5026
|
+
line-height: 1.5em;
|
|
5015
5027
|
overflow: hidden;
|
|
5016
5028
|
padding: 7px 0 0 15px;
|
|
5017
5029
|
text-align: left;
|
|
5018
5030
|
text-overflow: ellipsis;
|
|
5019
|
-
word-break: break-all;
|
|
5020
|
-
line-height: 1.5em;
|
|
5021
5031
|
text-transform: none;
|
|
5032
|
+
word-break: break-all;
|
|
5022
5033
|
}
|
|
5023
5034
|
|
|
5024
5035
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-field-table .e-field-header-wrapper {
|
|
@@ -5245,8 +5256,8 @@
|
|
|
5245
5256
|
overflow: hidden;
|
|
5246
5257
|
padding: 0 8px;
|
|
5247
5258
|
text-overflow: ellipsis;
|
|
5248
|
-
width: 100%;
|
|
5249
5259
|
text-transform: none;
|
|
5260
|
+
width: 100%;
|
|
5250
5261
|
}
|
|
5251
5262
|
|
|
5252
5263
|
.e-pivotfieldlist-wrapper .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
@@ -6103,7 +6114,7 @@
|
|
|
6103
6114
|
.e-pivotfieldlist-wrapper.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
6104
6115
|
background-color: #1a1a1a;
|
|
6105
6116
|
border: 1px solid #6e6e6e;
|
|
6106
|
-
border-radius:
|
|
6117
|
+
border-radius: 5px;
|
|
6107
6118
|
color: #f0f0f0;
|
|
6108
6119
|
height: 200px;
|
|
6109
6120
|
margin-left: 20px;
|
|
@@ -6710,8 +6721,8 @@
|
|
|
6710
6721
|
overflow: hidden;
|
|
6711
6722
|
padding: 0 8px;
|
|
6712
6723
|
text-overflow: ellipsis;
|
|
6713
|
-
width: 100%;
|
|
6714
6724
|
text-transform: none;
|
|
6725
|
+
width: 100%;
|
|
6715
6726
|
}
|
|
6716
6727
|
|
|
6717
6728
|
.e-pivotfieldlist-container .e-field-list-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
@@ -7568,7 +7579,7 @@
|
|
|
7568
7579
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
7569
7580
|
background-color: #1a1a1a;
|
|
7570
7581
|
border: 1px solid #6e6e6e;
|
|
7571
|
-
border-radius:
|
|
7582
|
+
border-radius: 5px;
|
|
7572
7583
|
color: #f0f0f0;
|
|
7573
7584
|
height: 200px;
|
|
7574
7585
|
margin-left: 20px;
|