From cc80c556e6b0c7c861b5f1fb6b9d1f54cc571cfe Mon Sep 17 00:00:00 2001
From: alecpl <alec@alec.pl>
Date: Sat, 20 Sep 2008 03:07:57 -0400
Subject: [PATCH] - fix wrapping on IE
---
skins/default/mail.css | 3 ++-
skins/default/print.css | 5 +++--
2 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/skins/default/mail.css b/skins/default/mail.css
index 9f64ea6..0c10ff7 100644
--- a/skins/default/mail.css
+++ b/skins/default/mail.css
@@ -782,9 +782,10 @@
margin: 0px;
padding: 0px;
font-family: monospace;
- white-space: pre;
white-space: -moz-pre-wrap !important;
white-space: -o-pre-wrap !important;
+ white-space: pre-wrap !important;
+ white-space: pre;
word-wrap: break-word; /* IE (and Safari) */
}
diff --git a/skins/default/print.css b/skins/default/print.css
index b3fdebf..fa9c38c 100644
--- a/skins/default/print.css
+++ b/skins/default/print.css
@@ -107,10 +107,11 @@
{
margin: 0;
padding: 0;
- white-space: pre;
+ font-family: monospace;
white-space: -o-pre-wrap !important;
white-space: -moz-pre-wrap !important;
- font-family: monospace;
+ white-space: pre-wrap !important;
+ white-space: pre;
word-wrap: break-word; /* IE (and Safari) */
}
--
Gitblit v1.9.1