fix(UI): missing bottom border radius in status panel (#1106)
This commit is contained in:
parent
829e7a497d
commit
ff37c7de32
@ -1,5 +1,3 @@
|
|||||||
<style lang="scss" scoped></style>
|
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div>
|
<div>
|
||||||
<min-settings-panel></min-settings-panel>
|
<min-settings-panel></min-settings-panel>
|
||||||
@ -65,7 +63,7 @@
|
|||||||
<v-tab href="#jobqueue">{{ $t('Panels.StatusPanel.Jobqueue', { count: jobsCount }) }}</v-tab>
|
<v-tab href="#jobqueue">{{ $t('Panels.StatusPanel.Jobqueue', { count: jobsCount }) }}</v-tab>
|
||||||
</v-tabs>
|
</v-tabs>
|
||||||
<v-divider class="my-0"></v-divider>
|
<v-divider class="my-0"></v-divider>
|
||||||
<v-tabs-items v-model="activeTab">
|
<v-tabs-items v-model="activeTab" class="_border-radius">
|
||||||
<v-tab-item v-if="current_filename" value="status">
|
<v-tab-item v-if="current_filename" value="status">
|
||||||
<status-panel-printstatus></status-panel-printstatus>
|
<status-panel-printstatus></status-panel-printstatus>
|
||||||
</v-tab-item>
|
</v-tab-item>
|
||||||
@ -284,3 +282,10 @@ export default class StatusPanel extends Mixins(BaseMixin) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
._border-radius {
|
||||||
|
border-bottom-left-radius: inherit;
|
||||||
|
border-bottom-right-radius: inherit;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user