Author: Lars Hjemli <hjemli@gmail.com>
Make repo header a link to summary page Signed-off-by: Lars Hjemli <hjemli@gmail.com>
cgit.css | 9 ++++++++- ui-shared.c | 4 ++++
diff --git a/cgit.css b/cgit.css index 3579598c7dfc105745211d8f2bbd0c20b85b9268..382964a0418f45e299b79e4b3d56fd53ec12c120 100644 --- a/cgit.css +++ b/cgit.css @@ -13,6 +13,14 @@ font-weight: bold; margin-bottom: 0.1em; } +a { + color: blue; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} table.list { border: solid 1px black; @@ -46,7 +54,6 @@ font-weight: bold; border: solid 1px #aaa; vertical-align: middle; } - div#header img#logo { float: right; } diff --git a/ui-shared.c b/ui-shared.c index 1a6c127a3b657b96b88df72c9eeb445320b0a46e..9ec4be8661928e7412df78595e4048642c747f74 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -104,6 +104,10 @@ html(""); 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>"); }