Skip to content

Commit

Permalink
Merge pull request #8086 from dmarcoux/contrast-build-results-in-proj…
Browse files Browse the repository at this point in the history
…ect-monitor

Improve contrast for all states of build results in striped tables
  • Loading branch information
dmarcoux committed Aug 13, 2019
2 parents 76c8757 + 1cb8a3a commit 5ff9312
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/api/app/assets/stylesheets/webui2/build-results.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,17 +48,25 @@
}

.build-state-scheduled-warning, .build-state-unknown {
color: $yellow;
color: $orange;
}

.table-striped .odd {
.build-state-succeeded {
color: darken($green, 5%);
}

.build-state-scheduled {
color: darken($cyan, 5%);
}

.build-state-unresolvable, .build-state-broken, .build-state-failed {
color: darken($red, 10%);
}

.build-state-scheduled-warning, .build-state-unknown {
color: darken($orange, 5%);
}
}

.repository-state-default {
Expand Down

0 comments on commit 5ff9312

Please sign in to comment.