-rw-r--r-- | cgit.css | 14 | ||||
-rw-r--r-- | ui-repolist.c | 7 |
2 files changed, 12 insertions, 9 deletions
@@ -3,17 +3,17 @@ body { font-size: normal; background: white; padding: 0em; margin: 0.5em 1em; } h2 { - font-size: normal; + font-size: 100%; font-weight: bold; margin-bottom: 0.1em; } a { color: blue; text-decoration: none; } @@ -26,41 +26,42 @@ table.list { border: solid 1px black; border-collapse: collapse; border: solid 1px #aaa; } table.list tr { background: white; } table.list tr:hover { - background: #eee; + background: #eeb; } table.list th { - font-weight: bold; + font-weight: normal; 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; } img { border: none; } div#header { - background-color: #eee; + background-color: #ddd; padding: 0.25em 0.25em 0.25em 0.5em; font-size: 150%; font-weight: bold; - border: solid 1px #ccc; + border: solid 1px #aaa; vertical-align: middle; + margin-bottom: 2em; } div#header img#logo { float: right; } div#header a { color: black; } @@ -90,18 +91,17 @@ td.filesize { font-family: monospace; } td.filemode { font-family: monospace; } td.blob { white-space: pre; - font-family: courier; - font-size: 100%; + font-family: monospace; background-color: white; } table.nowrap td { white-space: nowrap; } table.commit-info { diff --git a/ui-repolist.c b/ui-repolist.c index 1fe7059..7090c12 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -22,18 +22,21 @@ void cgit_print_repolist(struct cacheitem *item) if (!(d = opendir("."))) { cgit_print_error(fmt("Unable to scan repository directory: %s", strerror(errno))); cgit_print_docend(); return; } html("<h2>Repositories</h2>\n"); - html("<table class='list'>"); - html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\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"); while ((de = readdir(d)) != NULL) { if (de->d_name[0] == '.') continue; if (stat(de->d_name, &st) < 0) continue; if (!S_ISDIR(st.st_mode)) continue; |