diff --git a/docs/upgrades/templates-7.0.7/project_manager_project_display.tmpl b/docs/upgrades/templates-7.0.7/project_manager_project_display.tmpl index ed9fa4bcf..fa7ba1a7d 100644 --- a/docs/upgrades/templates-7.0.7/project_manager_project_display.tmpl +++ b/docs/upgrades/templates-7.0.7/project_manager_project_display.tmpl @@ -164,7 +164,6 @@ addEvent(window, "load", initPopUp); position:relative; } div.projectBar { - background-color:#7AB7E9; position:absolute; height:10px; z-index:2; diff --git a/lib/WebGUI/Asset/Wobject/ProjectManager.pm b/lib/WebGUI/Asset/Wobject/ProjectManager.pm index 90de3d243..e6cff9914 100644 --- a/lib/WebGUI/Asset/Wobject/ProjectManager.pm +++ b/lib/WebGUI/Asset/Wobject/ProjectManager.pm @@ -1538,7 +1538,7 @@ sub www_drawGanttChart { # Lerp RGB: probably not the best way, but it's good enough. my @zerolag_color = (0x7a, 0xb7, 0xe9); - my @alllag_color = (0xc8, 0x2f, 0xd2); + my @alllag_color = (0x7a, 0xb7, 0xe9); $hash->{'task.div.color'} = sprintf "#%02x%02x%02x", ($totalDuration > 0)? do { my $lerp = $lagTime / $totalDuration;