diff options
author | thomascube <thomas@roundcube.net> | 2009-06-19 16:45:44 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2009-06-19 16:45:44 +0000 |
commit | 3f57a52c27dca044c225d130466d91f8e5ac70a1 (patch) | |
tree | 14c4a51866c825b2da8da022841e9e9373b7378e | |
parent | 5302a931ff10d68ffc67a5a3cadac5128af81c7e (diff) |
Fix css hacks for IE (#1485931)
-rw-r--r-- | skins/default/iehacks.css | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/skins/default/iehacks.css b/skins/default/iehacks.css index 0475bbc65..d55d09cfa 100644 --- a/skins/default/iehacks.css +++ b/skins/default/iehacks.css @@ -74,12 +74,22 @@ input, textarea height: expression(parseInt(this.parentNode.offsetHeight)+'px'); } +#mailleftcontainer +{ + height: expression(parseInt(this.parentNode.offsetHeight)+'px'); +} + #mailrightcontainer { width: expression((parseInt(this.parentNode.offsetWidth)-170)+'px'); height: expression(parseInt(this.parentNode.offsetHeight)+'px'); } +#mailrightcontent +{ + width: 100%; +} + #messagepartcontainer { width: expression((parseInt(document.documentElement.clientWidth)-40)+'px'); |