@syncfusion/ej2-gantt 20.2.39 → 20.2.45
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 +34 -0
- package/dist/ej2-gantt.umd.min.js +2 -2
- package/dist/ej2-gantt.umd.min.js.map +1 -1
- package/dist/es6/ej2-gantt.es2015.js +108 -45
- package/dist/es6/ej2-gantt.es2015.js.map +1 -1
- package/dist/es6/ej2-gantt.es5.js +108 -45
- package/dist/es6/ej2-gantt.es5.js.map +1 -1
- package/dist/global/ej2-gantt.min.js +2 -2
- package/dist/global/ej2-gantt.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/gantt/actions/cell-edit.js +3 -0
- package/src/gantt/actions/context-menu.js +1 -1
- package/src/gantt/actions/critical-path.js +2 -8
- package/src/gantt/actions/edit.js +3 -2
- package/src/gantt/actions/rowdragdrop.js +1 -1
- package/src/gantt/base/date-processor.js +9 -3
- package/src/gantt/base/gantt-chart.d.ts +4 -0
- package/src/gantt/base/gantt-chart.js +36 -4
- package/src/gantt/base/gantt.d.ts +1 -0
- package/src/gantt/base/gantt.js +46 -26
- package/src/gantt/base/tree-grid.js +1 -0
- package/src/gantt/renderer/chart-rows.js +6 -0
- package/src/gantt/renderer/tooltip.js +1 -1
- package/styles/bootstrap-dark.css +4 -4
- package/styles/bootstrap.css +4 -4
- package/styles/bootstrap4.css +4 -4
- package/styles/bootstrap5-dark.css +4 -4
- package/styles/bootstrap5.css +4 -4
- package/styles/fabric-dark.css +4 -4
- package/styles/fabric.css +4 -4
- package/styles/fluent-dark.css +4 -4
- package/styles/fluent.css +4 -4
- package/styles/gantt/_layout.scss +9 -19
- package/styles/gantt/_theme.scss +1 -19
- package/styles/gantt/bootstrap-dark.css +4 -4
- package/styles/gantt/bootstrap.css +4 -4
- package/styles/gantt/bootstrap4.css +4 -4
- package/styles/gantt/bootstrap5-dark.css +4 -4
- package/styles/gantt/bootstrap5.css +4 -4
- package/styles/gantt/fabric-dark.css +4 -4
- package/styles/gantt/fabric.css +4 -4
- package/styles/gantt/fluent-dark.css +4 -4
- package/styles/gantt/fluent.css +4 -4
- package/styles/gantt/highcontrast-light.css +4 -4
- package/styles/gantt/highcontrast.css +4 -4
- package/styles/gantt/icons/_bootstrap-dark.scss +3 -3
- package/styles/gantt/icons/_bootstrap.scss +3 -3
- package/styles/gantt/icons/_bootstrap4.scss +5 -5
- package/styles/gantt/icons/_bootstrap5.scss +3 -3
- package/styles/gantt/icons/_fabric-dark.scss +3 -3
- package/styles/gantt/icons/_fabric.scss +3 -3
- package/styles/gantt/icons/_fluent.scss +3 -3
- package/styles/gantt/icons/_fusionnew.scss +3 -3
- package/styles/gantt/icons/_highcontrast.scss +3 -3
- package/styles/gantt/icons/_material-dark.scss +3 -3
- package/styles/gantt/icons/_material.scss +3 -3
- package/styles/gantt/icons/_material3.scss +3 -3
- package/styles/gantt/icons/_tailwind-dark.scss +3 -3
- package/styles/gantt/icons/_tailwind.scss +3 -3
- package/styles/gantt/material-dark.css +4 -4
- package/styles/gantt/material.css +4 -4
- package/styles/gantt/tailwind-dark.css +4 -4
- package/styles/gantt/tailwind.css +4 -4
- package/styles/highcontrast-light.css +4 -4
- package/styles/highcontrast.css +4 -4
- package/styles/material-dark.css +4 -4
- package/styles/material.css +4 -4
- package/styles/tailwind-dark.css +4 -4
- package/styles/tailwind.css +4 -4
package/styles/bootstrap4.css
CHANGED
|
@@ -948,14 +948,13 @@
|
|
|
948
948
|
}
|
|
949
949
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
950
950
|
border-bottom-style: solid;
|
|
951
|
-
border-right
|
|
951
|
+
border-right: 1px solid;
|
|
952
952
|
overflow: hidden;
|
|
953
953
|
position: relative;
|
|
954
954
|
z-index: 6;
|
|
955
955
|
}
|
|
956
956
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
957
957
|
border-left: 0;
|
|
958
|
-
padding: 0 3px;
|
|
959
958
|
}
|
|
960
959
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
961
960
|
border-collapse: collapse;
|
|
@@ -1007,7 +1006,7 @@
|
|
|
1007
1006
|
}
|
|
1008
1007
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
1009
1008
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
1010
|
-
padding-left:
|
|
1009
|
+
padding-left: 11px;
|
|
1011
1010
|
text-align: left;
|
|
1012
1011
|
}
|
|
1013
1012
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -1111,7 +1110,7 @@
|
|
|
1111
1110
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
1112
1111
|
display: inline-block;
|
|
1113
1112
|
font-size: 13px;
|
|
1114
|
-
font-weight:
|
|
1113
|
+
font-weight: normal;
|
|
1115
1114
|
overflow: hidden;
|
|
1116
1115
|
position: absolute;
|
|
1117
1116
|
text-overflow: ellipsis;
|
|
@@ -1504,6 +1503,7 @@
|
|
|
1504
1503
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1505
1504
|
border-bottom-width: 0px;
|
|
1506
1505
|
height: 200px;
|
|
1506
|
+
overflow: hidden;
|
|
1507
1507
|
}
|
|
1508
1508
|
.e-gantt-dialog > .e-dlg-content {
|
|
1509
1509
|
padding: 0 !important;
|
|
@@ -661,14 +661,13 @@
|
|
|
661
661
|
}
|
|
662
662
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
663
663
|
border-bottom-style: solid;
|
|
664
|
-
border-right
|
|
664
|
+
border-right: 1px solid;
|
|
665
665
|
overflow: hidden;
|
|
666
666
|
position: relative;
|
|
667
667
|
z-index: 6;
|
|
668
668
|
}
|
|
669
669
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
670
670
|
border-left: 0;
|
|
671
|
-
padding: 0 3px;
|
|
672
671
|
}
|
|
673
672
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
674
673
|
border-collapse: collapse;
|
|
@@ -720,7 +719,7 @@
|
|
|
720
719
|
}
|
|
721
720
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
722
721
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
723
|
-
padding-left:
|
|
722
|
+
padding-left: 11px;
|
|
724
723
|
text-align: left;
|
|
725
724
|
}
|
|
726
725
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -824,7 +823,7 @@
|
|
|
824
823
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
825
824
|
display: inline-block;
|
|
826
825
|
font-size: 13px;
|
|
827
|
-
font-weight:
|
|
826
|
+
font-weight: normal;
|
|
828
827
|
overflow: hidden;
|
|
829
828
|
position: absolute;
|
|
830
829
|
text-overflow: ellipsis;
|
|
@@ -1217,6 +1216,7 @@
|
|
|
1217
1216
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1218
1217
|
border-bottom-width: 0px;
|
|
1219
1218
|
height: 200px;
|
|
1219
|
+
overflow: hidden;
|
|
1220
1220
|
}
|
|
1221
1221
|
.e-gantt-dialog > .e-dlg-content {
|
|
1222
1222
|
padding: 0 !important;
|
package/styles/bootstrap5.css
CHANGED
|
@@ -661,14 +661,13 @@
|
|
|
661
661
|
}
|
|
662
662
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
663
663
|
border-bottom-style: solid;
|
|
664
|
-
border-right
|
|
664
|
+
border-right: 1px solid;
|
|
665
665
|
overflow: hidden;
|
|
666
666
|
position: relative;
|
|
667
667
|
z-index: 6;
|
|
668
668
|
}
|
|
669
669
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
670
670
|
border-left: 0;
|
|
671
|
-
padding: 0 3px;
|
|
672
671
|
}
|
|
673
672
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
674
673
|
border-collapse: collapse;
|
|
@@ -720,7 +719,7 @@
|
|
|
720
719
|
}
|
|
721
720
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
722
721
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
723
|
-
padding-left:
|
|
722
|
+
padding-left: 11px;
|
|
724
723
|
text-align: left;
|
|
725
724
|
}
|
|
726
725
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -824,7 +823,7 @@
|
|
|
824
823
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
825
824
|
display: inline-block;
|
|
826
825
|
font-size: 13px;
|
|
827
|
-
font-weight:
|
|
826
|
+
font-weight: normal;
|
|
828
827
|
overflow: hidden;
|
|
829
828
|
position: absolute;
|
|
830
829
|
text-overflow: ellipsis;
|
|
@@ -1217,6 +1216,7 @@
|
|
|
1217
1216
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1218
1217
|
border-bottom-width: 0px;
|
|
1219
1218
|
height: 200px;
|
|
1219
|
+
overflow: hidden;
|
|
1220
1220
|
}
|
|
1221
1221
|
.e-gantt-dialog > .e-dlg-content {
|
|
1222
1222
|
padding: 0 !important;
|
package/styles/fabric-dark.css
CHANGED
|
@@ -577,14 +577,13 @@
|
|
|
577
577
|
}
|
|
578
578
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
579
579
|
border-bottom-style: solid;
|
|
580
|
-
border-right
|
|
580
|
+
border-right: 1px solid;
|
|
581
581
|
overflow: hidden;
|
|
582
582
|
position: relative;
|
|
583
583
|
z-index: 6;
|
|
584
584
|
}
|
|
585
585
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
586
586
|
border-left: 0;
|
|
587
|
-
padding: 0 3px;
|
|
588
587
|
}
|
|
589
588
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
590
589
|
border-collapse: collapse;
|
|
@@ -636,7 +635,7 @@
|
|
|
636
635
|
}
|
|
637
636
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
638
637
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
639
|
-
padding-left:
|
|
638
|
+
padding-left: 11px;
|
|
640
639
|
text-align: left;
|
|
641
640
|
}
|
|
642
641
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -740,7 +739,7 @@
|
|
|
740
739
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
741
740
|
display: inline-block;
|
|
742
741
|
font-size: 13px;
|
|
743
|
-
font-weight:
|
|
742
|
+
font-weight: normal;
|
|
744
743
|
overflow: hidden;
|
|
745
744
|
position: absolute;
|
|
746
745
|
text-overflow: ellipsis;
|
|
@@ -1133,6 +1132,7 @@
|
|
|
1133
1132
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1134
1133
|
border-bottom-width: 0px;
|
|
1135
1134
|
height: 200px;
|
|
1135
|
+
overflow: hidden;
|
|
1136
1136
|
}
|
|
1137
1137
|
.e-gantt-dialog > .e-dlg-content {
|
|
1138
1138
|
padding: 0 !important;
|
package/styles/fabric.css
CHANGED
|
@@ -575,14 +575,13 @@
|
|
|
575
575
|
}
|
|
576
576
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
577
577
|
border-bottom-style: solid;
|
|
578
|
-
border-right
|
|
578
|
+
border-right: 1px solid;
|
|
579
579
|
overflow: hidden;
|
|
580
580
|
position: relative;
|
|
581
581
|
z-index: 6;
|
|
582
582
|
}
|
|
583
583
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
584
584
|
border-left: 0;
|
|
585
|
-
padding: 0 3px;
|
|
586
585
|
}
|
|
587
586
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
588
587
|
border-collapse: collapse;
|
|
@@ -634,7 +633,7 @@
|
|
|
634
633
|
}
|
|
635
634
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
636
635
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
637
|
-
padding-left:
|
|
636
|
+
padding-left: 11px;
|
|
638
637
|
text-align: left;
|
|
639
638
|
}
|
|
640
639
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -738,7 +737,7 @@
|
|
|
738
737
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
739
738
|
display: inline-block;
|
|
740
739
|
font-size: 13px;
|
|
741
|
-
font-weight:
|
|
740
|
+
font-weight: normal;
|
|
742
741
|
overflow: hidden;
|
|
743
742
|
position: absolute;
|
|
744
743
|
text-overflow: ellipsis;
|
|
@@ -1131,6 +1130,7 @@
|
|
|
1131
1130
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1132
1131
|
border-bottom-width: 0px;
|
|
1133
1132
|
height: 200px;
|
|
1133
|
+
overflow: hidden;
|
|
1134
1134
|
}
|
|
1135
1135
|
.e-gantt-dialog > .e-dlg-content {
|
|
1136
1136
|
padding: 0 !important;
|
package/styles/fluent-dark.css
CHANGED
|
@@ -640,14 +640,13 @@
|
|
|
640
640
|
}
|
|
641
641
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
642
642
|
border-bottom-style: solid;
|
|
643
|
-
border-right
|
|
643
|
+
border-right: 1px solid;
|
|
644
644
|
overflow: hidden;
|
|
645
645
|
position: relative;
|
|
646
646
|
z-index: 6;
|
|
647
647
|
}
|
|
648
648
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
649
649
|
border-left: 0;
|
|
650
|
-
padding: 0 3px;
|
|
651
650
|
}
|
|
652
651
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
653
652
|
border-collapse: collapse;
|
|
@@ -699,7 +698,7 @@
|
|
|
699
698
|
}
|
|
700
699
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
701
700
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
702
|
-
padding-left:
|
|
701
|
+
padding-left: 11px;
|
|
703
702
|
text-align: left;
|
|
704
703
|
}
|
|
705
704
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -803,7 +802,7 @@
|
|
|
803
802
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
804
803
|
display: inline-block;
|
|
805
804
|
font-size: 13px;
|
|
806
|
-
font-weight:
|
|
805
|
+
font-weight: normal;
|
|
807
806
|
overflow: hidden;
|
|
808
807
|
position: absolute;
|
|
809
808
|
text-overflow: ellipsis;
|
|
@@ -1196,6 +1195,7 @@
|
|
|
1196
1195
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1197
1196
|
border-bottom-width: 0px;
|
|
1198
1197
|
height: 200px;
|
|
1198
|
+
overflow: hidden;
|
|
1199
1199
|
}
|
|
1200
1200
|
.e-gantt-dialog > .e-dlg-content {
|
|
1201
1201
|
padding: 0 !important;
|
package/styles/fluent.css
CHANGED
|
@@ -640,14 +640,13 @@
|
|
|
640
640
|
}
|
|
641
641
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
642
642
|
border-bottom-style: solid;
|
|
643
|
-
border-right
|
|
643
|
+
border-right: 1px solid;
|
|
644
644
|
overflow: hidden;
|
|
645
645
|
position: relative;
|
|
646
646
|
z-index: 6;
|
|
647
647
|
}
|
|
648
648
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
649
649
|
border-left: 0;
|
|
650
|
-
padding: 0 3px;
|
|
651
650
|
}
|
|
652
651
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
653
652
|
border-collapse: collapse;
|
|
@@ -699,7 +698,7 @@
|
|
|
699
698
|
}
|
|
700
699
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
701
700
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
702
|
-
padding-left:
|
|
701
|
+
padding-left: 11px;
|
|
703
702
|
text-align: left;
|
|
704
703
|
}
|
|
705
704
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -803,7 +802,7 @@
|
|
|
803
802
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
804
803
|
display: inline-block;
|
|
805
804
|
font-size: 13px;
|
|
806
|
-
font-weight:
|
|
805
|
+
font-weight: normal;
|
|
807
806
|
overflow: hidden;
|
|
808
807
|
position: absolute;
|
|
809
808
|
text-overflow: ellipsis;
|
|
@@ -1196,6 +1195,7 @@
|
|
|
1196
1195
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1197
1196
|
border-bottom-width: 0px;
|
|
1198
1197
|
height: 200px;
|
|
1198
|
+
overflow: hidden;
|
|
1199
1199
|
}
|
|
1200
1200
|
.e-gantt-dialog > .e-dlg-content {
|
|
1201
1201
|
padding: 0 !important;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
@include export-module('gantt-layout') {
|
|
2
2
|
|
|
3
3
|
.e-bigger {
|
|
4
4
|
.e-gantt {
|
|
@@ -71,8 +71,7 @@
|
|
|
71
71
|
background-color: $connector-point-hover-color;
|
|
72
72
|
border-color: $connector-point-border-color;
|
|
73
73
|
outline: 2px solid $connector-point-hover-outerline-color;
|
|
74
|
-
|
|
75
|
-
|
|
74
|
+
}
|
|
76
75
|
}
|
|
77
76
|
|
|
78
77
|
.e-tab .e-content {
|
|
@@ -485,7 +484,6 @@
|
|
|
485
484
|
line-height: 10px;
|
|
486
485
|
vertical-align: middle;
|
|
487
486
|
}
|
|
488
|
-
|
|
489
487
|
}
|
|
490
488
|
|
|
491
489
|
.e-gantt-chart {
|
|
@@ -521,13 +519,11 @@
|
|
|
521
519
|
height: 100%;
|
|
522
520
|
position: absolute;
|
|
523
521
|
}
|
|
524
|
-
|
|
525
522
|
}
|
|
526
523
|
|
|
527
|
-
|
|
528
524
|
.e-timeline-header-container {
|
|
529
525
|
border-bottom-style: solid;
|
|
530
|
-
border-right
|
|
526
|
+
border-right: 1px solid;
|
|
531
527
|
overflow: hidden;
|
|
532
528
|
position: relative;
|
|
533
529
|
z-index: 6;
|
|
@@ -535,7 +531,6 @@
|
|
|
535
531
|
|
|
536
532
|
.e-timeline-header-table-container > thead > tr > th {
|
|
537
533
|
border-left: 0;
|
|
538
|
-
padding: 0 3px;
|
|
539
534
|
}
|
|
540
535
|
|
|
541
536
|
.e-timeline-header-table-container {
|
|
@@ -557,7 +552,7 @@
|
|
|
557
552
|
|
|
558
553
|
.e-timeline-header-table-body > tr {
|
|
559
554
|
display: inline-flex;
|
|
560
|
-
|
|
555
|
+
}
|
|
561
556
|
|
|
562
557
|
.e-timeline-top-header-cell,
|
|
563
558
|
.e-timeline-single-header-cell {
|
|
@@ -586,10 +581,9 @@
|
|
|
586
581
|
}
|
|
587
582
|
|
|
588
583
|
.e-gantt-top-cell-text {
|
|
589
|
-
padding-left:
|
|
584
|
+
padding-left: 11px;
|
|
590
585
|
text-align: left;
|
|
591
586
|
}
|
|
592
|
-
|
|
593
587
|
}
|
|
594
588
|
|
|
595
589
|
.e-gantt-grid-lines {
|
|
@@ -706,7 +700,7 @@
|
|
|
706
700
|
.e-indicator-span {
|
|
707
701
|
display: inline-block;
|
|
708
702
|
font-size: 13px;
|
|
709
|
-
font-weight:
|
|
703
|
+
font-weight: normal;
|
|
710
704
|
overflow: hidden;
|
|
711
705
|
position: absolute;
|
|
712
706
|
text-overflow: ellipsis;
|
|
@@ -739,7 +733,7 @@
|
|
|
739
733
|
border-color: $gantt-active-background-color;
|
|
740
734
|
}
|
|
741
735
|
@else {
|
|
742
|
-
border-color:
|
|
736
|
+
border-color: inherit;
|
|
743
737
|
}
|
|
744
738
|
border-top-style: dotted;
|
|
745
739
|
border-top-width: 2px;
|
|
@@ -1077,9 +1071,7 @@
|
|
|
1077
1071
|
outline: 1px solid;
|
|
1078
1072
|
outline-offset: 2px;
|
|
1079
1073
|
}
|
|
1080
|
-
|
|
1081
1074
|
}
|
|
1082
|
-
|
|
1083
1075
|
}
|
|
1084
1076
|
|
|
1085
1077
|
.e-gantt-dialog .e-tab .e-tab-header {
|
|
@@ -1093,7 +1085,6 @@
|
|
|
1093
1085
|
border-style: solid;
|
|
1094
1086
|
border-width: $gantt-tab-header-border-width;
|
|
1095
1087
|
}
|
|
1096
|
-
|
|
1097
1088
|
}
|
|
1098
1089
|
|
|
1099
1090
|
.e-gantt-dialog .e-tab .e-tab-header:not(.e-vertical)::before {
|
|
@@ -1129,7 +1120,6 @@
|
|
|
1129
1120
|
.e-gridheader {
|
|
1130
1121
|
border-top-width: 0;
|
|
1131
1122
|
}
|
|
1132
|
-
|
|
1133
1123
|
}
|
|
1134
1124
|
|
|
1135
1125
|
.e-edit-form-row {
|
|
@@ -1178,6 +1168,7 @@
|
|
|
1178
1168
|
.e-richtexteditor .e-rte-content {
|
|
1179
1169
|
border-bottom-width: $gantt-richtext-content-border-bottom;
|
|
1180
1170
|
height: $gantt-dialog-rte-content-height;
|
|
1171
|
+
overflow: hidden;
|
|
1181
1172
|
}
|
|
1182
1173
|
|
|
1183
1174
|
> .e-dlg-content {
|
|
@@ -1200,7 +1191,6 @@
|
|
|
1200
1191
|
height: auto !important; // sass-lint:disable-line no-important
|
|
1201
1192
|
width: auto !important; // sass-lint:disable-line no-important
|
|
1202
1193
|
}
|
|
1203
|
-
|
|
1204
1194
|
}
|
|
1205
1195
|
}
|
|
1206
1196
|
|
|
@@ -1229,7 +1219,7 @@
|
|
|
1229
1219
|
height: 26px;
|
|
1230
1220
|
padding: 4px;
|
|
1231
1221
|
width: 26px;
|
|
1232
|
-
|
|
1222
|
+
}
|
|
1233
1223
|
|
|
1234
1224
|
.e-content {
|
|
1235
1225
|
border-radius: 4px;
|
package/styles/gantt/_theme.scss
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
|
|
2
1
|
@include export-module('gantt-theme') {
|
|
2
|
+
|
|
3
3
|
/*! Gantt theme */
|
|
4
4
|
|
|
5
5
|
.e-gantt {
|
|
@@ -142,12 +142,10 @@
|
|
|
142
142
|
width: $gantt-collapse-progress-width;
|
|
143
143
|
}
|
|
144
144
|
|
|
145
|
-
|
|
146
145
|
.e-collapsed-taskbar-drag {
|
|
147
146
|
background-color: $gantt-child-progress-bar;
|
|
148
147
|
}
|
|
149
148
|
|
|
150
|
-
|
|
151
149
|
.e-left-connectorpoint-outer-div {
|
|
152
150
|
display: none;
|
|
153
151
|
}
|
|
@@ -259,7 +257,6 @@
|
|
|
259
257
|
.e-progressbar-handler-after {
|
|
260
258
|
border-bottom-color: $progress-handler-background;
|
|
261
259
|
}
|
|
262
|
-
|
|
263
260
|
}
|
|
264
261
|
|
|
265
262
|
.e-gantt-dependency-view-container {
|
|
@@ -469,7 +466,6 @@
|
|
|
469
466
|
.e-task-label {
|
|
470
467
|
color: transparent;
|
|
471
468
|
}
|
|
472
|
-
|
|
473
469
|
}
|
|
474
470
|
|
|
475
471
|
.e-predecessor-touch-mode {
|
|
@@ -532,7 +528,6 @@
|
|
|
532
528
|
.e-milestone-bottom {
|
|
533
529
|
border-top-color: $gantt-child-progress-bar !important; // sass-lint:disable-line no-important
|
|
534
530
|
}
|
|
535
|
-
|
|
536
531
|
}
|
|
537
532
|
|
|
538
533
|
.e-active-connected-task {
|
|
@@ -561,11 +556,8 @@
|
|
|
561
556
|
.e-connector-line-left-arrow {
|
|
562
557
|
border-right-color: $gantt-child-progress-bar !important; // sass-lint:disable-line no-important
|
|
563
558
|
}
|
|
564
|
-
|
|
565
559
|
}
|
|
566
|
-
|
|
567
560
|
}
|
|
568
|
-
|
|
569
561
|
}
|
|
570
562
|
|
|
571
563
|
.e-icons {
|
|
@@ -575,7 +567,6 @@
|
|
|
575
567
|
.e-grid .e-icons:not(.e-stop):not(.e-check):not(.e-icon-left):not(.e-date-icon) {
|
|
576
568
|
color: $gantt-context-menu-icon-color !important; // sass-lint:disable-line no-important
|
|
577
569
|
}
|
|
578
|
-
|
|
579
570
|
}
|
|
580
571
|
|
|
581
572
|
.e-gantt-dialog {
|
|
@@ -598,7 +589,6 @@
|
|
|
598
589
|
.e-icon-dlg-close {
|
|
599
590
|
color: $gantt-dialog-close-icon-hover-color;
|
|
600
591
|
}
|
|
601
|
-
|
|
602
592
|
}
|
|
603
593
|
|
|
604
594
|
.e-tab {
|
|
@@ -618,7 +608,6 @@
|
|
|
618
608
|
color: $gantt-tab-header-active-font-color;
|
|
619
609
|
}
|
|
620
610
|
}
|
|
621
|
-
|
|
622
611
|
}
|
|
623
612
|
|
|
624
613
|
.e-toolbar-item {
|
|
@@ -629,9 +618,7 @@
|
|
|
629
618
|
.e-tab-text {
|
|
630
619
|
color: $gantt-tab-header-font-color;
|
|
631
620
|
}
|
|
632
|
-
|
|
633
621
|
}
|
|
634
|
-
|
|
635
622
|
}
|
|
636
623
|
|
|
637
624
|
.e-toolbar-item:not(.e-active) .e-tab-wrap:hover {
|
|
@@ -644,13 +631,9 @@
|
|
|
644
631
|
.e-tab-text {
|
|
645
632
|
color: $gantt-tab-header-hover-font-color;
|
|
646
633
|
}
|
|
647
|
-
|
|
648
634
|
}
|
|
649
|
-
|
|
650
635
|
}
|
|
651
|
-
|
|
652
636
|
}
|
|
653
|
-
|
|
654
637
|
}
|
|
655
638
|
|
|
656
639
|
.e-gantt.e-device {
|
|
@@ -663,7 +646,6 @@
|
|
|
663
646
|
.e-backarrowspan {
|
|
664
647
|
color: $gantt-gridpopup-span;
|
|
665
648
|
}
|
|
666
|
-
|
|
667
649
|
}
|
|
668
650
|
|
|
669
651
|
.e-gantt .e-gantt-chart .e-criticalconnector-line {
|
|
@@ -621,14 +621,13 @@
|
|
|
621
621
|
}
|
|
622
622
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
623
623
|
border-bottom-style: solid;
|
|
624
|
-
border-right
|
|
624
|
+
border-right: 1px solid;
|
|
625
625
|
overflow: hidden;
|
|
626
626
|
position: relative;
|
|
627
627
|
z-index: 6;
|
|
628
628
|
}
|
|
629
629
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
630
630
|
border-left: 0;
|
|
631
|
-
padding: 0 3px;
|
|
632
631
|
}
|
|
633
632
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
634
633
|
border-collapse: collapse;
|
|
@@ -680,7 +679,7 @@
|
|
|
680
679
|
}
|
|
681
680
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
682
681
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
683
|
-
padding-left:
|
|
682
|
+
padding-left: 11px;
|
|
684
683
|
text-align: left;
|
|
685
684
|
}
|
|
686
685
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -784,7 +783,7 @@
|
|
|
784
783
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
785
784
|
display: inline-block;
|
|
786
785
|
font-size: 13px;
|
|
787
|
-
font-weight:
|
|
786
|
+
font-weight: normal;
|
|
788
787
|
overflow: hidden;
|
|
789
788
|
position: absolute;
|
|
790
789
|
text-overflow: ellipsis;
|
|
@@ -1177,6 +1176,7 @@
|
|
|
1177
1176
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1178
1177
|
border-bottom-width: 0px;
|
|
1179
1178
|
height: 200px;
|
|
1179
|
+
overflow: hidden;
|
|
1180
1180
|
}
|
|
1181
1181
|
.e-gantt-dialog > .e-dlg-content {
|
|
1182
1182
|
padding: 0 !important;
|
|
@@ -765,14 +765,13 @@
|
|
|
765
765
|
}
|
|
766
766
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
767
767
|
border-bottom-style: solid;
|
|
768
|
-
border-right
|
|
768
|
+
border-right: 1px solid;
|
|
769
769
|
overflow: hidden;
|
|
770
770
|
position: relative;
|
|
771
771
|
z-index: 6;
|
|
772
772
|
}
|
|
773
773
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
774
774
|
border-left: 0;
|
|
775
|
-
padding: 0 3px;
|
|
776
775
|
}
|
|
777
776
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
778
777
|
border-collapse: collapse;
|
|
@@ -824,7 +823,7 @@
|
|
|
824
823
|
}
|
|
825
824
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
826
825
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
827
|
-
padding-left:
|
|
826
|
+
padding-left: 11px;
|
|
828
827
|
text-align: left;
|
|
829
828
|
}
|
|
830
829
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -928,7 +927,7 @@
|
|
|
928
927
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
929
928
|
display: inline-block;
|
|
930
929
|
font-size: 13px;
|
|
931
|
-
font-weight:
|
|
930
|
+
font-weight: normal;
|
|
932
931
|
overflow: hidden;
|
|
933
932
|
position: absolute;
|
|
934
933
|
text-overflow: ellipsis;
|
|
@@ -1321,6 +1320,7 @@
|
|
|
1321
1320
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1322
1321
|
border-bottom-width: 0px;
|
|
1323
1322
|
height: 200px;
|
|
1323
|
+
overflow: hidden;
|
|
1324
1324
|
}
|
|
1325
1325
|
.e-gantt-dialog > .e-dlg-content {
|
|
1326
1326
|
padding: 0 !important;
|
|
@@ -948,14 +948,13 @@
|
|
|
948
948
|
}
|
|
949
949
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
950
950
|
border-bottom-style: solid;
|
|
951
|
-
border-right
|
|
951
|
+
border-right: 1px solid;
|
|
952
952
|
overflow: hidden;
|
|
953
953
|
position: relative;
|
|
954
954
|
z-index: 6;
|
|
955
955
|
}
|
|
956
956
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
957
957
|
border-left: 0;
|
|
958
|
-
padding: 0 3px;
|
|
959
958
|
}
|
|
960
959
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
961
960
|
border-collapse: collapse;
|
|
@@ -1007,7 +1006,7 @@
|
|
|
1007
1006
|
}
|
|
1008
1007
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
1009
1008
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
1010
|
-
padding-left:
|
|
1009
|
+
padding-left: 11px;
|
|
1011
1010
|
text-align: left;
|
|
1012
1011
|
}
|
|
1013
1012
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -1111,7 +1110,7 @@
|
|
|
1111
1110
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
1112
1111
|
display: inline-block;
|
|
1113
1112
|
font-size: 13px;
|
|
1114
|
-
font-weight:
|
|
1113
|
+
font-weight: normal;
|
|
1115
1114
|
overflow: hidden;
|
|
1116
1115
|
position: absolute;
|
|
1117
1116
|
text-overflow: ellipsis;
|
|
@@ -1504,6 +1503,7 @@
|
|
|
1504
1503
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1505
1504
|
border-bottom-width: 0px;
|
|
1506
1505
|
height: 200px;
|
|
1506
|
+
overflow: hidden;
|
|
1507
1507
|
}
|
|
1508
1508
|
.e-gantt-dialog > .e-dlg-content {
|
|
1509
1509
|
padding: 0 !important;
|
|
@@ -661,14 +661,13 @@
|
|
|
661
661
|
}
|
|
662
662
|
.e-gantt .e-gantt-chart .e-timeline-header-container {
|
|
663
663
|
border-bottom-style: solid;
|
|
664
|
-
border-right
|
|
664
|
+
border-right: 1px solid;
|
|
665
665
|
overflow: hidden;
|
|
666
666
|
position: relative;
|
|
667
667
|
z-index: 6;
|
|
668
668
|
}
|
|
669
669
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container > thead > tr > th {
|
|
670
670
|
border-left: 0;
|
|
671
|
-
padding: 0 3px;
|
|
672
671
|
}
|
|
673
672
|
.e-gantt .e-gantt-chart .e-timeline-header-table-container {
|
|
674
673
|
border-collapse: collapse;
|
|
@@ -720,7 +719,7 @@
|
|
|
720
719
|
}
|
|
721
720
|
.e-gantt .e-gantt-chart .e-timeline-top-header-cell .e-gantt-top-cell-text,
|
|
722
721
|
.e-gantt .e-gantt-chart .e-timeline-single-header-cell .e-gantt-top-cell-text {
|
|
723
|
-
padding-left:
|
|
722
|
+
padding-left: 11px;
|
|
724
723
|
text-align: left;
|
|
725
724
|
}
|
|
726
725
|
.e-gantt .e-gantt-chart .e-gantt-grid-lines {
|
|
@@ -824,7 +823,7 @@
|
|
|
824
823
|
.e-gantt .e-gantt-chart .e-indicator-span {
|
|
825
824
|
display: inline-block;
|
|
826
825
|
font-size: 13px;
|
|
827
|
-
font-weight:
|
|
826
|
+
font-weight: normal;
|
|
828
827
|
overflow: hidden;
|
|
829
828
|
position: absolute;
|
|
830
829
|
text-overflow: ellipsis;
|
|
@@ -1217,6 +1216,7 @@
|
|
|
1217
1216
|
.e-gantt-dialog .e-richtexteditor .e-rte-content {
|
|
1218
1217
|
border-bottom-width: 0px;
|
|
1219
1218
|
height: 200px;
|
|
1219
|
+
overflow: hidden;
|
|
1220
1220
|
}
|
|
1221
1221
|
.e-gantt-dialog > .e-dlg-content {
|
|
1222
1222
|
padding: 0 !important;
|