- Fix horizontal scrollbar in preview pane on IE (#1484633)

release-0.6
alecpl 16 years ago
parent 55cd3743ba
commit e2dd81f8dd

@ -6,6 +6,7 @@ CHANGELOG RoundCube Webmail
- Fix sorting of folders with more than 2 levels (#1485569)
- Fix search results page jumps in LDAP addressbook (#1485253)
- Fix empty line before the signature in IE (#1485351)
- Fix horizontal scrollbar in preview pane on IE (#1484633)
2008/12/04 (alec)
----------

@ -671,6 +671,12 @@ html>body*input[type$="file"]:not([class="none"]) { background-color: transparen
height: expression((parseInt(this.parentNode.offsetHeight))+'px');
}
#messagecanvas
{
/* css hack for IE */
width: expression((parseInt(this.parentNode.offsetWidth)-20)+'px');
}
#printmessageframe
{
position: absolute;

@ -46,13 +46,13 @@
</div>
<div id="messageframe">
<div id="messagecanvas">
<roundcube:object name="messageHeaders" class="headers-table" cellspacing="0" cellpadding="2" addicon="/images/icons/plus.gif" summary="Message headers" />
<roundcube:object name="messageAttachments" id="attachment-list" />
<roundcube:object name="blockedObjects" id="remote-objects-message" />
<roundcube:object name="messageBody" id="messagebody" />
</div>
</div>
</div>

@ -3,7 +3,7 @@
<head>
<title></title>
</head>
<body style="background-color:#F2F2F2;">
<body style="background-color:#F2F2F2; width: expression((parseInt(document.documentElement.clientWidth)-20)+'px');">
<div style="margin:10px auto; text-align:center">
<img src="images/rcube_watermark.png" width="245" height="245" alt="" />

Loading…
Cancel
Save