diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-30 18:30:12 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-08-30 18:30:12 +0000 |
| commit | 2948e36d9da7125033642341f0c6b21c1c536011 (patch) | |
| tree | d3d1955211965b9210bf3ea04775eee397c70ed4 | |
| parent | 92d9ee54b97a833288e1a338023f883fc9b01d91 (diff) | |
- fix messagelist width on IE (#1486061)
git-svn-id: https://svn.roundcube.net/trunk@2895 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/iehacks.css | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/roundcubemail/skins/default/iehacks.css b/roundcubemail/skins/default/iehacks.css index 3800dbe70..dd0c4742d 100644 --- a/roundcubemail/skins/default/iehacks.css +++ b/roundcubemail/skins/default/iehacks.css @@ -136,6 +136,12 @@ input, textarea width: auto; } +#messagelist +{ + width: inherit; + *width: auto; /* IE6/7 conditional hack */ +} + #messageframe { width: expression((parseInt(this.parentNode.offsetWidth)-180)+'px'); @@ -244,8 +250,3 @@ ul.toolbarmenu li a -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"; filter: alpha(opacity=80); } - -#messagelist -{ - width: expression((document.documentElement.clientHeight > this.parentNode.clientHeight) ? 'auto' : '100%'); -} |
