fix dark/light mode dialog
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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}`})")
|
||||
|
||||
@@ -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')
|
||||
|
||||
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user