Fix text overflow, Closes #345
This commit is contained in:
parent
472b8cb468
commit
ac2056f038
2 changed files with 6 additions and 1 deletions
|
|
@ -340,3 +340,8 @@ hr {
|
|||
.Vue-Toastification__toast-body {
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.is-word-break {
|
||||
word-break: break-word;
|
||||
text-wrap: auto;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -889,7 +889,7 @@ const downloadSelected = async () => {
|
|||
}
|
||||
}
|
||||
|
||||
const toggle_class = e => e.currentTarget.classList.toggle('is-text-overflow')
|
||||
const toggle_class = e => ['is-text-overflow', 'is-word-break'].forEach(c => e.currentTarget.classList.toggle(c))
|
||||
|
||||
const removeFromArchiveDialog = (item) => {
|
||||
dialog_confirm.value.visible = true
|
||||
|
|
|
|||
Loading…
Reference in a new issue