fix: Fix color discrepancies for executions list items (#5640)

fix color discrepancies for exec items
This commit is contained in:
romainminaud 2023-03-08 12:28:23 +01:00 committed by GitHub
parent 419969c0d7
commit c81656d149
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1118,24 +1118,24 @@ export default mixins(externalHooks, genericHelpers, executionHelpers, restApi,
&.crashed td:first-child::before,
&.failed td:first-child::before {
background: var(--color-danger);
background: hsl(var(--color-danger-h), 94%, 80%);
}
&.success td:first-child::before {
background: var(--color-success);
background: hsl(var(--color-success-h), 60%, 70%);
}
&.new td:first-child::before,
&.running td:first-child::before {
background: var(--color-warning);
background: hsl(var(--color-warning-h), 94%, 80%);
}
&.waiting td:first-child::before {
background: var(--color-secondary);
background: hsl(var(--color-secondary-h), 94%, 80%);
}
&.unknown td:first-child::before {
background: var(--color-background-dark);
background: var(--color-text-light);
}
}
}