commit | 3103a849a334d5c3def12a5a861a7f72e656dff5 | [log] [tgz] |
---|---|---|
author | Alexander Evseev <aevseev@mirantis.com> | Tue Nov 17 10:12:45 2015 +0300 |
committer | Alexander Evseev <aevseev@mirantis.com> | Tue Nov 17 10:12:45 2015 +0300 |
tree | d135ee98d6c2ea617a9b9a88188a4194aa924ca0 | |
parent | 7317023805de524b7bc35032894beae7722ecd84 [diff] [blame] |
Add style for skipped jobs By default is used white font on white background. Add class 'label-info' for skipped jobs. Change-Id: I33afaca27d202631271b6244116f0df36670a4ac
diff --git a/etc/status/public_html/jquery.zuul.js b/etc/status/public_html/jquery.zuul.js index 0ca2718..c63700a 100644 --- a/etc/status/public_html/jquery.zuul.js +++ b/etc/status/public_html/jquery.zuul.js
@@ -145,6 +145,9 @@ case 'unstable': $status.addClass('label-warning'); break; + case 'skipped': + $status.addClass('label-info'); + break; case 'in progress': case 'queued': case 'lost':