From 5fb8e8cb86919250d1b4f77e38c0f2a094c0ac22 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Sun, 5 May 2019 08:06:24 +0200 Subject: [PATCH] Elastic: Fix issue with absolute positioned mail content (#6739) --- CHANGELOG | 1 + skins/elastic/styles/styles.less | 2 ++ 2 files changed, 3 insertions(+) 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%);