diff options
-rw-r--r-- | cgit.css | 9 | ||||
-rw-r--r-- | ui-shared.c | 4 |
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 | |||
@@ -13,6 +13,14 @@ h2 { | |||
13 | margin-bottom: 0.1em; | 13 | margin-bottom: 0.1em; |
14 | } | 14 | } |
15 | 15 | ||
16 | a { | ||
17 | color: blue; | ||
18 | text-decoration: none; | ||
19 | } | ||
20 | |||
21 | a:hover { | ||
22 | text-decoration: underline; | ||
23 | } | ||
16 | 24 | ||
17 | table.list { | 25 | table.list { |
18 | border: solid 1px black; | 26 | border: solid 1px black; |
@@ -46,7 +54,6 @@ div#header { | |||
46 | border: solid 1px #aaa; | 54 | border: solid 1px #aaa; |
47 | vertical-align: middle; | 55 | vertical-align: middle; |
48 | } | 56 | } |
49 | |||
50 | div#header img#logo { | 57 | div#header img#logo { |
51 | float: right; | 58 | float: right; |
52 | } | 59 | } |
diff --git a/ui-shared.c b/ui-shared.c index 1a6c127..9ec4be8 100644 --- a/ui-shared.c +++ b/ui-shared.c | |||
@@ -104,6 +104,10 @@ void cgit_print_pageheader(char *title) | |||
104 | htmlf("<a href='%s'>", cgit_logo_link); | 104 | htmlf("<a href='%s'>", cgit_logo_link); |
105 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); | 105 | htmlf("<img id='logo' src='%s'/>\n", cgit_logo); |
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>"); |
109 | } | 113 | } |