CSS hack to display attachments correctly in IE6

release-0.6
thomascube 17 years ago
parent 2e8a6118de
commit 281e3ed325

@ -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)

@ -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

Loading…
Cancel
Save