Skip to content

Commit

Permalink
Add Aborted label
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Oertel <[email protected]>
  • Loading branch information
fudler committed Jun 25, 2024
1 parent 1f37d32 commit ea8b819
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions legacy/src/css/jgivenreport.css
Original file line number Diff line number Diff line change
Expand Up @@ -474,6 +474,10 @@ table.steps tr.steps:hover .nested-step .step-expand-icon {
color: #aaa !important;
}

.ABORTED {
color: #aaa;
}

.PASSED {
}

Expand All @@ -489,6 +493,11 @@ table.steps tr.steps:hover .nested-step .step-expand-icon {
font-size: 0.7rem !important;
}

.aborted {
color: #aaa;
font-size: 0.7rem;
}

.collapsed {
display: none;
}
Expand All @@ -505,6 +514,10 @@ table.steps tr.steps:hover .nested-step .step-expand-icon {
color: gray !important;
}

.word.ABORTED {
color: gray;
}

.argument {
color: black;
font-shadow: 1px 1px 1px gray;
Expand Down
1 change: 1 addition & 0 deletions legacy/src/public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,7 @@
<i ng-if="step.status === 'SKIPPED'" class="skipped fa fa-ban"></i>
<i ng-if="step.status === 'PENDING'" title="Pending"
class="skipped fa fa-ban"></i>
<i ng-if="step.status === 'ABORTED'" class="aborted fa fa-exclamation-circle"></i>
</span>
<span ng-if="step.durationInNanos > 10000000"
class="duration"> ({{ ::nanosToReadableUnit(step.durationInNanos) }})</span>
Expand Down

0 comments on commit ea8b819

Please sign in to comment.