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