Fix style of the sharing setting checkbox (#18628)

Fix style of the sharing setting checkbox
This commit is contained in:
John Molakvoæ 2020-01-02 10:48:52 +01:00 committed by GitHub
commit 3a179fe5c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 7 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -22,11 +22,14 @@
<template> <template>
<div id="files-sharing-personal-settings" class="section"> <div id="files-sharing-personal-settings" class="section">
<h2>{{ t('files', 'Sharing') }}</h2> <h2>{{ t('files', 'Sharing') }}</h2>
<input id="files-sharing-personal-settings-accept" <p>
v-model="accepting" <input id="files-sharing-personal-settings-accept"
type="checkbox" v-model="accepting"
@change="toggleEnabled"> class="checkbox"
<label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label> type="checkbox"
@change="toggleEnabled">
<label for="files-sharing-personal-settings-accept">{{ t('files_sharing', 'Accept user and group shares by default') }}</label>
</p>
</div> </div>
</template> </template>