Deactivate shading representation of lag time, and remove redundant

background-color specification in the CSS to avoid confusion.
This commit is contained in:
Drake 2006-09-07 22:57:17 +00:00
parent 1788eaae13
commit a2521f0472
2 changed files with 1 additions and 2 deletions

View file

@ -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;