Make the transfer ownership input a bit wider

Fixes #18625

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
Christoph Wurst 2020-01-08 16:52:25 +01:00
parent 396275ab7a
commit 0fe35d06bc
No known key found for this signature in database
GPG Key ID: CC42AC2A7F0E56D8
3 changed files with 23 additions and 5 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

@ -33,7 +33,7 @@
</button>
<span class="error">{{ directoryPickerError }}</span>
</p>
<p>
<p class="new-owner-row">
<label>
<span>{{ t('files', 'New owner') }}</span>
<Multiselect
@ -217,7 +217,7 @@ export default {
}
</script>
<style scoped>
<style scoped lang="scss">
.middle-align {
vertical-align: middle;
}
@ -225,4 +225,22 @@ p {
margin-top: 12px;
margin-bottom: 12px;
}
.new-owner-row {
display: flex;
label {
display: flex;
align-items: center;
flex-grow: 1;
span {
margin-right: 8px;
}
.multiselect {
flex-grow: 1;
max-width: 280px;
}
}
}
</style>