diff options
-rw-r--r-- | CHANGELOG | 3 | ||||
-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, 5 insertions, 1 deletions
@@ -1,8 +1,9 @@ CHANGELOG Roundcube Webmail =========================== -- Fix cache (in)validation after setting \Deleted flag +- Fix absolute positioning in HTML messages (#1488819) - Fix keybord events on messages list in opera browser (#1488823) +- Fix cache (in)validation after setting \Deleted flag - Fix selection of collapsed thread rows (#1488772) - Fix wrapping of quoted text with format=flowed (#1488177) 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 e5c0ae045..e2702cff1 100644 --- a/skins/larry/mail.css +++ b/skins/larry/mail.css @@ -919,6 +919,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; } |