Fix overlapping update button in notifications
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
78fd8ab0fd
commit
90a35aab29
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -37,8 +37,10 @@
|
|||
</ul>
|
||||
</template>
|
||||
|
||||
<a v-if="updaterEnabled" href="#" class="button" @click="clickUpdaterButton">{{ t('updatenotification', 'Open updater') }}</a>
|
||||
<a v-if="downloadLink" :href="downloadLink" class="button" :class="{ hidden: !updaterEnabled }">{{ t('updatenotification', 'Download now') }}</a>
|
||||
<p>
|
||||
<a v-if="updaterEnabled" href="#" class="button" @click="clickUpdaterButton">{{ t('updatenotification', 'Open updater') }}</a>
|
||||
<a v-if="downloadLink" :href="downloadLink" class="button" :class="{ hidden: !updaterEnabled }">{{ t('updatenotification', 'Download now') }}</a>
|
||||
</p>
|
||||
<div class="whatsNew" v-if="whatsNew">
|
||||
<div class="toggleWhatsNew">
|
||||
<span v-click-outside="hideMenu" @click="toggleMenu">{{ t('updatenotification', 'What\'s new?') }}</span>
|
||||
|
@ -55,8 +57,9 @@
|
|||
</template>
|
||||
|
||||
<template v-if="!isDefaultUpdateServerURL">
|
||||
<br />
|
||||
<em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em>
|
||||
<p>
|
||||
<em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em>
|
||||
</p>
|
||||
</template>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue