]> git.cameronkatri.com Git - cgit.git/commitdiff
Don't highlight repogroup headings
authorLars Hjemli <hjemli@gmail.com>
Fri, 18 May 2007 21:17:09 +0000 (23:17 +0200)
committerLars Hjemli <hjemli@gmail.com>
Fri, 18 May 2007 21:17:09 +0000 (23:17 +0200)
Specify class='nohover' to avoid highlighting this row.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
ui-repolist.c

index a884c206d31d149ee72af3a52f59527f88dc821f..872458983361fb5917b3b8b2aaea84aeb1ea5163 100644 (file)
@@ -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;