Avoid scrollbar in Gantt chart for row title on Windows platform
This commit is contained in:
@@ -9,6 +9,7 @@ Improvements:
|
|||||||
|
|
||||||
* Replace color dropdown by color picker in task forms
|
* Replace color dropdown by color picker in task forms
|
||||||
* Creating another task stay in the popover (no full page refresh anymore)
|
* Creating another task stay in the popover (no full page refresh anymore)
|
||||||
|
* Avoid scrollbar in Gantt chart for row title on Windows platform
|
||||||
|
|
||||||
Bug fixes:
|
Bug fixes:
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -62,7 +62,7 @@ div.ganttview-vtheader-series-name {
|
|||||||
border-top: 1px solid #d0d0d0;
|
border-top: 1px solid #d0d0d0;
|
||||||
font-size: 0.9em;
|
font-size: 0.9em;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
overflow: auto;
|
overflow: hidden;
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
File diff suppressed because one or more lines are too long
@@ -71,7 +71,7 @@ Gantt.prototype.renderVerticalHeader = function() {
|
|||||||
.append(" ");
|
.append(" ");
|
||||||
|
|
||||||
if (this.data[i].type == "task") {
|
if (this.data[i].type == "task") {
|
||||||
content.append(jQuery("<a>", {"href": this.data[i].link, "target": "_blank"}).append(this.data[i].title));
|
content.append(jQuery("<a>", {"href": this.data[i].link, "target": "_blank", "title": this.data[i].title}).append(this.data[i].title));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
content
|
content
|
||||||
|
|||||||
Reference in New Issue
Block a user