From 466c6ee174c99ac8b823bb8d3d64d60122be5f15 Mon Sep 17 00:00:00 2001 From: alecpl <alec@alec.pl> Date: Fri, 19 Sep 2008 13:21:37 -0400 Subject: [PATCH] #1485378: fix text wrapping --- skins/default/mail.css | 3 ++- 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 ec78cd7..9f64ea6 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -782,8 +782,9 @@ 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 a36f87a..b3fdebf 100644 --- a/skins/default/print.css +++ b/skins/default/print.css @@ -108,7 +108,10 @@ 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 -- Gitblit v1.9.1