Fix absolute positioning in HTML messages (#1488819)

pull/66/head
Aleksander Machniak 12 years ago
parent 15cf4fa925
commit 14d00daa1a

@ -1,6 +1,7 @@
CHANGELOG Roundcube Webmail
===========================
- Fix absolute positioning in HTML messages (#1488819)
- Fix keybord events on messages list in opera browser (#1488823)
- Fix selection of collapsed thread rows (#1488772)
- Always save drafts with format=flowed in order to keep original line wraps (#1488799)

@ -82,6 +82,7 @@ table.headers-table tr td.subject
#messagebody
{
position: relative;
margin-top: 5mm;
border-top: none;
}

@ -972,6 +972,7 @@ div.hide-headers {
}
#messagebody {
position: relative;
margin: 8px;
}

@ -77,6 +77,7 @@ table.headers-table tr td.subject {
}
#messagebody {
position: relative;
margin-top: 5mm;
border-top: none;
}

Loading…
Cancel
Save