From 2aef89e5da436f2bc9670d96ccbc5ff1c2b8355c Mon Sep 17 00:00:00 2001
From: Lars Hjemli
Date: Fri, 18 May 2007 23:17:09 +0200
Subject: Don't highlight repogroup headings

Specify class='nohover' to avoid highlighting this row.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
---
 ui-repolist.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui-repolist.c b/ui-repolist.c
index a884c20..8724589 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -30,7 +30,7 @@ void cgit_print_repolist(struct cacheitem *item)
 		    (last_group != NULL && repo->group == NULL) ||
 		    (last_group != NULL && repo->group!= NULL &&
 		     strcmp(repo->group, last_group))) {
-			html("<tr><td colspan='4' class='repogroup'>");
+			html("<tr class='nohover'><td colspan='4' class='repogroup'>");
 			html_txt(repo->group);
 			html("</td></tr>");
 			last_group = repo->group;
-- 
cgit v1.2.3-54-g00ecf