From 6bdbca38796bdcd7bd95deea9babce0cac6a8a36 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Sat, 18 Oct 2014 04:11:24 -0400
Subject: [PATCH] Fix font style display issue in HTML messages with styled <span> elements (#1490101)

---
 CHANGELOG               |    1 +
 skins/classic/print.css |    2 +-
 skins/larry/print.css   |    2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG
index f5382f5..10f6ba1 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -4,6 +4,7 @@
 - Fix setting flags on servers with no PERMANENTFLAGS response (#1490087)
 - Fix regression in SHAA password generation in ldap driver of password plugin (#1490094)
 - Fix displaying of HTML messages with absolutely positioned elements in Larry skin (#1490103)
+- Fix font style display issue in HTML messages with styled <span> elements (#1490101)
 
 RELEASE 1.0.3
 -------------
diff --git a/skins/classic/print.css b/skins/classic/print.css
index d7e332d..b85e095 100644
--- a/skins/classic/print.css
+++ b/skins/classic/print.css
@@ -8,7 +8,7 @@
   margin: 2mm;
 }
 
-body, td, th, span, div, p
+body, td, th, div, p
 {
   font-size: 9pt;
   color: #000000;
diff --git a/skins/larry/print.css b/skins/larry/print.css
index a56c9b9..2c53be1 100644
--- a/skins/larry/print.css
+++ b/skins/larry/print.css
@@ -15,7 +15,7 @@
 	margin: 2mm;
 }
 
-body, td, th, span, div, p {
+body, td, th, div, p {
 	font-size: 9pt;
 	color: #000;
 }

--
Gitblit v1.9.1