mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
💄 Improve slightly display of Executions
This commit is contained in:
parent
31cbeae09e
commit
9d01f79778
|
@ -62,8 +62,8 @@
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="Status" width="120">
|
<el-table-column label="Status" width="120" align="center">
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope" align="center">
|
||||||
|
|
||||||
<el-tooltip placement="top" effect="light">
|
<el-tooltip placement="top" effect="light">
|
||||||
<div slot="content" v-html="statusTooltipText(scope.row)"></div>
|
<div slot="content" v-html="statusTooltipText(scope.row)"></div>
|
||||||
|
@ -533,7 +533,7 @@ export default mixins(
|
||||||
}
|
}
|
||||||
|
|
||||||
.el-table tr:hover.currently-running td {
|
.el-table tr:hover.currently-running td {
|
||||||
background-color: #907070 !important;
|
background-color: darken($--color-primary-light, 3% ) !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue