gitweb: make "No commits" in project list gray, not bold green
A missing return statement in git_get_last_activity made gitweb think a project with no commits was in age class "age0", so the "No commits" appeared in bold green, which was ridiculous. I added the return so those projects get "noage" and added a block to gitweb.css to format the "No commits" text gray. Signed-off-by: Matt McCutchen <hashproduct@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
40375a83d2
commit
c956395e2b
@ -281,6 +281,12 @@ table.diff_tree span.file_status.copied {
|
|||||||
color: #70a070;
|
color: #70a070;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* noage: "No commits" */
|
||||||
|
table.project_list td.noage {
|
||||||
|
color: #808080;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
/* age2: 60*60*24*2 <= age */
|
/* age2: 60*60*24*2 <= age */
|
||||||
table.project_list td.age2, table.blame td.age2 {
|
table.project_list td.age2, table.blame td.age2 {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
@ -1526,6 +1526,7 @@ sub git_get_last_activity {
|
|||||||
my $age = time - $timestamp;
|
my $age = time - $timestamp;
|
||||||
return ($age, age_string($age));
|
return ($age, age_string($age));
|
||||||
}
|
}
|
||||||
|
return (undef, undef);
|
||||||
}
|
}
|
||||||
|
|
||||||
sub git_get_references {
|
sub git_get_references {
|
||||||
|
Reference in New Issue
Block a user