summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css9
-rw-r--r--ui-shared.c4
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
@@ -10,12 +10,20 @@ body {
10h2 { 10h2 {
11 font-size: normal; 11 font-size: normal;
12 font-weight: bold; 12 font-weight: bold;
13 margin-bottom: 0.1em; 13 margin-bottom: 0.1em;
14} 14}
15 15
16a {
17 color: blue;
18 text-decoration: none;
19}
20
21a:hover {
22 text-decoration: underline;
23}
16 24
17table.list { 25table.list {
18 border: solid 1px black; 26 border: solid 1px black;
19 border-collapse: collapse; 27 border-collapse: collapse;
20 border: solid 1px #aaa; 28 border: solid 1px #aaa;
21} 29}
@@ -43,13 +51,12 @@ div#header {
43 padding: 0.25em 0.25em 0.25em 0.5em; 51 padding: 0.25em 0.25em 0.25em 0.5em;
44 font-size: 150%; 52 font-size: 150%;
45 font-weight: bold; 53 font-weight: bold;
46 border: solid 1px #aaa; 54 border: solid 1px #aaa;
47 vertical-align: middle; 55 vertical-align: middle;
48} 56}
49
50div#header img#logo { 57div#header img#logo {
51 float: right; 58 float: right;
52} 59}
53 60
54div#content { 61div#content {
55 margin: 0.5em 0.5em; 62 margin: 0.5em 0.5em;
diff --git a/ui-shared.c b/ui-shared.c
index 1a6c127..9ec4be8 100644
--- a/ui-shared.c
+++ b/ui-shared.c
@@ -101,9 +101,13 @@ void cgit_print_docend()
101void cgit_print_pageheader(char *title) 101void cgit_print_pageheader(char *title)
102{ 102{
103 html("<div id='header'>"); 103 html("<div id='header'>");
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}