diff options
author | alecpl <alec@alec.pl> | 2008-09-19 17:21:37 +0000 |
---|---|---|
committer | alecpl <alec@alec.pl> | 2008-09-19 17:21:37 +0000 |
commit | 466c6ee174c99ac8b823bb8d3d64d60122be5f15 (patch) | |
tree | d9cb646baffccdf8db0b9f79560aa06c32df7bdb | |
parent | e5af2fe88e3282aacbc2c48be5405c1de62df8a2 (diff) |
#1485378: fix text wrapping
-rw-r--r-- | skins/default/mail.css | 3 | ||||
-rw-r--r-- | skins/default/print.css | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css index ec78cd7a2..9f64ea615 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -782,8 +782,9 @@ div.message-part div.pre margin: 0px; padding: 0px; font-family: monospace; - white-space: -moz-pre-wrap !important; white-space: pre; + white-space: -moz-pre-wrap !important; + white-space: -o-pre-wrap !important; word-wrap: break-word; /* IE (and Safari) */ } diff --git a/skins/default/print.css b/skins/default/print.css index a36f87a1f..b3fdebfb4 100644 --- a/skins/default/print.css +++ b/skins/default/print.css @@ -108,7 +108,10 @@ div.message-part div.pre margin: 0; padding: 0; white-space: pre; + white-space: -o-pre-wrap !important; + white-space: -moz-pre-wrap !important; font-family: monospace; + word-wrap: break-word; /* IE (and Safari) */ } div.message-part blockquote |