Task #3199
closedLines don't wrap correctly on AskLibO
0%
Description
Since recently, lines in questions, answers and comments are not wrapped by word boundaries on AskLibO anymore, but break in the middle of a word. See e.g. https://ask.libreoffice.org/en/question/241343, which title looks for me like
Why are comments on Ask LibreOffice not wrap
ped correctly?
i.e., first four characters of "wrapped" are on first line, and the rest on the second.
Updated by Beluga Beluga over 4 years ago
The cause is this CSS rule:
.question-page .post-content {
word-break: break-all;
}
I think a better value would be break-word, but it is not supported in Internet Explorer. Or just forget about the whole rule.
Updated by Florian Effenberger over 4 years ago
- Assignee set to Evgeny Fadeev
Evgeny, can you have a look? :)
Updated by Guilhem Moulin over 4 years ago
- Category set to AskLibO
Evgeny, can you have a look? :)
Meanwhile I blindly applied proposed Beluga's fix to /srv/ask/node2_*/tdf/media/style/extra.css.
Updated by Mike Kaganski over 4 years ago
Meanwhile I blindly applied proposed Beluga's fix to /srv/ask/node2_*/tdf/media/style/extra.css.
That helped; thanks Guilhem!
Updated by Evgeny Fadeev over 4 years ago
break-word is safer for the text, although sometimes there is an extra-long word usually from some computer code that won't fit.