Author: Lars Hjemli <hjemli@gmail.com>
Minor style fixes Signed-off-by: Lars Hjemli <hjemli@gmail.com>
cgit.css | 14 +++++++------- ui-repolist.c | 7 +++++--
diff --git a/cgit.css b/cgit.css index 85815c1afda284b8e0bf4e88e3d0ba48ba5f5c4b..459dca7472fb348cc269a6439252f17b0e812382 100644 --- a/cgit.css +++ b/cgit.css @@ -8,7 +8,7 @@ } h2 { - font-size: normal; + font-size: 100%; font-weight: bold; margin-bottom: 0.1em; } @@ -31,10 +31,10 @@ 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; @@ -50,12 +50,13 @@ } 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; @@ -95,8 +96,7 @@ } td.blob { white-space: pre; - font-family: courier; - font-size: 100%; + font-family: monospace; background-color: white; } diff --git a/ui-repolist.c b/ui-repolist.c index 1fe70590452dc997d6c60fe7a62fcb374cc12156..7090c127c46b7edcaaaf04404cb464a34295f9ad 100644 --- a/ui-repolist.c +++ b/ui-repolist.c @@ -27,8 +27,11 @@ 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;