@syncfusion/ej2-angular-pivotview 20.2.39-ngcc → 20.2.39
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/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +8 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist-all.module.mjs +23 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.component.mjs +66 -0
- package/esm2020/src/pivotfieldlist/pivotfieldlist.module.mjs +25 -0
- package/esm2020/src/pivotview/pivotview-all.module.mjs +62 -0
- package/esm2020/src/pivotview/pivotview.component.mjs +150 -0
- package/esm2020/src/pivotview/pivotview.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-pivotview.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2015/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs +337 -0
- package/fesm2020/syncfusion-ej2-angular-pivotview.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.ts +2 -2
- package/src/pivotfieldlist/pivotfieldlist-all.module.d.ts +6 -0
- package/src/pivotfieldlist/pivotfieldlist.component.d.ts +3 -0
- package/src/pivotfieldlist/pivotfieldlist.module.d.ts +6 -0
- package/src/pivotview/pivotview-all.module.d.ts +6 -0
- package/src/pivotview/pivotview.component.d.ts +3 -0
- package/src/pivotview/pivotview.module.d.ts +6 -0
- package/styles/bootstrap-dark.css +212 -1
- package/styles/bootstrap.css +212 -1
- package/styles/bootstrap4.css +208 -2
- package/styles/bootstrap5-dark.css +214 -1
- package/styles/bootstrap5.css +214 -1
- package/styles/fabric-dark.css +212 -1
- package/styles/fabric.css +212 -1
- package/styles/fluent-dark.css +214 -1
- package/styles/fluent.css +214 -1
- package/styles/highcontrast-light.css +212 -1
- package/styles/highcontrast.css +212 -1
- package/styles/material-dark.css +212 -1
- package/styles/material.css +212 -1
- package/styles/pivotfieldlist/_all.scss +2 -0
- package/styles/pivotfieldlist/_bootstrap-dark-definition.scss +232 -0
- package/styles/pivotfieldlist/_bootstrap-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap4-definition.scss +186 -0
- package/styles/pivotfieldlist/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_bootstrap5-definition.scss +190 -0
- package/styles/pivotfieldlist/_fabric-dark-definition.scss +192 -0
- package/styles/pivotfieldlist/_fabric-definition.scss +186 -0
- package/styles/pivotfieldlist/_fluent-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_fluent-definition.scss +190 -0
- package/styles/pivotfieldlist/_fusionnew-definition.scss +189 -0
- package/styles/pivotfieldlist/_highcontrast-definition.scss +187 -0
- package/styles/pivotfieldlist/_highcontrast-light-definition.scss +187 -0
- package/styles/pivotfieldlist/_layout.scss +1844 -0
- package/styles/pivotfieldlist/_material-dark-definition.scss +187 -0
- package/styles/pivotfieldlist/_material-definition.scss +187 -0
- package/styles/pivotfieldlist/_material3-definition.scss +190 -0
- package/styles/pivotfieldlist/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotfieldlist/_tailwind-definition.scss +190 -0
- package/styles/pivotfieldlist/_theme.scss +1858 -0
- package/styles/pivotfieldlist/bootstrap-dark.css +130 -1
- package/styles/pivotfieldlist/bootstrap-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap.css +130 -1
- package/styles/pivotfieldlist/bootstrap.scss +4 -1
- package/styles/pivotfieldlist/bootstrap4.css +125 -1
- package/styles/pivotfieldlist/bootstrap4.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5-dark.css +134 -1
- package/styles/pivotfieldlist/bootstrap5-dark.scss +4 -1
- package/styles/pivotfieldlist/bootstrap5.css +134 -1
- package/styles/pivotfieldlist/bootstrap5.scss +4 -1
- package/styles/pivotfieldlist/fabric-dark.css +130 -1
- package/styles/pivotfieldlist/fabric-dark.scss +4 -1
- package/styles/pivotfieldlist/fabric.css +130 -1
- package/styles/pivotfieldlist/fabric.scss +4 -1
- package/styles/pivotfieldlist/fluent-dark.css +132 -1
- package/styles/pivotfieldlist/fluent-dark.scss +4 -1
- package/styles/pivotfieldlist/fluent.css +132 -1
- package/styles/pivotfieldlist/fluent.scss +4 -1
- package/styles/pivotfieldlist/highcontrast-light.css +130 -1
- package/styles/pivotfieldlist/highcontrast-light.scss +4 -1
- package/styles/pivotfieldlist/highcontrast.css +130 -1
- package/styles/pivotfieldlist/highcontrast.scss +4 -1
- package/styles/pivotfieldlist/icons/_bootstrap-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap4.scss +359 -0
- package/styles/pivotfieldlist/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_bootstrap5.scss +358 -0
- package/styles/pivotfieldlist/icons/_fabric-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_fabric.scss +359 -0
- package/styles/pivotfieldlist/icons/_fluent-dark.scss +1 -0
- package/styles/pivotfieldlist/icons/_fluent.scss +358 -0
- package/styles/pivotfieldlist/icons/_fusionnew.scss +353 -0
- package/styles/pivotfieldlist/icons/_highcontrast-light.scss +358 -0
- package/styles/pivotfieldlist/icons/_highcontrast.scss +358 -0
- package/styles/pivotfieldlist/icons/_material-dark.scss +359 -0
- package/styles/pivotfieldlist/icons/_material.scss +358 -0
- package/styles/pivotfieldlist/icons/_material3.scss +353 -0
- package/styles/pivotfieldlist/icons/_tailwind-dark.scss +357 -0
- package/styles/pivotfieldlist/icons/_tailwind.scss +357 -0
- package/styles/pivotfieldlist/material-dark.css +130 -1
- package/styles/pivotfieldlist/material-dark.scss +4 -1
- package/styles/pivotfieldlist/material.css +130 -1
- package/styles/pivotfieldlist/material.scss +4 -1
- package/styles/pivotfieldlist/tailwind-dark.css +132 -1
- package/styles/pivotfieldlist/tailwind-dark.scss +4 -1
- package/styles/pivotfieldlist/tailwind.css +132 -1
- package/styles/pivotfieldlist/tailwind.scss +4 -1
- package/styles/pivotview/_all.scss +2 -0
- package/styles/pivotview/_bootstrap-dark-definition.scss +131 -0
- package/styles/pivotview/_bootstrap-definition.scss +128 -0
- package/styles/pivotview/_bootstrap4-definition.scss +128 -0
- package/styles/pivotview/_bootstrap5-dark-definition.scss +1 -0
- package/styles/pivotview/_bootstrap5-definition.scss +133 -0
- package/styles/pivotview/_fabric-dark-definition.scss +130 -0
- package/styles/pivotview/_fabric-definition.scss +127 -0
- package/styles/pivotview/_fluent-dark-definition.scss +1 -0
- package/styles/pivotview/_fluent-definition.scss +133 -0
- package/styles/pivotview/_fusionnew-definition.scss +133 -0
- package/styles/pivotview/_highcontrast-definition.scss +126 -0
- package/styles/pivotview/_highcontrast-light-definition.scss +127 -0
- package/styles/pivotview/_layout.scss +1072 -0
- package/styles/pivotview/_material-dark-definition.scss +134 -0
- package/styles/pivotview/_material-definition.scss +130 -0
- package/styles/pivotview/_material3-definition.scss +133 -0
- package/styles/pivotview/_tailwind-dark-definition.scss +1 -0
- package/styles/pivotview/_tailwind-definition.scss +133 -0
- package/styles/pivotview/_theme.scss +1581 -0
- package/styles/pivotview/bootstrap-dark.css +82 -0
- package/styles/pivotview/bootstrap-dark.scss +5 -1
- package/styles/pivotview/bootstrap.css +82 -0
- package/styles/pivotview/bootstrap.scss +5 -1
- package/styles/pivotview/bootstrap4.css +83 -1
- package/styles/pivotview/bootstrap4.scss +5 -1
- package/styles/pivotview/bootstrap5-dark.css +80 -0
- package/styles/pivotview/bootstrap5-dark.scss +4 -1
- package/styles/pivotview/bootstrap5.css +80 -0
- package/styles/pivotview/bootstrap5.scss +5 -1
- package/styles/pivotview/fabric-dark.css +82 -0
- package/styles/pivotview/fabric-dark.scss +5 -1
- package/styles/pivotview/fabric.css +82 -0
- package/styles/pivotview/fabric.scss +5 -1
- package/styles/pivotview/fluent-dark.css +82 -0
- package/styles/pivotview/fluent-dark.scss +4 -1
- package/styles/pivotview/fluent.css +82 -0
- package/styles/pivotview/fluent.scss +5 -1
- package/styles/pivotview/highcontrast-light.css +82 -0
- package/styles/pivotview/highcontrast-light.scss +5 -1
- package/styles/pivotview/highcontrast.css +82 -0
- package/styles/pivotview/highcontrast.scss +5 -1
- package/styles/pivotview/icons/_bootstrap-dark.scss +184 -0
- package/styles/pivotview/icons/_bootstrap.scss +184 -0
- package/styles/pivotview/icons/_bootstrap4.scss +184 -0
- package/styles/pivotview/icons/_bootstrap5-dark.scss +1 -0
- package/styles/pivotview/icons/_bootstrap5.scss +183 -0
- package/styles/pivotview/icons/_fabric-dark.scss +184 -0
- package/styles/pivotview/icons/_fabric.scss +184 -0
- package/styles/pivotview/icons/_fluent-dark.scss +1 -0
- package/styles/pivotview/icons/_fluent.scss +183 -0
- package/styles/pivotview/icons/_fusionnew.scss +183 -0
- package/styles/pivotview/icons/_highcontrast-light.scss +183 -0
- package/styles/pivotview/icons/_highcontrast.scss +183 -0
- package/styles/pivotview/icons/_material-dark.scss +184 -0
- package/styles/pivotview/icons/_material.scss +184 -0
- package/styles/pivotview/icons/_material3.scss +183 -0
- package/styles/pivotview/icons/_tailwind-dark.scss +183 -0
- package/styles/pivotview/icons/_tailwind.scss +183 -0
- package/styles/pivotview/material-dark.css +82 -0
- package/styles/pivotview/material-dark.scss +5 -1
- package/styles/pivotview/material.css +82 -0
- package/styles/pivotview/material.scss +5 -1
- package/styles/pivotview/tailwind-dark.css +80 -0
- package/styles/pivotview/tailwind-dark.scss +4 -1
- package/styles/pivotview/tailwind.css +80 -0
- package/styles/pivotview/tailwind.scss +5 -1
- package/styles/tailwind-dark.css +212 -1
- package/styles/tailwind.css +212 -1
- package/syncfusion-ej2-angular-pivotview.d.ts +5 -0
- package/@syncfusion/ej2-angular-pivotview.es5.js +0 -425
- package/@syncfusion/ej2-angular-pivotview.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-pivotview.js +0 -395
- package/@syncfusion/ej2-angular-pivotview.js.map +0 -1
- package/CHANGELOG.md +0 -683
- package/dist/ej2-angular-pivotview.umd.js +0 -666
- package/dist/ej2-angular-pivotview.umd.js.map +0 -1
- package/dist/ej2-angular-pivotview.umd.min.js +0 -11
- package/dist/ej2-angular-pivotview.umd.min.js.map +0 -1
- package/ej2-angular-pivotview.d.ts +0 -6
- package/ej2-angular-pivotview.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -20
- package/schematics/generators/pivotview-default/index.d.ts +0 -3
- package/schematics/generators/pivotview-default/index.js +0 -8
- package/schematics/generators/pivotview-default/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-default/sample-details.js +0 -7
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-default/schema.d.ts +0 -3
- package/schematics/generators/pivotview-default/schema.js +0 -2
- package/schematics/generators/pivotview-default/schema.json +0 -125
- package/schematics/generators/pivotview-fieldlist/index.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/index.js +0 -8
- package/schematics/generators/pivotview-fieldlist/sample-details.d.ts +0 -5
- package/schematics/generators/pivotview-fieldlist/sample-details.js +0 -7
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -4
- package/schematics/generators/pivotview-fieldlist/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -4
- package/schematics/generators/pivotview-fieldlist/schema.d.ts +0 -3
- package/schematics/generators/pivotview-fieldlist/schema.js +0 -2
- package/schematics/generators/pivotview-fieldlist/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
|
@@ -25,6 +25,10 @@
|
|
|
25
25
|
content: "\e774";
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
.e-pivot-calc-dialog-div {
|
|
29
|
+
/* stylelint-disable */
|
|
30
|
+
/* stylelint-enable */
|
|
31
|
+
}
|
|
28
32
|
.e-pivot-calc-dialog-div .e-drag::before {
|
|
29
33
|
content: "\e726";
|
|
30
34
|
}
|
|
@@ -123,6 +127,11 @@
|
|
|
123
127
|
content: "\e7d8" !important;
|
|
124
128
|
}
|
|
125
129
|
|
|
130
|
+
.e-pivotfieldlist-wrapper,
|
|
131
|
+
.e-pivotfieldlist-container {
|
|
132
|
+
/* stylelint-disable */
|
|
133
|
+
/* stylelint-enable */
|
|
134
|
+
}
|
|
126
135
|
.e-pivotfieldlist-wrapper .e-field-list-back-icon::before,
|
|
127
136
|
.e-pivotfieldlist-container .e-field-list-back-icon::before {
|
|
128
137
|
content: "\e773";
|
|
@@ -317,8 +326,10 @@
|
|
|
317
326
|
}
|
|
318
327
|
|
|
319
328
|
.e-pivot-formatting-dialog {
|
|
329
|
+
/* stylelint-disable */
|
|
320
330
|
max-height: 480px !important;
|
|
321
331
|
width: 640px !important;
|
|
332
|
+
/* stylelint-enable */
|
|
322
333
|
}
|
|
323
334
|
.e-pivot-formatting-dialog .e-format-table tr:nth-child(odd) td {
|
|
324
335
|
padding-bottom: 4px;
|
|
@@ -393,7 +404,9 @@
|
|
|
393
404
|
border: 1px solid #e5e7eb;
|
|
394
405
|
border-radius: 4px;
|
|
395
406
|
height: 28px;
|
|
407
|
+
/* stylelint-disable */
|
|
396
408
|
margin: 0 !important;
|
|
409
|
+
/* stylelint-enable */
|
|
397
410
|
padding-left: 6px;
|
|
398
411
|
padding-top: 6px;
|
|
399
412
|
width: 80px;
|
|
@@ -414,7 +427,9 @@
|
|
|
414
427
|
.e-pivot-formatting-dialog .e-split-preview,
|
|
415
428
|
.e-pivot-formatting-dialog .e-tip-transparent {
|
|
416
429
|
border: 1px solid #e5e7eb;
|
|
430
|
+
/* stylelint-disable */
|
|
417
431
|
border-radius: 0 !important;
|
|
432
|
+
/* stylelint-enable */
|
|
418
433
|
height: 40%;
|
|
419
434
|
left: -3px;
|
|
420
435
|
position: absolute;
|
|
@@ -422,8 +437,10 @@
|
|
|
422
437
|
width: 150%;
|
|
423
438
|
}
|
|
424
439
|
.e-pivot-formatting-dialog.e-device {
|
|
440
|
+
/* stylelint-disable */
|
|
425
441
|
min-width: 320px !important;
|
|
426
442
|
width: 100% !important;
|
|
443
|
+
/* stylelint-enable */
|
|
427
444
|
}
|
|
428
445
|
.e-pivot-formatting-dialog.e-device .e-format-inner-div {
|
|
429
446
|
width: 100% !important;
|
|
@@ -475,7 +492,11 @@
|
|
|
475
492
|
|
|
476
493
|
.e-bigger.e-pivot-formatting-dialog,
|
|
477
494
|
.e-bigger .e-pivot-formatting-dialog {
|
|
495
|
+
/* stylelint-disable */
|
|
478
496
|
width: 730px !important;
|
|
497
|
+
/* stylelint-enable */
|
|
498
|
+
/* stylelint-disable */
|
|
499
|
+
/* stylelint-enable */
|
|
479
500
|
}
|
|
480
501
|
.e-bigger.e-pivot-formatting-dialog .e-format-label,
|
|
481
502
|
.e-bigger.e-pivot-formatting-dialog .e-format-value-label,
|
|
@@ -514,8 +535,10 @@
|
|
|
514
535
|
}
|
|
515
536
|
.e-bigger.e-pivot-formatting-dialog.e-device,
|
|
516
537
|
.e-bigger .e-pivot-formatting-dialog.e-device {
|
|
538
|
+
/* stylelint-disable */
|
|
517
539
|
min-width: 320px !important;
|
|
518
540
|
width: 100% !important;
|
|
541
|
+
/* stylelint-enable */
|
|
519
542
|
}
|
|
520
543
|
.e-bigger.e-pivot-formatting-dialog.e-device .e-format-color-picker,
|
|
521
544
|
.e-bigger .e-pivot-formatting-dialog.e-device .e-format-color-picker {
|
|
@@ -535,8 +558,14 @@
|
|
|
535
558
|
}
|
|
536
559
|
|
|
537
560
|
.e-pivot-calc-dialog-div {
|
|
561
|
+
/* stylelint-disable */
|
|
538
562
|
max-height: 550px !important;
|
|
563
|
+
/* stylelint-enable */
|
|
539
564
|
min-width: 290px;
|
|
565
|
+
/* stylelint-disable */
|
|
566
|
+
/* stylelint-enable */
|
|
567
|
+
/* stylelint-disable */
|
|
568
|
+
/* stylelint-enable */
|
|
540
569
|
}
|
|
541
570
|
.e-pivot-calc-dialog-div .e-dlg-header-content,
|
|
542
571
|
.e-pivot-calc-dialog-div .e-footer-content {
|
|
@@ -582,9 +611,11 @@
|
|
|
582
611
|
}
|
|
583
612
|
.e-pivot-calc-dialog-div .e-treeview ul li .e-list-icon {
|
|
584
613
|
color: #6b7280;
|
|
614
|
+
/* stylelint-disable */
|
|
585
615
|
float: right !important;
|
|
586
616
|
margin: 0;
|
|
587
617
|
margin-right: 12px !important;
|
|
618
|
+
/* stylelint-enable */
|
|
588
619
|
}
|
|
589
620
|
.e-pivot-calc-dialog-div .e-treeview ul .e-fullrow {
|
|
590
621
|
cursor: default;
|
|
@@ -635,12 +666,14 @@
|
|
|
635
666
|
margin-right: 4px;
|
|
636
667
|
pointer-events: auto;
|
|
637
668
|
width: 24px;
|
|
669
|
+
/* stylelint-disable */
|
|
638
670
|
height: 20px;
|
|
639
671
|
margin-top: 0;
|
|
640
672
|
padding: 0 5px;
|
|
641
673
|
position: relative;
|
|
642
674
|
bottom: 1px;
|
|
643
675
|
width: 20px;
|
|
676
|
+
/* stylelint-enable */
|
|
644
677
|
}
|
|
645
678
|
.e-pivot-calc-dialog-div .e-treeview .e-list-item.e-active span.e-icons {
|
|
646
679
|
color: #6b7280;
|
|
@@ -886,8 +919,11 @@
|
|
|
886
919
|
|
|
887
920
|
.e-bigger.e-pivot-calc-dialog-div,
|
|
888
921
|
.e-bigger .e-pivot-calc-dialog-div {
|
|
922
|
+
/* stylelint-disable */
|
|
889
923
|
max-height: 600px !important;
|
|
890
924
|
min-width: 401px !important;
|
|
925
|
+
/* stylelint-enable */
|
|
926
|
+
/* stylelint-disable */
|
|
891
927
|
}
|
|
892
928
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-all-field-title,
|
|
893
929
|
.e-bigger.e-pivot-calc-dialog-div .e-pivot-field-name-title,
|
|
@@ -973,6 +1009,9 @@
|
|
|
973
1009
|
.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
974
1010
|
max-width: 400px !important;
|
|
975
1011
|
min-width: 320px !important;
|
|
1012
|
+
/* stylelint-enable */
|
|
1013
|
+
/* stylelint-disable */
|
|
1014
|
+
/* stylelint-enable */
|
|
976
1015
|
}
|
|
977
1016
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-prompt,
|
|
978
1017
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-prompt {
|
|
@@ -1010,8 +1049,10 @@
|
|
|
1010
1049
|
}
|
|
1011
1050
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul,
|
|
1012
1051
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul {
|
|
1052
|
+
/* stylelint-disable */
|
|
1013
1053
|
margin-left: -22px;
|
|
1014
1054
|
overflow: auto !important;
|
|
1055
|
+
/* stylelint-enable */
|
|
1015
1056
|
}
|
|
1016
1057
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-member-editor-container ul li .e-list-text,
|
|
1017
1058
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-member-editor-container ul li .e-list-text {
|
|
@@ -1030,6 +1071,10 @@
|
|
|
1030
1071
|
margin-left: 0;
|
|
1031
1072
|
margin-right: -22px;
|
|
1032
1073
|
}
|
|
1074
|
+
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog,
|
|
1075
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1076
|
+
/* stylelint-disable */
|
|
1077
|
+
}
|
|
1033
1078
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul,
|
|
1034
1079
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-member-editor-container ul {
|
|
1035
1080
|
margin-left: 0;
|
|
@@ -1091,6 +1136,7 @@
|
|
|
1091
1136
|
}
|
|
1092
1137
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container {
|
|
1093
1138
|
border: 0;
|
|
1139
|
+
/* stylelint-enable */
|
|
1094
1140
|
}
|
|
1095
1141
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
1096
1142
|
margin: 0 0 0 6px;
|
|
@@ -1120,6 +1166,8 @@
|
|
|
1120
1166
|
overflow: auto;
|
|
1121
1167
|
padding: 20px;
|
|
1122
1168
|
padding-bottom: 0;
|
|
1169
|
+
/* stylelint-disable */
|
|
1170
|
+
/* stylelint-enable */
|
|
1123
1171
|
padding-top: 0;
|
|
1124
1172
|
}
|
|
1125
1173
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-label-filter .e-filter-text-div,
|
|
@@ -1160,6 +1208,9 @@
|
|
|
1160
1208
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-footer-content .e-clear-filter-button {
|
|
1161
1209
|
float: right;
|
|
1162
1210
|
}
|
|
1211
|
+
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog {
|
|
1212
|
+
/* stylelint-disable */
|
|
1213
|
+
}
|
|
1163
1214
|
.e-pivotfieldlist-container .e-member-editor-dialog.e-olap-editor-dialog .e-member-editor-outer-container .e-select-all-container ul {
|
|
1164
1215
|
margin-left: 0;
|
|
1165
1216
|
}
|
|
@@ -1299,6 +1350,7 @@
|
|
|
1299
1350
|
overflow: hidden;
|
|
1300
1351
|
padding: 0 !important;
|
|
1301
1352
|
padding: 12px 0 0 0 !important;
|
|
1353
|
+
/* stylelint-enable */
|
|
1302
1354
|
}
|
|
1303
1355
|
.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
1304
1356
|
.e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-empty-field::-webkit-input-placeholder,
|
|
@@ -1370,6 +1422,11 @@
|
|
|
1370
1422
|
.e-pivot-calc.e-drag-item.e-treeview.e-rtl .e-text-content {
|
|
1371
1423
|
padding-right: 0;
|
|
1372
1424
|
}
|
|
1425
|
+
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict,
|
|
1426
|
+
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict {
|
|
1427
|
+
/* stylelint-disable */
|
|
1428
|
+
/* stylelint-enable */
|
|
1429
|
+
}
|
|
1373
1430
|
.e-field-list-tree.e-drag-item.e-treeview.e-drag-restrict .e-text-content,
|
|
1374
1431
|
.e-pivot-calc.e-drag-item.e-treeview.e-drag-restrict .e-text-content {
|
|
1375
1432
|
padding-left: 24px;
|
|
@@ -1419,6 +1476,7 @@
|
|
|
1419
1476
|
padding: 4px;
|
|
1420
1477
|
}
|
|
1421
1478
|
|
|
1479
|
+
/* stylelint-disable */
|
|
1422
1480
|
.e-button-drag-clone {
|
|
1423
1481
|
background-color: #e5e7eb !important;
|
|
1424
1482
|
border: 1px solid #e5e7eb;
|
|
@@ -1458,6 +1516,12 @@
|
|
|
1458
1516
|
width: auto !important;
|
|
1459
1517
|
}
|
|
1460
1518
|
|
|
1519
|
+
/* stylelint-enable */
|
|
1520
|
+
.e-bigger .e-pivotfieldlist-container,
|
|
1521
|
+
.e-bigger.e-pivotfieldlist-container {
|
|
1522
|
+
/* stylelint-disable */
|
|
1523
|
+
/* stylelint-enable */
|
|
1524
|
+
}
|
|
1461
1525
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1462
1526
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
1463
1527
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-member-editor-outer-container .e-member-editor-container-outer-div,
|
|
@@ -1522,6 +1586,10 @@
|
|
|
1522
1586
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog.e-rtl .e-member-editor-outer-container ul li .e-kpiValue-icon {
|
|
1523
1587
|
margin-left: 10px;
|
|
1524
1588
|
}
|
|
1589
|
+
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog,
|
|
1590
|
+
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog {
|
|
1591
|
+
/* stylelint-disable */
|
|
1592
|
+
}
|
|
1525
1593
|
.e-bigger .e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text,
|
|
1526
1594
|
.e-bigger.e-pivotfieldlist-container .e-member-editor-dialog .e-filter-tab-container .e-tab-header .e-toolbar-item .e-icon-left + .e-tab-text {
|
|
1527
1595
|
margin: 0 0 0 6px;
|
|
@@ -1674,6 +1742,7 @@
|
|
|
1674
1742
|
background-color: #e5e7eb;
|
|
1675
1743
|
}
|
|
1676
1744
|
|
|
1745
|
+
/* stylelint-disable */
|
|
1677
1746
|
*.e-rtl .e-select-table {
|
|
1678
1747
|
padding: 8px 5px;
|
|
1679
1748
|
}
|
|
@@ -1712,6 +1781,8 @@
|
|
|
1712
1781
|
font-size: 14px;
|
|
1713
1782
|
max-width: 700px;
|
|
1714
1783
|
min-width: 300px;
|
|
1784
|
+
/* stylelint-enable */
|
|
1785
|
+
/* stylelint-enable */
|
|
1715
1786
|
}
|
|
1716
1787
|
.e-pivotfieldlist-container .e-layout-footer {
|
|
1717
1788
|
display: -ms-flexbox;
|
|
@@ -1834,6 +1905,8 @@
|
|
|
1834
1905
|
display: -ms-flexbox;
|
|
1835
1906
|
display: flex;
|
|
1836
1907
|
padding-right: 18px;
|
|
1908
|
+
/* stylelint-disable */
|
|
1909
|
+
/* stylelint-enable */
|
|
1837
1910
|
}
|
|
1838
1911
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-header-container .e-field-header {
|
|
1839
1912
|
-ms-flex: auto;
|
|
@@ -1845,7 +1918,9 @@
|
|
|
1845
1918
|
color: #374151;
|
|
1846
1919
|
cursor: pointer;
|
|
1847
1920
|
font-size: 14px;
|
|
1921
|
+
/* stylelint-disable */
|
|
1848
1922
|
height: 20px !important;
|
|
1923
|
+
/* stylelint-enable */
|
|
1849
1924
|
padding: 6px 0 0 4px;
|
|
1850
1925
|
width: 20px;
|
|
1851
1926
|
}
|
|
@@ -1878,9 +1953,13 @@
|
|
|
1878
1953
|
}
|
|
1879
1954
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul {
|
|
1880
1955
|
overflow: hidden;
|
|
1956
|
+
/* stylelint-disable */
|
|
1957
|
+
/* stylelint-enable */
|
|
1881
1958
|
}
|
|
1882
1959
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li {
|
|
1883
1960
|
margin-left: -30px;
|
|
1961
|
+
/* stylelint-disable */
|
|
1962
|
+
/* stylelint-enable */
|
|
1884
1963
|
}
|
|
1885
1964
|
.e-pivotfieldlist-container .e-field-list-container .e-field-table .e-field-list ul li .e-fullrow {
|
|
1886
1965
|
cursor: default;
|
|
@@ -2402,6 +2481,8 @@
|
|
|
2402
2481
|
}
|
|
2403
2482
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container {
|
|
2404
2483
|
height: 369px;
|
|
2484
|
+
/* stylelint-disable */
|
|
2485
|
+
/* stylelint-enable */
|
|
2405
2486
|
}
|
|
2406
2487
|
.e-pivotfieldlist-container.e-search-mode.e-popup .e-field-list-container .e-field-table {
|
|
2407
2488
|
height: 389px !important;
|
|
@@ -2425,6 +2506,7 @@
|
|
|
2425
2506
|
display: -ms-flexbox;
|
|
2426
2507
|
display: flex;
|
|
2427
2508
|
padding: 10px 18px;
|
|
2509
|
+
/* stylelint-disable */
|
|
2428
2510
|
}
|
|
2429
2511
|
.e-pivotfieldlist-container.e-search-mode .e-field-table .e-field-list-search .e-field-list-search-input .e-field-list-search-icon {
|
|
2430
2512
|
float: right;
|
|
@@ -2461,6 +2543,8 @@
|
|
|
2461
2543
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li {
|
|
2462
2544
|
margin-left: 0;
|
|
2463
2545
|
margin-right: -30px;
|
|
2546
|
+
/* stylelint-disable */
|
|
2547
|
+
/* stylelint-enable */
|
|
2464
2548
|
}
|
|
2465
2549
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list ul li .e-list-text {
|
|
2466
2550
|
font-family: Inter;
|
|
@@ -2491,6 +2575,8 @@
|
|
|
2491
2575
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
2492
2576
|
padding-left: 18px;
|
|
2493
2577
|
padding-right: 0;
|
|
2578
|
+
/* stylelint-disable */
|
|
2579
|
+
/* stylelint-enable */
|
|
2494
2580
|
}
|
|
2495
2581
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
2496
2582
|
.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -2572,8 +2658,10 @@
|
|
|
2572
2658
|
}
|
|
2573
2659
|
.e-pivotfieldlist-container.e-device {
|
|
2574
2660
|
height: 100%;
|
|
2661
|
+
/* stylelint-disable */
|
|
2575
2662
|
max-height: 100% !important;
|
|
2576
2663
|
max-width: 100% !important;
|
|
2664
|
+
/* stylelint-enable */
|
|
2577
2665
|
min-height: 500px;
|
|
2578
2666
|
width: 100%;
|
|
2579
2667
|
}
|
|
@@ -2680,6 +2768,8 @@
|
|
|
2680
2768
|
padding: 9px 16px;
|
|
2681
2769
|
text-transform: none;
|
|
2682
2770
|
width: 100%;
|
|
2771
|
+
/* stylelint-disable */
|
|
2772
|
+
/* stylelint-enable */
|
|
2683
2773
|
}
|
|
2684
2774
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-filters .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
2685
2775
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-field-list-rows .e-pvt-btn-div .e-pivot-button.e-list-selected,
|
|
@@ -2871,6 +2961,10 @@
|
|
|
2871
2961
|
vertical-align: middle;
|
|
2872
2962
|
width: 70%;
|
|
2873
2963
|
}
|
|
2964
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div {
|
|
2965
|
+
/* stylelint-disable */
|
|
2966
|
+
/* stylelint-enable */
|
|
2967
|
+
}
|
|
2874
2968
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-pivot-formula {
|
|
2875
2969
|
background-color: #fff;
|
|
2876
2970
|
border: 1px solid #e5e7eb;
|
|
@@ -2918,6 +3012,10 @@
|
|
|
2918
3012
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion .e-icons.e-frame {
|
|
2919
3013
|
margin-right: 12px;
|
|
2920
3014
|
}
|
|
3015
|
+
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl {
|
|
3016
|
+
/* stylelint-disable */
|
|
3017
|
+
/* stylelint-enable */
|
|
3018
|
+
}
|
|
2921
3019
|
.e-pivotfieldlist-container.e-device .e-adaptive-container .e-content .e-pivot-calc-outer-div .e-accordion.e-rtl .e-acrdn-header-icon {
|
|
2922
3020
|
left: 16px;
|
|
2923
3021
|
right: auto;
|
|
@@ -3067,6 +3165,10 @@
|
|
|
3067
3165
|
.e-pivotfieldlist-container.e-device.e-static .e-field-list-values .e-axis-content {
|
|
3068
3166
|
max-height: 600px;
|
|
3069
3167
|
}
|
|
3168
|
+
.e-pivotfieldlist-container.e-device.e-rtl {
|
|
3169
|
+
/* stylelint-disable */
|
|
3170
|
+
/* stylelint-enable */
|
|
3171
|
+
}
|
|
3070
3172
|
.e-pivotfieldlist-container.e-device.e-rtl .e-field-list-back-icon {
|
|
3071
3173
|
margin-left: 12px;
|
|
3072
3174
|
margin-right: 0;
|
|
@@ -3087,6 +3189,11 @@
|
|
|
3087
3189
|
margin-left: 20px;
|
|
3088
3190
|
}
|
|
3089
3191
|
|
|
3192
|
+
/* stylelint-disable */
|
|
3193
|
+
.e-bigger .e-pivotfieldlist-container .e-field-table,
|
|
3194
|
+
.e-bigger.e-pivotfieldlist-container .e-field-table {
|
|
3195
|
+
/* stylelint-enable */
|
|
3196
|
+
}
|
|
3090
3197
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
3091
3198
|
.e-bigger .e-pivotfieldlist-container .e-field-table .e-right-axis-fields,
|
|
3092
3199
|
.e-bigger.e-pivotfieldlist-container .e-field-table .e-left-axis-fields,
|
|
@@ -3238,6 +3345,16 @@
|
|
|
3238
3345
|
margin-top: 4px;
|
|
3239
3346
|
padding: 0 12px;
|
|
3240
3347
|
}
|
|
3348
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3349
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3350
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3351
|
+
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content,
|
|
3352
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content,
|
|
3353
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content,
|
|
3354
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content,
|
|
3355
|
+
.e-bigger.e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-content {
|
|
3356
|
+
/* stylelint-disable */
|
|
3357
|
+
}
|
|
3241
3358
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
3242
3359
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
3243
3360
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-right-axis-fields .e-field-list-columns .e-axis-content .e-pvt-btn-div .e-pivot-button,
|
|
@@ -3249,6 +3366,7 @@
|
|
|
3249
3366
|
font-size: 14px;
|
|
3250
3367
|
height: 36px !important;
|
|
3251
3368
|
padding: 9px 16px !important;
|
|
3369
|
+
/* stylelint-enable */
|
|
3252
3370
|
}
|
|
3253
3371
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-filters .e-axis-content .e-pvt-btn-div .e-pivot-button .e-content,
|
|
3254
3372
|
.e-bigger .e-pivotfieldlist-container .e-axis-table .e-left-axis-fields .e-field-list-rows .e-axis-content .e-pvt-btn-div .e-pivot-button .e-content,
|
|
@@ -3373,6 +3491,10 @@
|
|
|
3373
3491
|
.e-bigger.e-pivotfieldlist-container.e-static .e-field-list-container .e-axis-table .e-right-axis-fields .e-field-list-values .e-axis-container .e-axis-icon-container {
|
|
3374
3492
|
padding-top: 7px;
|
|
3375
3493
|
}
|
|
3494
|
+
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table,
|
|
3495
|
+
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table {
|
|
3496
|
+
/* stylelint-disable */
|
|
3497
|
+
}
|
|
3376
3498
|
.e-bigger .e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields,
|
|
3377
3499
|
.e-bigger.e-pivotfieldlist-container.e-static.e-rtl .e-axis-table .e-left-axis-fields {
|
|
3378
3500
|
padding-left: 16px;
|
|
@@ -3385,6 +3507,7 @@
|
|
|
3385
3507
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list {
|
|
3386
3508
|
padding-left: 0;
|
|
3387
3509
|
padding-right: 5px;
|
|
3510
|
+
/* stylelint-enable */
|
|
3388
3511
|
}
|
|
3389
3512
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag,
|
|
3390
3513
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-list .e-drag {
|
|
@@ -3423,6 +3546,8 @@
|
|
|
3423
3546
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container,
|
|
3424
3547
|
.e-bigger.e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container {
|
|
3425
3548
|
padding-left: 16px;
|
|
3549
|
+
/* stylelint-disable */
|
|
3550
|
+
/* stylelint-enable */
|
|
3426
3551
|
}
|
|
3427
3552
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-none,
|
|
3428
3553
|
.e-bigger .e-pivotfieldlist-container.e-rtl .e-field-table .e-field-header-container .e-sort-ascend,
|
|
@@ -3490,6 +3615,10 @@
|
|
|
3490
3615
|
padding-left: 0;
|
|
3491
3616
|
padding-right: 4px;
|
|
3492
3617
|
}
|
|
3618
|
+
.e-bigger .e-pivotfieldlist-container.e-search-mode,
|
|
3619
|
+
.e-bigger.e-pivotfieldlist-container.e-search-mode {
|
|
3620
|
+
/* stylelint-disable */
|
|
3621
|
+
}
|
|
3493
3622
|
.e-bigger .e-pivotfieldlist-container.e-search-mode.e-static,
|
|
3494
3623
|
.e-bigger.e-pivotfieldlist-container.e-search-mode.e-static {
|
|
3495
3624
|
max-height: 750px;
|
|
@@ -3526,4 +3655,6 @@
|
|
|
3526
3655
|
.e-bigger .e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div,
|
|
3527
3656
|
.e-bigger.e-pivotfieldlist-container .e-adaptive-field-list-dialog .e-dlg-content .e-field-list-tree-outer-div {
|
|
3528
3657
|
max-height: 179px;
|
|
3529
|
-
}
|
|
3658
|
+
}
|
|
3659
|
+
|
|
3660
|
+
/* stylelint-enable */
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$pivotgrid-skin: 'bootstrap-dark' !default;
|
|
3
|
+
$pivotgrid-active-color: $brand-primary !default;
|
|
4
|
+
$pivotgrid-default-font-color: $grey-f8 !default;
|
|
5
|
+
$pivotgrid-cell-border-color: rgba($grey-light-font, .12) !default;
|
|
6
|
+
$pivotgrid-prompt-default-font-color: $pivotgrid-default-font-color !default;
|
|
7
|
+
$pivotgrid-default-border-color: $grey-44 !default;
|
|
8
|
+
$pivotgrid-border-type: $border-type !default;
|
|
9
|
+
$pivotgrid-border-size: $border-size !default;
|
|
10
|
+
$pivotgrid-table-background-color: $grey-white !default;
|
|
11
|
+
$pivotgrid-content-font-size: 13px !default;
|
|
12
|
+
$pivotgrid-bigger-content-font-size: 13px !default;
|
|
13
|
+
$field-list-font-family: $font-family !default;
|
|
14
|
+
$pivotgrid-cell-hover-color: rgba(0, 0, 0, 0) !default;
|
|
15
|
+
$pivotgrid-grp-bg-color: $grey-darker !default;
|
|
16
|
+
$pivotgrid-drag-clone-color: $grey-white !default;
|
|
17
|
+
$pivotgrid-drop-hover-color: $grey-e6 !default;
|
|
18
|
+
$pivotview-grid-content-opacity: 1 !default;
|
|
19
|
+
$pivotview-grid-header-font-size: 13px !default;
|
|
20
|
+
$pivotview-bigger-grid-header-font-size: 13px !default;
|
|
21
|
+
$pivotview-grid-header-font-weight: 600 !default;
|
|
22
|
+
$pivotview-grid-header-font-color: $grey-dark-font !default;
|
|
23
|
+
$pivotgrid-horizontal-button-padding: 8px !default;
|
|
24
|
+
$pivotgrid-vertical-button-padding: 3px !default;
|
|
25
|
+
$pivotgrid-summary-font-weight: bold !default;
|
|
26
|
+
$pivotgrid-grouping-min-height: 28px !default;
|
|
27
|
+
$pivotgrid-prompt-line-height: 22px !default;
|
|
28
|
+
$field-list-toggle-size: 40px !default;
|
|
29
|
+
$pivotgrid-button-border-color: $grey-44 !default;
|
|
30
|
+
$pivotgrid-drag-clone-text-color: rgba(255, 0, 0, 1) !default;
|
|
31
|
+
$pivotgrid-drag-clone-font-size: 12px !default;
|
|
32
|
+
$pivotgrid-default-border-radius: 4px !default;
|
|
33
|
+
$pivotgrid-button-icon-size: 10px !default;
|
|
34
|
+
$pivotgrid-bigger-button-icon-size: 14px !default;
|
|
35
|
+
$pivotgrid-button-border-radius: 4px !default;
|
|
36
|
+
$pivotgrid-button-background-color: $grey-44 !default;
|
|
37
|
+
$pivotgrid-button-hover-color: $grey-dark !default;
|
|
38
|
+
$pivotgrid-editor-dialog-footer-padding: 5px !default;
|
|
39
|
+
$pivotgrid-button-drag-color: $grey-light !default;
|
|
40
|
+
$pivotgrid-expand-icon-fontsize: 10px !default;
|
|
41
|
+
$pivotgrid-drill-margintop: 6px !default;
|
|
42
|
+
$pivotgrid-bigger-drill-margintop: $pivotgrid-drill-margintop !default;
|
|
43
|
+
$pivotgrid-rtl-expand-icon-font-size: 10px !default;
|
|
44
|
+
$pivotgrid-collapse-icon-fonsize: 10px !default;
|
|
45
|
+
$pivotgrid-expcoldiv-fontsize: 12px !default;
|
|
46
|
+
$pivotgrid-vsort-mouse-margin: -15px 0 !default;
|
|
47
|
+
$pivotgrid-vsort-row-margin: 0 !default;
|
|
48
|
+
$pivotgrid-vsort-mouse-wrap-margin: -30px -15px !default;
|
|
49
|
+
$pivotgrid-vsort-touch-margin: -13px -11px !default;
|
|
50
|
+
$pivotgrid-vsort-touch-wrap-margin: -30px -18px !default;
|
|
51
|
+
$pivotgrid-tooltip-padding: 3px 2px !default;
|
|
52
|
+
$pivotgrid-tooltip-fontcolor: $grey-base !default;
|
|
53
|
+
$pivotgrid-tooltip-fontsize: 14px !default;
|
|
54
|
+
$pivotgrid-tooltip-fontfamily: Helvetica !default;
|
|
55
|
+
$pivotgrid-member-filter-list-bigger-height: 136px !default;
|
|
56
|
+
$pivotgrid-member-filter-list-height: 164px !default;
|
|
57
|
+
$pivotgrid-button-font-color: $grey-dark-font !default;
|
|
58
|
+
$pivotgrid-button-acitve-font-color: $pivotgrid-button-font-color !default;
|
|
59
|
+
$pivotgrid-hover-color: $grey !default;
|
|
60
|
+
$pivotgrid-focus-color: $grey-dark !default;
|
|
61
|
+
$pivotgrid-button-icon-color: $grey-dark-font !default;
|
|
62
|
+
$pivotgrid-button-active-icon-color: $pivotgrid-button-icon-color !default;
|
|
63
|
+
$pivotgrid-icon-hover-color: $grey-dark-font !default;
|
|
64
|
+
$pivotgrid-icon-focus-color: $pivotgrid-icon-hover-color !default;
|
|
65
|
+
$pivotgrid-button-inner-padding: 4px !default;
|
|
66
|
+
$pivotgrid-bigger-button-inner-padding: 7px !default;
|
|
67
|
+
$pivotgrid-excel-member-filter-height: 154px !default;
|
|
68
|
+
$pivotgrid-excel-filter-height: 234px !default;
|
|
69
|
+
$pivotgrid-excel-member-filter-bigger-height: 113px !default;
|
|
70
|
+
$pivotgrid-excel-filter-bigger-height: 213px !default;
|
|
71
|
+
$pivotgrid-editor-label-padding-size: 16px 10px 16px 20px !default;
|
|
72
|
+
$pivotgrid-editor-label-font: 500 13px Helvetica !default;
|
|
73
|
+
$pivotgrid-editor-label-opacity: 1 !default;
|
|
74
|
+
$pivotgrid-editor-label-color: $grey-light-font !default;
|
|
75
|
+
$pivotgrid-editor-label-fill: $grey-f8 !default;
|
|
76
|
+
$pivotgrid-editor-label-excel-width: 312px !default;
|
|
77
|
+
$pivotgrid-editor-label-excel-padding-size: 18px 10px 12px 20px !default;
|
|
78
|
+
$pivotgrid-editor-label-excel-opacity: 100%;
|
|
79
|
+
$pivotgrid-drillthrough-header-font-weight: 700 !default;
|
|
80
|
+
$pivotgrid-drillthrough-value-opacity: 1 !default;
|
|
81
|
+
$pivotgrid-header-selection-bg-color: $grey-88 !default;
|
|
82
|
+
$pivotgrid-header-selection-color: $active-font-color !default;
|
|
83
|
+
$pivotgrid-menubar-height: 40px !default;
|
|
84
|
+
$pivotgrid-bigger-menubar-height: 45px !default;
|
|
85
|
+
$pivotgrid-sort-wrapper-padding-size: 10px !default;
|
|
86
|
+
$pivotgrid-sort-select-background-color: $grey-dark !default;
|
|
87
|
+
$pivotgrid-sort-select-border-color: $grey-8c !default;
|
|
88
|
+
$pivotgrid-sort-select-color: $grey-light-font !default;
|
|
89
|
+
$pivotgrid-group-chart-values-dropdown-margin: 5px !default;
|
|
90
|
+
$pivotgrid-group-chart-values-dropdown-margin-bigger: 5px !default;
|
|
91
|
+
$pivotgrid-header-background-color: $grey-darker !default;
|
|
92
|
+
$pivotgrid-gtot-background-color: $grey-darker !default;
|
|
93
|
+
$pivotgrid-gtot-font-color: $grey-dark-font 87% !default;
|
|
94
|
+
$pivotgrid-report-label-margin-top: 7px !default;
|
|
95
|
+
$pivotgrid-bigger-report-label-margin-top: 8px !default;
|
|
96
|
+
$pivotview-value-sort-rtl-padding: .8em !default;
|
|
97
|
+
$pivotview-filter-toolbar-items-margin-left: 0 !default;
|
|
98
|
+
$pivotview-filter-toolbar-items-margin-right: 0 !default;
|
|
99
|
+
$pivotgrid-header-text-margin-top: 4px !default;
|
|
100
|
+
$pivotgrid-border: $pivotgrid-cell-border-color !default;
|
|
101
|
+
$pivotgrid-bg-color: #5a6268;
|
|
102
|
+
$pivotgrid-border-color: #545b62;
|
|
103
|
+
$pivotgrid-active-border-color: #4e555b;
|
|
104
|
+
$pivotgrid-box-shadow-color: rgba(108, 117, 125, .5);
|
|
105
|
+
$pivot-toolbar-icon-hover-color: $pivotgrid-icon-hover-color !default;
|
|
106
|
+
$pivotgrid-value-sort-icon-padding: 3px 4px 4px 4px !default;
|
|
107
|
+
$pivotgrid-value-sort-icon-font-size: 12px !default;
|
|
108
|
+
|
|
109
|
+
//enddefault
|
|
110
|
+
|
|
111
|
+
/*! component's common definitions and variables */
|
|
112
|
+
$pivotgrid-grouping-height: 36px !default;
|
|
113
|
+
$pivotgrid-editor-search-padding-size: 20px !default;
|
|
114
|
+
$pivotgrid-member-filter-list-padding-size: -35px !default;
|
|
115
|
+
$pivotview-grid-indent-padding: 8px !default;
|
|
116
|
+
$pivotview-grid-bigger-indent-padding: 16px !default;
|
|
117
|
+
$pivotview-axis-indent-padding: $pivotview-grid-indent-padding !default;
|
|
118
|
+
$pivotview-axis-bigger-indent-padding: $pivotview-grid-bigger-indent-padding !default;
|
|
119
|
+
$pivotview-indent-space-size: 24px !default;
|
|
120
|
+
$pivotgrid-button-font-size: 13px !default;
|
|
121
|
+
$pivotgrid-bigger-button-font-size: 13px !default;
|
|
122
|
+
$pivotgrid-bigger-button-line-height: .9em !default;
|
|
123
|
+
$pivotgrid-bigger-excel-dialog-min-width: 350px !default;
|
|
124
|
+
$pivotgrid-expand-bigger-icon-fontsize: 10px !default;
|
|
125
|
+
$pivotgrid-collapse-bigger-icon-fontsize: 10px !default;
|
|
126
|
+
$pivotgrid-grouping-padding-bottom: 10px !default;
|
|
127
|
+
$pivotgrid-grouping-padding-top: 0 !default;
|
|
128
|
+
$pivotgrid-grouping-bigger-padding-top: 0 !default;
|
|
129
|
+
$pivotgrid-button-icon-wrapper-size: 18px !default;
|
|
130
|
+
$pivotgrid-bigger-button-icon-wrapper-size: 20px !default;
|
|
131
|
+
$pivotgrid-bigger-button-icon-touch-margin-size: 0 !default;
|