More tweaks to HTML quoting style.
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 28 Jul 2010 17:15:00 +0000 (11:15 -0600)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 28 Jul 2010 17:19:15 +0000 (11:19 -0600)
Outlook and/or hotmail doesn't seem to reply to just blockquote/cite
very well.

imp/lib/Compose.php

index 0c72354..f03b680 100644 (file)
@@ -1495,7 +1495,7 @@ class IMP_Compose
         if (!empty($msg_text) &&
             ($compose_html || ($msg_text['mode'] == 'html'))) {
             $msg = '<p>' . $this->text2html(trim($msg_pre)) . '</p>' .
-                   '<blockquote type="cite" style="background-color:#f0f0f0">' .
+                   '<blockquote type="cite" style="background-color:#f0f0f0;border-left:1px solid blue;padding-left:1em;">' .
                    (($msg_text['mode'] == 'text') ? $this->text2html($msg_text['text']) : $msg_text['text']) .
                    '</blockquote>' .
                    ($msg_post ? $this->text2html($msg_post) : '') . '<br />';