mirror of
https://github.com/jumpserver/lina.git
synced 2025-08-30 22:02:24 +00:00
commit
f137788c1a
@ -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;
|
||||
}
|
||||
|
@ -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>
|
||||
|
Loading…
Reference in New Issue
Block a user