Change colors of various "negative" results in UI

Some job results like RETRY_LIMIT, NODE_FAILURE and POST_FAILURE are
often indicators for problems regarding infrastructure, network or node
provisioning via OpenStack. Unfortunately, they are not that visible on
the zuul status page and often get lost between those PAUSED, QUEUED
and WAITING jobs.

To still differentiate from FAILED builds, I used the orange color
instead of red.

Change-Id: Icbd22a373e4355d3555759214605ab07918cd39b
This commit is contained in:
Felix Schmidt 2019-10-29 07:49:10 +01:00
parent be8d520539
commit 7acabe2601
No known key found for this signature in database
GPG Key ID: E95717A102DD3030
1 changed files with 3 additions and 0 deletions

View File

@ -216,6 +216,9 @@ class ChangePanel extends React.Component {
className = 'label-danger'
break
case 'unstable':
case 'retry_limit':
case 'post_failure':
case 'node_failure':
className = 'label-warning'
break
case 'paused':