diff options
author | Romain d'Alverny <rda@mageia.org> | 2012-03-05 17:49:51 +0000 |
---|---|---|
committer | Romain d'Alverny <rda@mageia.org> | 2012-03-05 17:49:51 +0000 |
commit | dbbb1feebd74e38c0075911795e285c7b0864bc0 (patch) | |
tree | 66f21b8526d27d544ad4542ee9be483ad071ba82 | |
parent | f1b2fbc3eab56a244f27023916495909bfba675a (diff) | |
download | pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar.gz pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar.bz2 pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.tar.xz pkgsubmit-dbbb1feebd74e38c0075911795e285c7b0864bc0.zip |
drop unused "built" status; different color for "rejected"
-rw-r--r-- | index.php | 11 |
1 files changed, 5 insertions, 6 deletions
@@ -212,8 +212,7 @@ $stats = array( 'failure' => 0, 'todo' => 0, 'building' => 0, - 'partial' => 0, - 'built' => 0, + 'partial' => 0 ); $total = count($pkgs); @@ -286,19 +285,19 @@ header(sprintf('X-BS-Buildtime-Average: %5.2f', $buildtime_avg)); tr { background: transparent; } tr.uploaded { background: #bbffbb; } - tr.failure, tr.rejected { background: #ffbbbb; } + tr.failure { background: #cc8888; } + tr.rejected { background: #B68A8A; } tr.todo { background: white; } tr.building { background: #ffff99; } tr.partial { background: #bbbbff; } - tr.built { background: #cceeff; } td.status-box { width: 1em; height: 1em; } tr.uploaded td.status-box { background: green; } - tr.failure td.status-box, tr.rejected td.status-box { background: red; } + tr.failure td.status-box { background: red; } + tr.rejected td.status-box { background: brown; } tr.todo td.status-box { background: white; } tr.building td.status-box { background: yellow; } tr.partial td.status-box { background: blue; } - tr.built td.status-box { background: #00ccff; } #stats { float: right; } #score { margin-bottom: 2em; font-family: Helvetica, Verdana, Arial, sans-serif; } |