diff options
| author | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-04-08 13:15:43 +0000 |
|---|---|---|
| committer | thomasb <thomasb@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2007-04-08 13:15:43 +0000 |
| commit | 5ef5c649535eca4d9cbcac29dd1cf1fba96d96e2 (patch) | |
| tree | 10e4670c7c1567dc6d2d5e9816adefc31cf751b3 | |
| parent | 1a19f2b36a96979e5f80276bbacfe9d6cd441a1d (diff) | |
Fixed display of multiple attachments (closes #1466563)
git-svn-id: https://svn.roundcube.net/trunk@537 208e9e7b-5314-0410-a742-e7e81cd9613c
| -rw-r--r-- | roundcubemail/skins/default/mail.css | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/roundcubemail/skins/default/mail.css b/roundcubemail/skins/default/mail.css index 139994167..11364baa0 100644 --- a/roundcubemail/skins/default/mail.css +++ b/roundcubemail/skins/default/mail.css @@ -664,16 +664,24 @@ table.headers-table tr td.subject { margin: 0px; padding: 0px 0px 0px 68px; - height: 18px; + min-height: 18px; list-style-image: none; list-style-type: none; background: url(images/icons/attachment.png) 52px 1px no-repeat #DFDFDF; - border-bottom: 1px solid #FFFFFF; +} + +#attachment-list:after +{ + content: "."; + display: block; + height: 0; + font-size: 0; + clear: both; + visibility: hidden; } #attachment-list li { -/* display: block; */ float: left; height: 18px; font-size: 11px; |
