Browse Source

Fix HTML message preview if it contains floating tables (#9804)

allow-textarea-resize
Aleksander Machniak 4 months ago
parent
commit
18486929a0
  1. 1
      CHANGELOG.md
  2. 2
      skins/elastic/styles/styles.less

1
CHANGELOG.md

@ -73,6 +73,7 @@
- Fix PHP warning in index.php (#9813)
- OAuth: Fix/improve token refresh
- Fix dark mode bug where wrong colors were used for blockquotes in HTML mail preview (#9820)
- Fix HTML message preview if it contains floating tables (#9804)
## Release 1.6.10

2
skins/elastic/styles/styles.less

@ -337,6 +337,8 @@ body.task-error-login #layout {
div.rcmBody {
// Remove margins that can be set by the mail message styles
margin: 0 auto !important;
// Fix floating table issue (#9804)
overflow: auto hidden;
}
blockquote {

Loading…
Cancel
Save