Fix input size and ellipsis
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
6830daf104
commit
0fccda86c2
|
@ -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;
|
||||
|
|
|
@ -137,3 +137,8 @@ export default {
|
|||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
.multiselect, input[type='text'] {
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -75,3 +75,8 @@ export default {
|
|||
}
|
||||
}
|
||||
</script>
|
||||
<style scoped>
|
||||
.multiselect, input[type='text'] {
|
||||
width: 100%;
|
||||
}
|
||||
</style>
|
||||
|
|
Loading…
Reference in New Issue