Fix overflow of compose attachments list in Opera and IE7 browsers

pull/16/merge
Aleksander Machniak 12 years ago
parent 622bce2c09
commit 7dca45e8b4

@ -150,6 +150,16 @@ body.iframe div.messageheaderbox
height: expression((parseInt(this.parentNode.offsetHeight)-1-parseInt(document.getElementById('compose-headers').offsetHeight))+'px'); 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 #messagelist
{ {
width: inherit; width: inherit;

@ -1485,8 +1485,7 @@ input.from_address
text-indent: -5000px; text-indent: -5000px;
width: 17px; width: 17px;
height: 16px; height: 16px;
display: block; display: inline-block;
float: left;
text-decoration: none; text-decoration: none;
} }

Loading…
Cancel
Save