diff options
| author | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-09-24 14:20:57 +0000 |
|---|---|---|
| committer | robin <robin@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-09-24 14:20:57 +0000 |
| commit | 662c48a1c700e1314926b3b6194ad152a66d494f (patch) | |
| tree | 9edce6bb573da5d2f3fdf16847f4b38ee8be8964 | |
| parent | e7a3b130baa494087771678fec50e83701cf4dea (diff) | |
Fix CSS expressions in IE.
git-svn-id: https://svn.roundcube.net/trunk@810 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/mail.css | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roundcubemail/skins/default/mail.css b/roundcubemail/skins/default/mail.css index f8b53e029..584994895 100644 --- a/roundcubemail/skins/default/mail.css +++ b/roundcubemail/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'); } |
