Sentences inside message bubbles in the text messaging window have words broken up at random, inappropriate places instead of wrapped. This is due to this rule in mod-message.css:
.mod-multiChat-smsList .popover .content pre, .mod-chat-smsList .popover .content pre {
word-break: break-all";
}
I suggest this rule be altered to not apply to message bubbles. If you're concerned about wrapping exceptionally-long words, my suggestion is to use JavaScript to apply break-all to individual message bubbles that have very long words, instead of all message bubbles.
.mod-multiChat-smsList .popover .content pre, .mod-chat-smsList .popover .content pre {
word-break: break-all";
}
I suggest this rule be altered to not apply to message bubbles. If you're concerned about wrapping exceptionally-long words, my suggestion is to use JavaScript to apply break-all to individual message bubbles that have very long words, instead of all message bubbles.