| -rw-r--r-- | cgit.css | 9 | ||||
| -rw-r--r-- | ui-shared.c | 4 |
2 files changed, 1 insertions, 12 deletions
@@ -13,14 +13,6 @@ h2 { margin-bottom: 0.1em; } -a { - color: blue; - text-decoration: none; -} - -a:hover { - text-decoration: underline; -} table.list { border: solid 1px black; @@ -54,6 +46,7 @@ div#header { border: solid 1px #aaa; vertical-align: middle; } + div#header img#logo { float: right; } diff --git a/ui-shared.c b/ui-shared.c index 9ec4be8..1a6c127 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -104,10 +104,6 @@ void cgit_print_pageheader(char *title) htmlf("<a href='%s'>", cgit_logo_link); htmlf("<img id='logo' src='%s'/>\n", cgit_logo); htmlf("</a>"); - if (cgit_query_repo) - htmlf("<a href='%s'>", cgit_repourl(cgit_query_repo)); html_txt(title); - if (cgit_query_repo) - html("</a>"); html("</div>"); } |