diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-19 17:21:37 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2008-09-19 17:21:37 +0000 |
| commit | cfbf1a8854510fb9d03d0bc7268eff56c20f221f (patch) | |
| tree | 8a66e4e8eea713c6d36eecc5a2d8d6f4bdbab70b | |
| parent | e0dd57bf933576d098adb1be97c6a3d6c809449f (diff) | |
#1485378: fix text wrapping
git-svn-id: https://svn.roundcube.net/trunk@1852 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/mail.css | 3 | ||||
| -rw-r--r-- | roundcubemail/skins/default/print.css | 3 |
2 files changed, 5 insertions, 1 deletions
diff --git a/roundcubemail/skins/default/mail.css b/roundcubemail/skins/default/mail.css index ec78cd7a2..9f64ea615 100644 --- a/roundcubemail/skins/default/mail.css +++ b/roundcubemail/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/roundcubemail/skins/default/print.css b/roundcubemail/skins/default/print.css index a36f87a1f..b3fdebfb4 100644 --- a/roundcubemail/skins/default/print.css +++ b/roundcubemail/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 |
