From ca83c73eef9dd1a9203b61f18ab32400ad8c2fc0 Mon Sep 17 00:00:00 2001 From: kink Date: Thu, 3 Jul 2008 13:48:39 +0000 Subject: [PATCH] add style to the hr entity separator git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@13209 7612ce4b-ef26-0410-bec9-ea0150e637f0 --- src/read_body.php | 2 +- templates/default/css/default.css | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/read_body.php b/src/read_body.php index 77643e3a..79775467 100644 --- a/src/read_body.php +++ b/src/read_body.php @@ -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 .= '
'; + $messagebody .= '
'; } } diff --git a/templates/default/css/default.css b/templates/default/css/default.css index 249e5a05..9e46a1aa 100644 --- a/templates/default/css/default.css +++ b/templates/default/css/default.css @@ -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; +} -- 2.25.1