UI thread: Permission to add back the lines between the header and body.
authorstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 10 Oct 2002 21:13:34 +0000 (21:13 +0000)
committerstekkel <stekkel@7612ce4b-ef26-0410-bec9-ea0150e637f0>
Thu, 10 Oct 2002 21:13:34 +0000 (21:13 +0000)
Currently the aligning is center and I added small vertical lines left and right
from the body for a better layout. If you don't like them then comment the
line out! See the if UIpref is whatever. If there is 100% agreement on the
layout we could make remove the UIpref statement.

git-svn-id: https://svn.code.sf.net/p/squirrelmail/code/trunk/squirrelmail@3828 7612ce4b-ef26-0410-bec9-ea0150e637f0

src/read_body.php

index 2da1a5937c3f2d325f04d4a259be693ff6cc0522..136edca690246f595ac9847a79447070ea1603cf 100644 (file)
@@ -455,12 +455,15 @@ function formatEnvheader($mailbox, $passed_id, $passed_ent_id, $message,
             $s .= '</TR>';
         }
     }
-    //echo '<TABLE BGCOLOR="'.$color[9].'" WIDTH="100%" CELLPADDING="1"'.
-    //     ' CELLSPACING="0" BORDER="0" ALIIGN="center">'."\n";
+    echo '<TABLE BGCOLOR="'.$color[9].'" WIDTH="100%" CELLPADDING="1"'.
+         ' CELLSPACING="0" BORDER="0" ALIIGN="center">'."\n";
+    echo '<TR><TD HEIGHT="5" COLSPAN="2" BGCOLOR="'.$color[4].'"></TD></TR><TR><TD align=center>'."\n";
     echo $s;
     do_hook("read_body_header");
     formatToolbar($mailbox, $passed_id, $passed_ent_id, $message, $color);
     echo '</TABLE>';
+    echo '</TD></TR><TR><TD HEIGHT="5" COLSPAN="2" BGCOLOR="'.$color[4].'"></TD></TR>'."\n";
+    echo '</TABLE>';
 }
 
 function formatMenubar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response) {
@@ -784,6 +787,15 @@ for ($i = 0; $i < $cnt; $i++) {
        $messagebody .= '<hr noshade size=1>';
    }
 }
+$UIpref = 'captbunzo';
+/* handy preference utility to easy switch between preferences */
+if ($UIpref== 'captbunzo') {
+    $align= 'center';
+    $vert_lines = '<td bgcolor="'.$color[0].'"></td>'; /* test! Delete it when you are not satisfied */
+} else { 
+    $align= 'left';
+    $vert_lines = '';
+}
 
 displayPageHeader($color, $mailbox);
 formatMenuBar($mailbox, $passed_id, $passed_ent_id, $message, $mbx_response);
@@ -794,8 +806,9 @@ echo '    <table width="100%" cellpadding="1" cellspacing="0" align="center" bor
 echo '      <tr><td>';
 echo '        <table width="100%" cellpadding="3" cellspacing="0" align="center" border="0">';
 echo '          <tr bgcolor="'.$color[4].'"><td>';
-echo '            <table cellpadding="5" cellspacing="0" border="0" align="center">';
-echo '              <tr>'. html_tag( 'td', '<br>'. $messagebody."\n", 'left').'</td>';
+echo '            <table cellpadding="1" cellspacing="5" align="'.$align.'" border="0">';
+echo '              <tr>'.$vert_lines. html_tag( 'td', '<br>'. $messagebody."\n", 'left')
+                        .$vert_lines.'</td>';
 echo '            </table>';
 echo '          </td></tr>';      
 echo '        </table></td></tr>';