diff options
| author | Lars Hjemli <hjemli@gmail.com> | 2006-12-16 00:49:37 +0100 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2006-12-16 00:49:37 +0100 | 
| commit | 0de2055b75735986ff04aed8f534ecf06248e5e1 (patch) | |
| tree | 94ce451dd85e25de38216f6c5da2aac5209c08da | |
| parent | Move cgit_print_date into ui-shared, reuse in ui-summary (diff) | |
| download | cgit-0de2055b75735986ff04aed8f534ecf06248e5e1.tar.gz cgit-0de2055b75735986ff04aed8f534ecf06248e5e1.tar.bz2 cgit-0de2055b75735986ff04aed8f534ecf06248e5e1.zip | |
Make repo header a link to summary page
Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to '')
| -rw-r--r-- | cgit.css | 9 | ||||
| -rw-r--r-- | ui-shared.c | 4 | 
2 files changed, 12 insertions, 1 deletions
| @@ -13,6 +13,14 @@ h2 {  	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 @@ 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 1a6c127..9ec4be8 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -104,6 +104,10 @@ 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>");  } | 
