summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2006-12-15 23:49:37 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2006-12-15 23:49:37 (UTC)
commit0de2055b75735986ff04aed8f534ecf06248e5e1 (patch) (unidiff)
tree94ce451dd85e25de38216f6c5da2aac5209c08da
parent148fb9622c6a96021e572d1a372e38896506031f (diff)
downloadcgit-0de2055b75735986ff04aed8f534ecf06248e5e1.zip
cgit-0de2055b75735986ff04aed8f534ecf06248e5e1.tar.gz
cgit-0de2055b75735986ff04aed8f534ecf06248e5e1.tar.bz2
Make repo header a link to summary page
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css9
-rw-r--r--ui-shared.c4
2 files changed, 12 insertions, 1 deletions
diff --git a/cgit.css b/cgit.css
index 3579598..382964a 100644
--- a/cgit.css
+++ b/cgit.css
@@ -15,2 +15,10 @@ h2 {
15 15
16a {
17 color: blue;
18 text-decoration: none;
19}
20
21a:hover {
22 text-decoration: underline;
23}
16 24
@@ -48,3 +56,2 @@ div#header {
48} 56}
49
50div#header img#logo { 57div#header img#logo {
diff --git a/ui-shared.c b/ui-shared.c
index 1a6c127..9ec4be8 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -106,3 +106,7 @@ void cgit_print_pageheader(char *title)
106 htmlf("</a>"); 106 htmlf("</a>");
107 if (cgit_query_repo)
108 htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo));
107 html_txt(title); 109 html_txt(title);
110 if (cgit_query_repo)
111 html("</a>");
108 html("</div>"); 112 html("</div>");