Minor style fixes

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
lh/pretty-blob-view
Lars Hjemli 18 years ago
parent 2efee09abe
commit c43f1246cb

@ -8,7 +8,7 @@ body {
h2 { h2 {
font-size: normal; font-size: 100%;
font-weight: bold; font-weight: bold;
margin-bottom: 0.1em; margin-bottom: 0.1em;
} }
@ -31,10 +31,10 @@ table.list tr {
background: white; background: white;
} }
table.list tr:hover { table.list tr:hover {
background: #eee; background: #eeb;
} }
table.list th { table.list th {
font-weight: bold; font-weight: normal;
background: #ddd; background: #ddd;
border-bottom: solid 1px #aaa; border-bottom: solid 1px #aaa;
padding: 0.1em 0.5em 0.1em 0.5em; padding: 0.1em 0.5em 0.1em 0.5em;
@ -50,12 +50,13 @@ img {
div#header { div#header {
background-color: #eee; background-color: #ddd;
padding: 0.25em 0.25em 0.25em 0.5em; padding: 0.25em 0.25em 0.25em 0.5em;
font-size: 150%; font-size: 150%;
font-weight: bold; font-weight: bold;
border: solid 1px #ccc; border: solid 1px #aaa;
vertical-align: middle; vertical-align: middle;
margin-bottom: 2em;
} }
div#header img#logo { div#header img#logo {
float: right; float: right;
@ -95,8 +96,7 @@ td.filemode {
td.blob { td.blob {
white-space: pre; white-space: pre;
font-family: courier; font-family: monospace;
font-size: 100%;
background-color: white; background-color: white;
} }

@ -27,8 +27,11 @@ void cgit_print_repolist(struct cacheitem *item)
} }
html("<h2>Repositories</h2>\n"); html("<h2>Repositories</h2>\n");
html("<table class='list'>"); html("<table class='list nowrap'>");
html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\n"); html("<tr>"
"<th class='left'>Name</th>"
"<th class='left'>Description</th>"
"<th class='left'>Owner</th></tr>\n");
while ((de = readdir(d)) != NULL) { while ((de = readdir(d)) != NULL) {
if (de->d_name[0] == '.') if (de->d_name[0] == '.')
continue; continue;

Loading…
Cancel
Save