add style to the hr entity separator
authorkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 3 Jul 2008 13:48:39 +0000 (13:48 +0000)
committerkink <kink@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 3 Jul 2008 13:48:39 +0000 (13:48 +0000)
git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13209 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/read_body.php
templates/default/css/default.css

index 77643e3a470f3baa00ebec874eb56d6043a4d711..79775467f022aa0a2c493d6991d661ae8626028e 100644 (file)
@@ -961,7 +961,7 @@ $cnt = count($ent_ar);
 for ($i = 0; $i < $cnt; $i++) {
    $messagebody .= formatBody($imapConnection, $message, $color, $wrap_at, $ent_ar[$i], $passed_id, $mailbox);
    if ($i != $cnt-1) {
-       $messagebody .= '<hr />';
+       $messagebody .= '<hr class="entity_sep" />';
    }
 }
 
index 249e5a0585ae6534b99f480342b083bf30fef16b..9e46a1aa8c3e2c9ca73f3fb7cc0c2914bcd34951 100644 (file)
@@ -1095,3 +1095,9 @@ div.viewText td.spacer {
 #toggle_to, #toggle_cc {
     font-size: smaller;
 }
+
+hr.entity_sep {
+    border: 0;
+    height: 1px;
+    background-color: gray;
+}