Skip to content

Commit

Permalink
Merge pull request #887 from hcoles/css_fix
Browse files Browse the repository at this point in the history
add missing upper case styles
  • Loading branch information
hcoles authored Apr 26, 2021
2 parents bdba92f + 0c8bacf commit d0a101f
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ body{
font-family: Consolas, Courier, monospace;
}

.covered {
.covered, .COVERED {
background-color: #ddffdd;
}

.uncovered {
.uncovered, .UNCOVERED {
background-color: #ffdddd;
}

Expand All @@ -41,35 +41,35 @@ body{
background-color: #ffaaaa;
}

.uncertain {
.uncertain, .UNCERTAIN {
background-color: #dde7ef;
}

.run_error {
.run_error, .RUN_ERROR {
background-color: #dde7ef;
}

.na {
background-color: #eeeeee;
}

.timed_out {
.timed_out, .TIMED_OUT {
background-color: #dde7ef;
}

.non_viable {
.non_viable, .NON_VIABLE {
background-color: #aaffaa;
}

.memory_error {
.memory_error, .MEMORY_ERROR {
background-color: #dde7ef;
}

.not_started {
.not_started, .NO_STARTED {
background-color: #dde7ef; color : red
}

.no_coverage {
.no_coverage, .NO_COVERAGE {
background-color: #ffaaaa;
}

Expand Down

0 comments on commit d0a101f

Please sign in to comment.