From 5e642df6d320673d3331408333322d4b36b0afc2 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Sun, 27 May 2012 14:02:33 +0200 Subject: [PATCH] Make
 blocks in text versions of e-mails wrap around

---
 templates/style.css | 10 +++++++++-
 1 file changed, 9 insertions(+), 1 deletion(-)

diff --git a/templates/style.css b/templates/style.css
index e036683..2295600 100644
--- a/templates/style.css
+++ b/templates/style.css
@@ -6,6 +6,14 @@ html, body
 	background-color: #F7F7F7 !important;
 }
 
+pre {
+	white-space: pre-wrap;
+	white-space: -moz-pre-wrap;
+	white-space: -pre-wrap;
+	white-space: -o-pre-wrap;
+	word-wrap: break-word;
+}
+
 h1
 {
 	margin: 0px;
@@ -62,4 +70,4 @@ table td.body
 {
 	border: 2px solid #313131;
 	padding: 16px 13px;
-}	
+}