summaryrefslogtreecommitdiffabout
Unidiff
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>");