Browse Source

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

validate-url-parameter-for-upload-v1.6
Aleksander Machniak 4 months ago
parent
commit
3cf128da4b
  1. 1
      CHANGELOG.md
  2. 2
      skins/elastic/styles/styles.less

1
CHANGELOG.md

@ -7,6 +7,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