diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-02-25 21:00:47 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-02-25 21:03:36 +0100 |
commit | ebfed171c57f4e9848b730c1d9bab6418f463514 (patch) | |
tree | d53cfc550e39c207778fc8a0cc9765c02637988c /data/css/style.css | |
parent | b23ae3d851ba3f664b2242fa5c4dcb4c294c0de1 (diff) |
Use better word breaking.
This breaks at spaces, dots, ... if possible, but falls back to breaking
anywhere if needed.
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'data/css/style.css')
-rw-r--r-- | data/css/style.css | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/data/css/style.css b/data/css/style.css index 454d7f9ea..f1066fc7a 100644 --- a/data/css/style.css +++ b/data/css/style.css @@ -109,7 +109,7 @@ code, pre, textarea { font-size: 12px; line-height: 1.4; white-space: pre-wrap; - word-break: break-all; + word-break: break-word; word-wrap: normal; } .code { |