From c81656d149764dc398b93d3eb8626a402eddb0ef Mon Sep 17 00:00:00 2001 From: romainminaud Date: Wed, 8 Mar 2023 12:28:23 +0100 Subject: [PATCH] fix: Fix color discrepancies for executions list items (#5640) fix color discrepancies for exec items --- packages/editor-ui/src/components/ExecutionsList.vue | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/editor-ui/src/components/ExecutionsList.vue b/packages/editor-ui/src/components/ExecutionsList.vue index b890db34c..82815dcd9 100644 --- a/packages/editor-ui/src/components/ExecutionsList.vue +++ b/packages/editor-ui/src/components/ExecutionsList.vue @@ -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); } } }