Skip to content

Commit

Permalink
chore(JGIVEN-28): more consistent color scheme for aborted / pending
Browse files Browse the repository at this point in the history
Signed-off-by: l-1squared <[email protected]>
  • Loading branch information
l-1squared committed Dec 13, 2024
1 parent 669d69a commit dc15eb8
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions legacy/src/css/jgivenreport.css
Original file line number Diff line number Diff line change
Expand Up @@ -471,30 +471,37 @@ table.steps tr.steps:hover .nested-step .step-expand-icon {
}

.SKIPPED, .PENDING {
color: #aaa !important;
color: #c0c0c0!important;
}

.ABORTED {
color: #aaa;
color: #4D5360;
}

.PASSED {
}

.label.aborted{
vertical-align: middle;
margin-bottom: 0.1rem;
background-color: #4D5360;
color: white;
}

.label.pending {
vertical-align: middle;
margin-bottom: 0.1rem;
background-color: #555;
background-color: #c0c0c0;
color: white;
}

.skipped {
color: #aaa;
color: #c0c0c0;
font-size: 0.7rem !important;
}

.aborted {
color: #aaa;
color: #4D5360;
}

.collapsed {
Expand Down

0 comments on commit dc15eb8

Please sign in to comment.