Merge pull request #18795 from nextcloud/backport/18773/transfer-padding

[stable18] Add more padding in transfer ownership
This commit is contained in:
Roeland Jago Douma 2020-01-10 09:28:14 +01:00 committed by GitHub
commit eb014fb0a1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 1 deletions

Binary file not shown.

Binary file not shown.

View file

@ -23,7 +23,7 @@
<div>
<h3>{{ t('files', 'Transfer ownership of a file or folder') }} </h3>
<form @submit.prevent="submit">
<p>
<p class="transfer-select-row">
<span>{{ readableDirectory }}</span>
<button v-if="directory === undefined" @click.prevent="start">
{{ t('files', 'Choose file or folder to transfer') }}
@ -243,4 +243,9 @@ p {
}
}
}
.transfer-select-row {
span {
margin-right: 8px;
}
}
</style>