-rw-r--r-- | cgit.css | 9 | ||||
-rw-r--r-- | ui-shared.c | 4 |
2 files changed, 12 insertions, 1 deletions
@@ -1,97 +1,104 @@ body { font-family: arial; font-size: normal; background: white; padding: 0em; margin: 0.5em; } h2 { font-size: normal; font-weight: bold; margin-bottom: 0.1em; } +a { + color: blue; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} table.list { border: solid 1px black; border-collapse: collapse; border: solid 1px #aaa; } table.list th { font-weight: bold; background: #ddd; border-bottom: solid 1px #aaa; padding: 0.1em 0.5em 0.1em 0.5em; vertical-align: baseline; } table.list td { border: none; padding: 0.1em 0.5em 0.1em 0.5em; background: white; } img { border: none; } div#header { background-color: #ddd; padding: 0.25em 0.25em 0.25em 0.5em; font-size: 150%; font-weight: bold; border: solid 1px #aaa; vertical-align: middle; } - div#header img#logo { float: right; } div#content { margin: 0.5em 0.5em; } div#blob { border: solid 1px black; } div.error { color: red; font-weight: bold; margin: 1em 2em; } div.ls-dir a { font-weight: bold; } th.filesize, td.filesize { text-align: right; } th.filemode, td.filemode { text-align: center; } td.blob { white-space: pre; font-family: courier; font-size: 100%; } table.log td { white-space: nowrap; } table.commit-info { border-collapse: collapse; margin-top: 1em; } table.commit-info th { text-align: left; font-weight: normal; padding: 0.1em 1em 0.1em 0.1em; } table.commit-info td { diff --git a/ui-shared.c b/ui-shared.c index 1a6c127..9ec4be8 100644 --- a/ui-shared.c +++ b/ui-shared.c @@ -59,51 +59,55 @@ char *cgit_pageurl(const char *reponame, const char *pagename, return fmt("?r=%s&p=%s&%s", reponame, pagename, query); } } void cgit_print_date(unsigned long secs) { char buf[32]; struct tm *time; time = gmtime(&secs); strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", time); html_txt(buf); } void cgit_print_docstart(char *title, struct cacheitem *item) { html("Content-Type: text/html; charset=utf-8\n"); htmlf("Last-Modified: %s\n", http_date(item->st.st_mtime)); htmlf("Expires: %s\n", http_date(item->st.st_mtime + ttl_seconds(item->ttl))); html("\n"); html(cgit_doctype); html("<html>\n"); html("<head>\n"); html("<title>"); html_txt(title); html("</title>\n"); htmlf("<meta name='generator' content='cgit v%s'/>\n", cgit_version); html("<link rel='stylesheet' type='text/css' href='"); html_attr(cgit_css); html("'/>\n"); html("</head>\n"); html("<body>\n"); } void cgit_print_docend() { html("</body>\n</html>\n"); } void cgit_print_pageheader(char *title) { html("<div id='header'>"); 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>"); } |