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
2 changed files with 11 additions and 2 deletions

View File

@@ -389,6 +389,13 @@ td .el-button.el-button--mini {
border-color: danger; 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 { .el-alert .el-alert__description {
margin: 1px 0 0; margin: 1px 0 0;
} }

View File

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