use overflow-wrap instead of word-break which doesn't break words unless they really don't fit

This commit is contained in:
zadam 2019-08-01 21:36:55 +02:00
parent 7060700225
commit 4dd6352aec

View file

@ -117,7 +117,7 @@ ul.fancytree-container {
display: flex;
flex-direction: column;
min-height: 200px;
word-break: break-all; /* otherwise CKEditor fails miserably on super long lines */
overflow-wrap: break-word; /* otherwise CKEditor fails miserably on super long lines */
font-family: var(--detail-font-family);
font-size: var(--detail-font-size);
}
@ -439,7 +439,7 @@ div.ui-tooltip {
text-align: center;
margin-top: 15px;
text-overflow: ellipsis;
word-wrap: break-word;
overflow-wrap: break-word;
}
.child-overview-item a {