diff --git a/CHANGELOG b/CHANGELOG index 215d95ee2..f93578410 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -17,6 +17,7 @@ CHANGELOG Roundcube Webmail - Elastic: Fix folders list scrolling on touch devices (#6706) - Elastic: Fix non-working pretty selects in Chrome browser (#6705) - Elastic: Various internal refactorings +- Elastic: Fix issue with absolute positioned mail content (#6739) - Managesieve: Fix bug where global includes were requested for vacation (#6716) - Managesieve: Use RFC-compliant line endings, CRLF instead of LF (#6686) - Managesieve: Fix so "Create filter" option does not show up when Filters menu is disabled (#6723) diff --git a/skins/elastic/styles/styles.less b/skins/elastic/styles/styles.less index 49e3dcaa2..4c1a2f2bc 100644 --- a/skins/elastic/styles/styles.less +++ b/skins/elastic/styles/styles.less @@ -264,6 +264,8 @@ body.task-error-login #layout { .message-part, .message-htmlpart { padding-top: .5rem; + // Fixes absolute positioned mail message content + position: relative; &:not(:first-child) { border-top: 1px solid lighten(@color-mail-headers, 50%);