Skip to content

Commit

Permalink
style(streaming): style adjustment
Browse files Browse the repository at this point in the history
  • Loading branch information
Kinplemelon authored and ysfscream committed Dec 10, 2024
1 parent cdeb22b commit f27f07a
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions src/views/Streaming/components/StreamingAuthzDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
v-model="showDialog"
:title="t('Base.createTarget', { target: titleCase(t('Auth.authz')) })"
destroy-on-close
class="streaming-authz-dialog"
width="700px"
>
<StreamingACLForm
Expand Down Expand Up @@ -117,7 +118,7 @@ const rules = computed(() => ({
},
],
operation: createRequiredRule(tl('aclOperation'), 'select'),
permission: createRequiredRule(t('Base.permission'), 'select'),
permission: createRequiredRule(t('Auth.permission'), 'select'),
}))
const isSubmitting = ref(false)
Expand All @@ -143,4 +144,20 @@ const submit = async () => {
}
</script>

<style lang="scss"></style>
<style lang="scss">
.streaming-authz-dialog {
.el-input-group--prepend.is-disabled
.el-input-group__prepend
.el-select
.el-input
.el-input__wrapper {
box-shadow: 1px 0 0 0 var(--el-input-border-color) inset,
-1px 0 0 0 var(--el-input-border-color) inset, 0 1px 0 0 var(--el-input-border-color) inset,
0 -1px 0 0 var(--el-input-border-color) inset;
}
.el-input.is-disabled .el-input-group__prepend,
.el-input.is-disabled .el-input__inner {
cursor: pointer;
}
}
</style>

0 comments on commit f27f07a

Please sign in to comment.