# HG changeset patch
# User Richard Marti <richard.marti@gmail.com>
# Date 1460660124 -7200
#      Thu Apr 14 20:55:24 2016 +0200
# Branch THUNDERBIRD3880_2016050308_RELBRANCH
# Node ID 21cf4962bfeecba9f47881032a64ee51706d99f7
# Parent  830766b2c33cce3ffc760b251a9c4393133e9108
Bug 1263207 - Add a workaround to override MS Outlook line-height:0 setting. r=jorgk a=rkent

diff --git a/mail/themes/linux/mail/messageQuotes.css b/mail/themes/linux/mail/messageQuotes.css
--- a/mail/themes/linux/mail/messageQuotes.css
+++ b/mail/themes/linux/mail/messageQuotes.css
@@ -7,16 +7,21 @@
    especially must not trigger network access. */
 
 /* ===== messageQuotes.css =================================================
   == Shared styles such as block quote colors and signature style
   == between the message body during
   == message display and the mail editor instance for mail compose.
   ======================================================================= */
 
+/* workaround for MS Outlook mails where the line-height is set to 0 */
+body {
+  line-height: initial !important;
+}
+
 /* ::::: signature ::::: */
 
 @media not print {
   div.moz-text-flowed > div.moz-txt-sig,
   div.moz-text-plain > pre > div.moz-txt-sig,
   pre.moz-signature {
     opacity: 0.6;
   }
diff --git a/mail/themes/osx/mail/messageQuotes.css b/mail/themes/osx/mail/messageQuotes.css
--- a/mail/themes/osx/mail/messageQuotes.css
+++ b/mail/themes/osx/mail/messageQuotes.css
@@ -7,16 +7,21 @@
    especially must not trigger network access. */
 
 /* ===== messageQuotes.css =================================================
   == Shared styles such as block quote colors and signature style
   == between the message body during
   == message display and the mail editor instance for mail compose.
   ======================================================================= */
 
+/* workaround for MS Outlook mails where the line-height is set to 0 */
+body {
+  line-height: initial !important;
+}
+
 /* ::::: signature ::::: */
 
 @media not print {
   div.moz-text-flowed > div.moz-txt-sig,
   div.moz-text-plain > pre > div.moz-txt-sig,
   pre.moz-signature {
     opacity: 0.6;
   }
diff --git a/mail/themes/windows/mail/messageQuotes.css b/mail/themes/windows/mail/messageQuotes.css
--- a/mail/themes/windows/mail/messageQuotes.css
+++ b/mail/themes/windows/mail/messageQuotes.css
@@ -7,16 +7,21 @@
    especially must not trigger network access. */
 
 /* ===== messageQuotes.css =================================================
   == Shared styles such as block quote colors and signature style
   == between the message body during
   == message display and the mail editor instance for mail compose.
   ======================================================================= */
 
+/* workaround for MS Outlook mails where the line-height is set to 0 */
+body {
+  line-height: initial !important;
+}
+
 /* ::::: signature ::::: */
 
 @media not print {
   div.moz-text-flowed > div.moz-txt-sig,
   div.moz-text-plain > pre > div.moz-txt-sig,
   pre.moz-signature {
     opacity: 0.6;
   }
