Merge branch '33132-change-icon-color' into 'master'

Always render warnings icon in orange

Closes #33132

See merge request !12061
This commit is contained in:
Phil Hughes 2017-06-12 10:58:59 +00:00
commit 9cb3510aed
2 changed files with 9 additions and 5 deletions

View File

@ -19,8 +19,7 @@
overflow: visible;
}
&.ci-failed,
&.ci-failed_with_warnings {
&.ci-failed {
color: $red-500;
border-color: $red-500;
@ -39,8 +38,7 @@
}
}
&.ci-success,
&.ci-success_with_warnings {
&.ci-success {
color: $green-600;
border-color: $green-500;
@ -73,7 +71,9 @@
}
}
&.ci-pending {
&.ci-pending,
&.ci-success_with_warnings,
&.ci-failed_with_warnings {
color: $orange-600;
border-color: $orange-500;

View File

@ -0,0 +1,4 @@
---
title: Render CI statuses with warnings in orange
merge_request:
author: