This way the canceled jobs are in black while the runnable (queued) and running jobs are both in blue which is more consistent.
Signed-off-by: Francois Gouget fgouget@codeweavers.com --- testbot/web/WineTestBot.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testbot/web/WineTestBot.css b/testbot/web/WineTestBot.css index 7b6389477..fd6fca359 100644 --- a/testbot/web/WineTestBot.css +++ b/testbot/web/WineTestBot.css @@ -380,14 +380,14 @@ pre
.right { float: right; }
-.queued { color: black; } +.queued { color: darkblue; } .running { color: blue; } .success { color: green; } .badpatch { color: red; } .badbuild { color: red; } .testfail { color: red; } .boterror { color: #e55600; } -.canceled { color: darkblue; } +.canceled { color: black; }
.userrequest { color: #e55600; } .userapproved { color: green; }