diff options
author | thomascube <thomas@roundcube.net> | 2008-03-21 14:09:20 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2008-03-21 14:09:20 +0000 |
commit | bf1be0c931904e45122cf8eeec3bf20cc6e91bd5 (patch) | |
tree | 35929cf1a3884ac1cab1740ce926765f9a39e661 /skins/default/mail.css | |
parent | 846dd743c83e69485602054b2a9687deaf26a672 (diff) |
Fixed message part window display in IE6 (#1484610)
Diffstat (limited to 'skins/default/mail.css')
-rw-r--r-- | skins/default/mail.css | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/skins/default/mail.css b/skins/default/mail.css index aa3f64313..69762b665 100644 --- a/skins/default/mail.css +++ b/skins/default/mail.css @@ -153,6 +153,9 @@ td.formlinks a:visited left: 20px; right: 20px; bottom: 20px; + /* css hack for IE */ + width: expression((parseInt(document.documentElement.clientWidth)-40)+'px'); + height: expression((parseInt(document.documentElement.clientHeight)-100)+'px'); } #mailcontframe @@ -202,8 +205,6 @@ td.formlinks a:visited height: 100%; border: 1px solid #999999; background-color: #F9F9F9; - /* css hack for IE */ - height: expression(parseInt(document.getElementById('messagepartcontainer').offsetHeight)+'px'); } |