Make the transfer ownership input a bit wider
Fixes #18625 Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
This commit is contained in:
parent
396275ab7a
commit
0fe35d06bc
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -33,7 +33,7 @@
|
||||||
</button>
|
</button>
|
||||||
<span class="error">{{ directoryPickerError }}</span>
|
<span class="error">{{ directoryPickerError }}</span>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p class="new-owner-row">
|
||||||
<label>
|
<label>
|
||||||
<span>{{ t('files', 'New owner') }}</span>
|
<span>{{ t('files', 'New owner') }}</span>
|
||||||
<Multiselect
|
<Multiselect
|
||||||
|
@ -217,7 +217,7 @@ export default {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped lang="scss">
|
||||||
.middle-align {
|
.middle-align {
|
||||||
vertical-align: middle;
|
vertical-align: middle;
|
||||||
}
|
}
|
||||||
|
@ -225,4 +225,22 @@ p {
|
||||||
margin-top: 12px;
|
margin-top: 12px;
|
||||||
margin-bottom: 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>
|
</style>
|
||||||
|
|
Loading…
Reference in New Issue