mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
fix: Fix color discrepancies for executions list items (#5640)
fix color discrepancies for exec items
This commit is contained in:
parent
419969c0d7
commit
c81656d149
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue