- fix wrapping on IE

release-0.6
alecpl 16 years ago
parent 42e328a85f
commit cc80c556e6

@ -782,9 +782,10 @@ div.message-part div.pre
margin: 0px;
padding: 0px;
font-family: monospace;
white-space: pre;
white-space: -moz-pre-wrap !important;
white-space: -o-pre-wrap !important;
white-space: pre-wrap !important;
white-space: pre;
word-wrap: break-word; /* IE (and Safari) */
}

@ -107,10 +107,11 @@ div.message-part div.pre
{
margin: 0;
padding: 0;
white-space: pre;
font-family: monospace;
white-space: -o-pre-wrap !important;
white-space: -moz-pre-wrap !important;
font-family: monospace;
white-space: pre-wrap !important;
white-space: pre;
word-wrap: break-word; /* IE (and Safari) */
}

Loading…
Cancel
Save