Francois Gouget : testbot: Exchange the queued and canceled job colors.
Module: tools Branch: master Commit: 4e9f70dc5940a1d4034f7a6cc758591885cc27bf URL: https://source.winehq.org/git/tools.git/?a=commit;h=4e9f70dc5940a1d4034f7a6c... Author: Francois Gouget <fgouget(a)codeweavers.com> Date: Mon May 16 19:14:57 2022 +0200 testbot: Exchange the queued and canceled job colors. 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(a)codeweavers.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- 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 7b63894..fd6fca3 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; }
participants (1)
-
Alexandre Julliard