Skip to content

Commit

Permalink
Use --accent-color for running steps in the Console View (#345)
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartrowe authored Feb 22, 2024
1 parent f9249de commit ef989d1
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

:root {
--card-background: hsl(212, 30%, 96%);
--step-bg-running: var(--accent-color);
--step-bg-success: var(--success-color);
--step-bg-unstable: var(--warning-color);
--step-bg-failure: var(--error-color);
Expand Down Expand Up @@ -297,8 +298,11 @@ div.detail-element {
cursor: pointer;
}

.step-header-success,
.step-header-running {
background: var(--step-bg-running) !important;
}

.step-header-success {
background: var(--step-bg-success) !important;
}

Expand Down

0 comments on commit ef989d1

Please sign in to comment.