mirror of
https://github.com/zadam/trilium.git
synced 2024-11-11 09:46:25 +08:00
use overflow-wrap instead of word-break which doesn't break words unless they really don't fit
This commit is contained in:
parent
7060700225
commit
4dd6352aec
1 changed files with 2 additions and 2 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue