Signed-off-by: Giuseppe Bilotta <giuseppe.bilotta@xxxxxxxxx> --- gitweb/gitweb.css | 5 +++++ gitweb/gitweb.perl | 2 +- 2 files changed, 6 insertions(+), 1 deletions(-) diff --git a/gitweb/gitweb.css b/gitweb/gitweb.css index c36b20a..59ca071 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -498,6 +498,11 @@ span.refs span.head { border-color: #ccffcc #00cc33 #00cc33 #ccffcc; } +span.refs span.detached { + background-color: #ffaaaa; + border-color: #ccffcc #00cc33 #00cc33 #ccffcc; +} + span.atnight { color: #cc0000; } diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 4f7b7da..2c8a665 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -1690,7 +1690,7 @@ sub git_get_references { my %refs; if (git_is_head_detached()) { my $hash = git_get_head_hash($project); - $refs{$hash} = [ 'HEAD' ]; + $refs{$hash} = [ 'detached/HEAD' ]; } # 5dc01c595e6c6ec9ccda4f6f69c131c0dd945f8c refs/tags/v2.6.11 # c39ae07f393806ccf406ef966e9a15afc43cc36a refs/tags/v2.6.11^{} -- 1.5.2.5 - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html