diff options
| -rw-r--r-- | style.css | 2 | ||||
| -rw-r--r-- | test_index.php | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -36,7 +36,7 @@ tr.partial td.status-box { background: blue; } .timeinfo { font-size: 85%; text-align: right; color: #444444; } .number, .percent { text-align: right; } -#stats { float: right; } +#stats { float: right; border-left: 1px solid #f0f0f0; } #score { margin-bottom: 2em; font-family: Helvetica, Verdana, Arial, sans-serif; } #score-box { width: 100px; height: 100px; background: #faa; } #score-meter { width: 100px; background: #afa; } diff --git a/test_index.php b/test_index.php index 5a89795..992370c 100644 --- a/test_index.php +++ b/test_index.php @@ -346,7 +346,8 @@ if ($total > 0) { $s = '<div id="stats"> <div id="status-chart"></div>'; - $s .= '<table style="width: 80%"><caption>Packagers</caption><tr><th>User</th><th>Packages</th></tr>'; + // Packagers stats + $s .= '<table style="width: 70%; margin: 0 auto;"><caption>Packagers</caption><tr><th>User</th><th>Packages</th></tr>'; arsort($users); foreach ($users as $k => $v) { $s .= sprintf('<tr><td><a href="/?user=%s">%s</a></td><td>%d</td></tr>', |
