mirror of
https://github.com/zadam/trilium.git
synced 2025-02-24 06:54:44 +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;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
min-height: 200px;
|
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-family: var(--detail-font-family);
|
||||||
font-size: var(--detail-font-size);
|
font-size: var(--detail-font-size);
|
||||||
}
|
}
|
||||||
|
@ -439,7 +439,7 @@ div.ui-tooltip {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
margin-top: 15px;
|
margin-top: 15px;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
word-wrap: break-word;
|
overflow-wrap: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
.child-overview-item a {
|
.child-overview-item a {
|
||||||
|
|
Loading…
Reference in a new issue