Elastic: Fix issue with absolute positioned mail content (#6739)

pull/6748/head
Aleksander Machniak 5 years ago
parent c42be24fd3
commit 5fb8e8cb86

@ -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)

@ -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%);

Loading…
Cancel
Save