Fix input size and ellipsis

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl 2019-10-10 16:09:06 +02:00 committed by Arthur Schiwon
parent 6830daf104
commit 0fccda86c2
No known key found for this signature in database
GPG Key ID: 7424F1874854DF23
3 changed files with 18 additions and 0 deletions

View File

@ -155,6 +155,14 @@ export default {
margin-right: 5px;
margin-bottom: 5px;
}
.multiselect::v-deep .multiselect__content-wrapper li>span,
.multiselect::v-deep .multiselect__single {
display: block;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
}
input[type=text] {
margin: 0;

View File

@ -137,3 +137,8 @@ export default {
}
}
</script>
<style scoped>
.multiselect, input[type='text'] {
width: 100%;
}
</style>

View File

@ -75,3 +75,8 @@ export default {
}
}
</script>
<style scoped>
.multiselect, input[type='text'] {
width: 100%;
}
</style>