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:08:20 +0200 |
commit | c4841d73dbf8628533b26a4eeac2c32c8f473891 (patch) | |
tree | b958e9bd8f339a0b6d65c2349d45c8460b6f25b5 /skins | |
parent | 1f9e93205baf1a1e3da91470ba2952e6dda81d27 (diff) |
Fix overflow of compose attachments list in Opera and IE7 browsers
Diffstat (limited to 'skins')
-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 71e2d5554..8f90dc1c1 100644 --- a/skins/classic/mail.css +++ b/skins/classic/mail.css @@ -1477,8 +1477,7 @@ input.from_address text-indent: -5000px; width: 17px; height: 16px; - display: block; - float: left; + display: inline-block; text-decoration: none; } |