From d2cf2d2fcfcc81fdc30fac0e11310e9916a93e79 Mon Sep 17 00:00:00 2001 From: thomasb Date: Sun, 13 May 2007 17:29:26 +0000 Subject: CSS hack to display attachments correctly in IE6 git-svn-id: https://svn.roundcube.net/trunk@555 208e9e7b-5314-0410-a742-e7e81cd9613c --- roundcubemail/CHANGELOG | 1 + roundcubemail/skins/default/mail.css | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/roundcubemail/CHANGELOG b/roundcubemail/CHANGELOG index 69005c26b..66dab0e8a 100644 --- a/roundcubemail/CHANGELOG +++ b/roundcubemail/CHANGELOG @@ -5,6 +5,7 @@ CHANGELOG RoundCube Webmail ---------- - Updated Norwegian (bokmal), Czech, Danish and Portuguese (standard) translation - Fixed marking as read in preview pane (closes #1484364) +- CSS hack to display attachments correctly in IE6 2007/05/03 (yllar) 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 -- cgit v1.2.3