Merge pull request #14399 from nextcloud/feature/noid/fix-top-margin-special-updater-url

Fix top margin for info text when non-default updater server URL is used
This commit is contained in:
blizzz 2019-02-27 14:59:20 +01:00 committed by GitHub
commit 3664e46944
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 1 deletions

View file

@ -57,7 +57,7 @@
</template>
<template v-if="!isDefaultUpdateServerURL">
<p>
<p class="topMargin">
<em>{{ t('updatenotification', 'A non-default update server is in use to be checked for updates:') }} <code>{{updateServerURL}}</code></em>
</p>
</template>
@ -497,4 +497,7 @@
#updatenotification .update-menu .icon-star:focus {
background-image: var(--icon-star-000);
}
#updatenotification .topMargin {
margin-top: 15px;
}
</style>