summaryrefslogtreecommitdiffstats
path: root/apps/files/src/components
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-01-08 16:52:25 +0100
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-01-08 16:54:14 +0100
commit0fe35d06bc83af97945a7611cbc77138b045b532 (patch)
treef2846d9d9ef1bc4e7cf1548c98321b4fe99b23d5 /apps/files/src/components
parent396275ab7a3aa58ab7ccd7666211f654eda105c6 (diff)
downloadnextcloud-server-0fe35d06bc83af97945a7611cbc77138b045b532.tar.gz
nextcloud-server-0fe35d06bc83af97945a7611cbc77138b045b532.zip
Make the transfer ownership input a bit wider
Fixes #18625 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files/src/components')
-rw-r--r--apps/files/src/components/TransferOwnershipDialogue.vue22
1 files changed, 20 insertions, 2 deletions
diff --git a/apps/files/src/components/TransferOwnershipDialogue.vue b/apps/files/src/components/TransferOwnershipDialogue.vue
index 5d69ed0dbf1..d24eb78e692 100644
--- a/apps/files/src/components/TransferOwnershipDialogue.vue
+++ b/apps/files/src/components/TransferOwnershipDialogue.vue
@@ -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>