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>
</template>
</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">
<el-tooltip placement="top" effect="light">
@ -692,23 +692,18 @@ export default mixins(
font-size: 12px;
&.error {
background-color: $--custom-error-background;
color: $--custom-error-text;
}
&.running {
background-color: $--custom-running-background;
color: $--custom-running-text;
background-color: var(--color-danger-tint-1);
color: var(--color-danger);
}
&.success {
background-color: $--custom-success-background;
color: $--custom-success-text;
background-color: var(--color-success-tint-1);
color: var(--color-success);
}
&.warning {
background-color: $--custom-warning-background;
color: $--custom-warning-text;
&.running, &.warning {
background-color: var(--color-warning-tint-1);
color: var(--color-warning);
}
}

View file

@ -13,7 +13,7 @@
</el-input>
</el-col>
<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-row>
</template>