summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--cgit.css14
-rw-r--r--ui-repolist.c7
2 files changed, 12 insertions, 9 deletions
diff --git a/cgit.css b/cgit.css
index 85815c1..459dca7 100644
--- a/cgit.css
+++ b/cgit.css
@@ -9,5 +9,5 @@ body {
9 9
10h2 { 10h2 {
11 font-size: normal; 11 font-size: 100%;
12 font-weight: bold; 12 font-weight: bold;
13 margin-bottom: 0.1em; 13 margin-bottom: 0.1em;
@@ -32,8 +32,8 @@ table.list tr {
32} 32}
33table.list tr:hover { 33table.list tr:hover {
34 background: #eee; 34 background: #eeb;
35} 35}
36table.list th { 36table.list th {
37 font-weight: bold; 37 font-weight: normal;
38 background: #ddd; 38 background: #ddd;
39 border-bottom: solid 1px #aaa; 39 border-bottom: solid 1px #aaa;
@@ -51,10 +51,11 @@ img {
51 51
52div#header { 52div#header {
53 background-color: #eee; 53 background-color: #ddd;
54 padding: 0.25em 0.25em 0.25em 0.5em; 54 padding: 0.25em 0.25em 0.25em 0.5em;
55 font-size: 150%; 55 font-size: 150%;
56 font-weight: bold; 56 font-weight: bold;
57 border: solid 1px #ccc; 57 border: solid 1px #aaa;
58 vertical-align: middle; 58 vertical-align: middle;
59 margin-bottom: 2em;
59} 60}
60div#header img#logo { 61div#header img#logo {
@@ -96,6 +97,5 @@ td.filemode {
96td.blob { 97td.blob {
97 white-space: pre; 98 white-space: pre;
98 font-family: courier; 99 font-family: monospace;
99 font-size: 100%;
100 background-color: white; 100 background-color: white;
101} 101}
diff --git a/ui-repolist.c b/ui-repolist.c
index 1fe7059..7090c12 100644
--- a/ui-repolist.c
+++ b/ui-repolist.c
@@ -28,6 +28,9 @@ void cgit_print_repolist(struct cacheitem *item)
28 28
29 html("<h2>Repositories</h2>\n"); 29 html("<h2>Repositories</h2>\n");
30 html("<table class='list'>"); 30 html("<table class='list nowrap'>");
31 html("<tr><th>Name</th><th>Description</th><th>Owner</th></tr>\n"); 31 html("<tr>"
32 "<th class='left'>Name</th>"
33 "<th class='left'>Description</th>"
34 "<th class='left'>Owner</th></tr>\n");
32 while ((de = readdir(d)) != NULL) { 35 while ((de = readdir(d)) != NULL) {
33 if (de->d_name[0] == '.') 36 if (de->d_name[0] == '.')