diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-08-02 21:06:30 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-08-02 21:06:30 +0200 |
commit | 7dca45e8b4aa53373b8d5a3ac390da48d08ca6d6 (patch) | |
tree | 8f036d00d54f0e0c8e1a61d9521059804f65e6e4 | |
parent | 622bce2c09a8ea3d2de949b17ae0a1e2382bdcff (diff) |
Fix overflow of compose attachments list in Opera and IE7 browsers
-rw-r--r-- | skins/classic/iehacks.css | 10 | ||||
-rw-r--r-- | skins/classic/mail.css | 3 |
2 files changed, 11 insertions, 2 deletions
diff --git a/skins/classic/iehacks.css b/skins/classic/iehacks.css index d09be3d80..2bd3ce865 100644 --- a/skins/classic/iehacks.css +++ b/skins/classic/iehacks.css @@ -150,6 +150,16 @@ body.iframe div.messageheaderbox height: expression((parseInt(this.parentNode.offsetHeight)-1-parseInt(document.getElementById('compose-headers').offsetHeight))+'px'); } +#compose-attachments ul li +{ + width: 1000px; /* for IE7 */ +} + +#compose-attachments li a +{ + float: left; /* for IE7 */ +} + #messagelist { width: inherit; diff --git a/skins/classic/mail.css b/skins/classic/mail.css index cf7b69a38..c38d7448c 100644 --- a/skins/classic/mail.css +++ b/skins/classic/mail.css @@ -1485,8 +1485,7 @@ input.from_address text-indent: -5000px; width: 17px; height: 16px; - display: block; - float: left; + display: inline-block; text-decoration: none; } |