update executions list

This commit is contained in:
Mutasem 2021-07-28 14:41:00 +02:00
parent 3986446363
commit c46ac9e2c5
2 changed files with 9 additions and 14 deletions

View file

@ -76,7 +76,7 @@
</span> </span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="Status" width="120" align="center"> <el-table-column label="Status" width="122" align="center">
<template slot-scope="scope" align="center"> <template slot-scope="scope" align="center">
<el-tooltip placement="top" effect="light"> <el-tooltip placement="top" effect="light">
@ -692,23 +692,18 @@ export default mixins(
font-size: 12px; font-size: 12px;
&.error { &.error {
background-color: $--custom-error-background; background-color: var(--color-danger-tint-1);
color: $--custom-error-text; color: var(--color-danger);
}
&.running {
background-color: $--custom-running-background;
color: $--custom-running-text;
} }
&.success { &.success {
background-color: $--custom-success-background; background-color: var(--color-success-tint-1);
color: $--custom-success-text; color: var(--color-success);
} }
&.warning { &.running, &.warning {
background-color: $--custom-warning-background; background-color: var(--color-warning-tint-1);
color: $--custom-warning-text; color: var(--color-warning);
} }
} }

View file

@ -13,7 +13,7 @@
</el-input> </el-input>
</el-col> </el-col>
<el-col :span="14"> <el-col :span="14">
<n8n-button @click="onAddNew" :disabled="disabled" icon="plus" label="Add new" /> <n8n-button @click="onAddNew" :disabled="disabled" icon="plus" label="Add new" size="lg" />
</el-col> </el-col>
</el-row> </el-row>
</template> </template>