Skip to content

Commit

Permalink
fix(netflix): Fix yellow colors to not cause text to be unreadable
Browse files Browse the repository at this point in the history
  • Loading branch information
jrsquared committed Mar 29, 2017
1 parent 3dcf5f0 commit ba751bf
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
@text_error: darken(@unhealthy_red, 20%);
@alert-background: #EBCCD1;

@unhealthy_orange: #F0AD4E;
@unhealthy_orange: #E08D29;
@unhealthy_yellow: #EEBB3C;
@warning-background: #faebcc;

@spinnaker-link-color: #229cb3;
Expand All @@ -65,7 +66,7 @@

@stage-succeeded: #769D3E;
@stage-terminal: #b82525;
@stage-failed_continue: #ffe63b;
@stage-failed_continue: #EEDC3C;
@stage-stopped: lighten(@unhealthy_red, 33%);
@stage-running: #229cb3;
@stage-default: #cccccc;
Expand Down
4 changes: 2 additions & 2 deletions app/scripts/modules/netflix/availability/availability.less
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@
background-color: @healthy_green_border !important;
}
.aggregate-score-2 {
background-color: @stage-failed_continue !important;
background-color: @unhealthy_yellow !important;
}
.aggregate-score-3 {
background-color: @unhealthy_orange !important;
Expand Down Expand Up @@ -202,7 +202,7 @@
color: @healthy_green_border;
}
.score-color-2 {
color: @stage-failed_continue;
color: @unhealthy_yellow;
}
.score-color-3 {
color: @unhealthy_orange;
Expand Down
2 changes: 1 addition & 1 deletion app/scripts/modules/netflix/whatsNew/whatsNew.less
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

.navbar-inverse .navbar-nav > li.whats-new > a {
&.unread {
color: @code-yellow;
color: @unhealthy_orange;
@media (min-width: 768px) and (max-width: 992px) {
line-height: 20px;
}
Expand Down

0 comments on commit ba751bf

Please sign in to comment.