Skip to content
Snippets Groups Projects
Commit d96285f7 authored by JediKev's avatar JediKev
Browse files

issue: Complete Thread Var Padding (Outlook)

This addresses issue 5007 where when using the complete thread variable
there is no padding between thread messages in Outlook desktop app and makes
the thread hard to follow. Outlook does not respect some CSS rules that are
accepted in most (if not all) modern email clients. Since we can’t use
normal CSS the workaround is to add a blank table row (with a single space)
so that it forces "padding" between the end of a message and the start of
another.

Before
(image)

After
(image)
parent cbe75db4
Branches
Tags
No related merge requests found
......@@ -83,6 +83,7 @@ $entries->filter(array('type__in' => array_keys($entryTypes)))->order_by("{$orde
</div>
</td>
</tr>
<tr><td>&nbsp;</td></tr>
<?php
} ?>
</tbody>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment