diff options
-rw-r--r-- | CHANGELOG | 1 | ||||
-rw-r--r-- | skins/classic/print.css | 1 | ||||
-rw-r--r-- | skins/larry/mail.css | 1 | ||||
-rw-r--r-- | skins/larry/print.css | 1 |
4 files changed, 4 insertions, 0 deletions
@@ -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) diff --git a/skins/classic/print.css b/skins/classic/print.css index 129770d25..34125b0d3 100644 --- a/skins/classic/print.css +++ b/skins/classic/print.css @@ -82,6 +82,7 @@ table.headers-table tr td.subject #messagebody { + position: relative; margin-top: 5mm; border-top: none; } diff --git a/skins/larry/mail.css b/skins/larry/mail.css index 462d608b2..71b33571c 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -972,6 +972,7 @@ div.hide-headers { } #messagebody { + position: relative; margin: 8px; } diff --git a/skins/larry/print.css b/skins/larry/print.css index 484905d4f..fa256746b 100644 --- a/skins/larry/print.css +++ b/skins/larry/print.css @@ -77,6 +77,7 @@ table.headers-table tr td.subject { } #messagebody { + position: relative; margin-top: 5mm; border-top: none; } |