fix dark/light mode dialog

This commit is contained in:
les
2021-03-05 14:11:33 +01:00
parent 5222b24f88
commit 589a8ce939
8 changed files with 11 additions and 11 deletions

View File

@@ -6,7 +6,7 @@
:max-width='options.width'
:style="{ zIndex: options.zIndex, position: 'absolute' }"
@keydown.esc='cancel')
v-card(color='secondary')
v-card
v-card-title {{ title }}
v-card-text(v-show='!!message') {{ message }}
v-card-actions

View File

@@ -1,5 +1,5 @@
<template lang='pug'>
v-card(:color='isDialog ? "secondary" : null')
v-card
v-card-title(v-text="$t('common.follow_me_title')")
v-card-text
p(v-html="$t('event.follow_me_description', { title: settings.title, account: `@${settings.instance_name}@${domain}`})")

View File

@@ -3,7 +3,7 @@
v-card-title {{$t('common.announcements')}}
v-card-subtitle(v-html="$t('admin.announcement_description')")
v-dialog(v-model='dialog' width='800px')
v-card(color='secondary')
v-card
v-card-title {{$t('admin.new_announcement')}}
v-card-text
v-form(v-model='valid' ref='announcement' @submit.prevent='save')

View File

@@ -41,7 +41,7 @@
)
v-dialog(v-model='dialogAddInstance' width="500px")
v-card(color='secondary')
v-card
v-card-title {{$t('admin.add_trusted_instance')}}
v-card-text
v-form(v-model='valid' ref='form' lazy-validation)