From 677c972e858f2f6a720fbef43f0084f21b083563 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Fri, 14 Feb 2014 14:17:05 +0100 Subject: [PATCH] [FIX] mail: word wrapping in pre tags (for mails without html in chatter) bzr revid: dle@openerp.com-20140214131705-efs3bggixyjalxun --- addons/mail/static/src/css/mail.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/addons/mail/static/src/css/mail.css b/addons/mail/static/src/css/mail.css index a41e5824cf7..083ea152e03 100644 --- a/addons/mail/static/src/css/mail.css +++ b/addons/mail/static/src/css/mail.css @@ -104,6 +104,9 @@ .openerp .oe_mail .oe_msg .oe_msg_content .oe_msg_body p { margin-bottom: 0px; } +.openerp .oe_mail .oe_msg .oe_msg_content .oe_msg_body pre { + white-space: pre-wrap; +} .openerp .oe_mail .oe_msg .oe_msg_content .oe_msg_body * { text-overflow:ellipsis; word-wrap: break-word;