diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-05-13 17:29:26 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-05-13 17:29:26 +0000 |
| commit | d2cf2d2fcfcc81fdc30fac0e11310e9916a93e79 (patch) | |
| tree | 9cd0b4631fc3033ea3abea27485a720654af98e2 /roundcubemail/skins/default/mail.css | |
| parent | e50864386b0b6f92f05fb1e1e78bb3e27b009cbd (diff) | |
CSS hack to display attachments correctly in IE6
git-svn-id: https://svn.roundcube.net/trunk@555 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/skins/default/mail.css')
| -rw-r--r-- | roundcubemail/skins/default/mail.css | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/roundcubemail/skins/default/mail.css b/roundcubemail/skins/default/mail.css index 67f2bbb10..67ce7e682 100644 --- a/roundcubemail/skins/default/mail.css +++ b/roundcubemail/skins/default/mail.css @@ -594,7 +594,9 @@ table.headers-table tr td.subject min-height: 18px; list-style-image: none; list-style-type: none; - background: url(images/icons/attachment.png) 52px 1px no-repeat #DFDFDF; + background: url(images/icons/attachment.png) 52px 1px no-repeat #DFDFDF; + /* css hack for IE */ + height: expression(Math.min(18, parseInt(this.clientHeight))+'px'); } #attachment-list:after |
