1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
/**
* $Horde: dimp/themes/ie7.css,v 1.14.2.9 2009-03-26 04:34:55 slusarz Exp $
*
* CSS corrections for IE 7.
*/
#pageContainer {
height: 1px;
}
#sidebarPanel li {
overflow: hidden;
max-width: 133px;
text-overflow: ellipsis;
}
#sidebarPanel .folderlist {
overflow-y: auto;
}
#msgSplitPane {
margin-top: -4px;
width: 99.7%;
}
div.msgSize {
width: auto;
overflow: hidden;
}
form#compose {
margin-top: -13px;
}
#to, #cc, #bcc, .msgBody {
overflow: auto;
}
#alerts {
width: expression(document.body.clientWidth/2);
}
#sidebarPanel .custom img {
vertical-align: middle;
}
.block-monthgrid table {
border-width: 2px;
}
#msgHeadersColl div.others div.from a.address, #msgHeaderFrom a.address, #msgHeaderTo a.address {
overflow: hidden;
position: static;
}
/* Fixes li & ol list numbering issues in HTML messages. */
#html-message ul li , #html-message ol li {
margin-left: 2em;
}
|