summaryrefslogtreecommitdiff
path: root/skins
diff options
context:
space:
mode:
authorsvncommit <devs@roundcube.net>2007-09-24 14:20:57 +0000
committersvncommit <devs@roundcube.net>2007-09-24 14:20:57 +0000
commit5f041a37473041070df31233c31885bcd9c36dd1 (patch)
tree4f7ae5fc6e8f87a93861391a7384aa0e508f3a78 /skins
parent5a6efffd36c00783adde326105e1158cee2e5277 (diff)
Fix CSS expressions in IE.
Diffstat (limited to 'skins')
-rw-r--r--skins/default/mail.css4
1 files changed, 2 insertions, 2 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css
index f8b53e029..584994895 100644
--- a/skins/default/mail.css
+++ b/skins/default/mail.css
@@ -352,7 +352,7 @@ body.messagelist
display: table;
table-layout: fixed;
/* css hack for IE */
- width: expression(document.getElementById('mailcontframe').clientWidth);
+ width: expression(parseInt(document.getElementById('mailcontframe').clientWidth)+'px');
}
#messagelist thead tr td
@@ -724,7 +724,7 @@ div.message-part blockquote blockquote blockquote
padding: 0px;
margin: 0px;
/* css hack for IE */
- width: expression(document.documentElement.clientWidth-240);
+ width: expression((parseInt(document.documentElement.clientWidth)-240)+'px');
height: expression((parseInt(document.documentElement.clientHeight)-130)+'px');
}