forked from extern/egroupware
* eMail: wrap pre tagged text within the window boundarys for better readability of text mails with overlong lines; this was part of the felamimail app.css which is loaded anymore for the display of the body
This commit is contained in:
parent
ae180de100
commit
10e27b8798
@ -657,19 +657,25 @@
|
||||
function showBody(&$body, $print=true)
|
||||
{
|
||||
$BeginBody = '<style type="text/css">
|
||||
body,html {
|
||||
height:100%;
|
||||
width:100%;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
}
|
||||
.td_display {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 110%;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
</style>
|
||||
<div style="height:100%;width:100%; background-color:white; padding:0px; margin:0px;"><table width="100%" style="table-layout:fixed"><tr><td class="td_display">';
|
||||
body,html {
|
||||
height:100%;
|
||||
width:100%;
|
||||
padding:0px;
|
||||
margin:0px;
|
||||
}
|
||||
.td_display {
|
||||
font-family: Verdana, Arial, Helvetica, sans-serif;
|
||||
font-size: 110%;
|
||||
background-color: #FFFFFF;
|
||||
}
|
||||
pre {
|
||||
white-space: pre-wrap; /* Mozilla, since 1999 */
|
||||
white-space: -pre-wrap; /* Opera 4-6 */
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
width: 99%;
|
||||
}
|
||||
</style>
|
||||
<div style="height:100%;width:100%; background-color:white; padding:0px; margin:0px;"><table width="100%" style="table-layout:fixed"><tr><td class="td_display">';
|
||||
|
||||
$EndBody = '</td></tr></table>';
|
||||
$EndBody .= "</body></html>";
|
||||
|
Loading…
Reference in New Issue
Block a user