aboutsummaryrefslogtreecommitdiff
diff refs
from: back
to: back
| flip
diff options
context:
space:
mode:
-rw-r--r--cgit.css14
-rw-r--r--ui-repolist.c7
2 files changed, 9 insertions, 12 deletions
diff --git a/cgit.css b/cgit.css
index 459dca7..85815c1 100644
--- a/cgit.css
+++ b/cgit.css
@@ -8,7 +8,7 @@ body {
h2 {
- font-size: 100%;
+ font-size: normal;
font-weight: bold;
margin-bottom: 0.1em;
}
@@ -31,10 +31,10 @@ table.list tr {
background: white;
}
table.list tr:hover {
- background: #eeb;
+ background: #eee;
}
table.list th {
- font-weight: normal;
+ font-weight: bold;
background: #ddd;
border-bottom: solid 1px #aaa;
padding: 0.1em 0.5em 0.1em 0.5em;
@@ -50,13 +50,12 @@ img {
div#header {
- background-color: #ddd;
+ background-color: #eee;
padding: 0.25em 0.25em 0.25em 0.5em;
font-size: 150%;
font-weight: bold;
- border: solid 1px #aaa;
+ border: solid 1px #ccc;
vertical-align: middle;
- margin-bottom: 2em;
}
div#header img#logo {
float: right;
@@ -96,7 +95,8 @@ td.filemode {
td.blob {
white-space: pre;
- font-family: monospace;
+ font-family: courier;
+ font-size: 100%;
background-color: white;
}
diff --git a/ui-repolist.c b/ui-repolist.c
index 7090c12..1fe7059 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -27,11 +27,8 @@ void cgit_print_repolist(struct cacheitem *item)
}
html("<h2>Repositories</h2>\n");
- html("<table class='list nowrap'>");
- html("<tr>"
- "<th class='left'>Name</th>"
- "<th class='left'>Description</th>"
- "<th class='left'>Owner</th></tr>\n");
+ html("<table class='list'>");
+ html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\n");
while ((de = readdir(d)) != NULL) {
if (de->d_name[0] == '.')
continue;