diff options
author | Aleksander Machniak <alec@alec.pl> | 2012-11-25 10:55:15 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2012-11-25 11:16:59 +0100 |
commit | bc4a6a27118535bc6a2ef3d78a29ee485d32bad0 (patch) | |
tree | 708f3f7e5063e50502435322a8c222bd328d9680 | |
parent | 4e10778caf04d05c90caa827212a141d3a4a619f (diff) |
Fix absolute positioning in HTML messages (#1488819)
Conflicts:
CHANGELOG
-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; } |