Skip to content

Commit

Permalink
style: SpoolSelectionDialog improvements (#5)
Browse files Browse the repository at this point in the history
Signed-off-by: Pedro Lamas <[email protected]>
Co-authored-by: Mathis Mensing <[email protected]>
  • Loading branch information
pedrolamas and matmen authored Feb 2, 2024
1 parent d0f784f commit 17c72be
Show file tree
Hide file tree
Showing 2 changed files with 192 additions and 189 deletions.
16 changes: 14 additions & 2 deletions src/components/ui/AppDialog.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,17 @@
:disabled="disabled"
@submit.prevent="handleSave"
>
<v-card>
<v-card-title class="card-heading py-2">
<v-card
:class="{
'collapsable-card': titleShadow
}"
>
<v-card-title
class="card-heading py-2"
:class="{
'collapsable-card-title': titleShadow
}"
>
<slot name="title">
<span class="focus--text">{{ title }}</span>
</slot>
Expand Down Expand Up @@ -100,6 +109,9 @@ export default class AppDialog extends Vue {
@Prop({ type: Boolean })
readonly noActions?: boolean
@Prop({ type: Boolean })
readonly titleShadow?: boolean
@PropSync('valid', { type: Boolean })
validModel?: boolean
Expand Down
Loading

0 comments on commit 17c72be

Please sign in to comment.