Merge pull request #1957 from jumpserver/dev

v2.24.0-rc5
This commit is contained in:
Jiangjie.Bai 2022-07-20 19:06:03 +08:00 committed by GitHub
commit f137788c1a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 2 deletions

View File

@ -389,6 +389,13 @@ td .el-button.el-button--mini {
border-color: danger;
}
.el-button--danger.is-plain.is-disabled,
.el-button--danger.is-plain.is-disabled:active,
.el-button--danger.is-plain.is-disabled:focus,
.el-button--danger.is-plain.is-disabled:hover {
color: white;
}
.el-alert .el-alert__description {
margin: 1px 0 0;
}

View File

@ -49,7 +49,7 @@ export default {
formatter: function(row, column, cellValue, index) {
const label = index + 1
const route = { to: { name: 'SessionDetail', params: { id: row.id }}}
return <router-link {...{ attrs: route }}>{ label }</router-link>
return <router-link {...{ attrs: route }} class='link'>{ label }</router-link>
}
},
user: {
@ -138,5 +138,7 @@ export default {
</script>
<style scoped>
.link {
color: var(--color-info);
}
</style>