mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
update executions list
This commit is contained in:
parent
3986446363
commit
c46ac9e2c5
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue