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 751749f..c0c4540 100644 --- a/gitweb/gitweb.css +++ b/gitweb/gitweb.css @@ -523,6 +523,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 256c962..51e133d 100755 --- a/gitweb/gitweb.perl +++ b/gitweb/gitweb.perl @@ -2298,7 +2298,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.6.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