(css) Fix scrolling of message with Firefox

Fixes #4008, #4282, #4398
pull/240/head
Francis Lachapelle 2018-02-27 09:30:12 -05:00
parent d00db81d08
commit a75ae84953
2 changed files with 8 additions and 0 deletions

1
NEWS
View File

@ -53,6 +53,7 @@ Bug fixes
- [web] added missing subject to junk/not junk reports
- [web] fixed file uploader URL in mail editor
- [web] fixed decoding of spaces in URL-encoded parameters (+)
- [web] fixed scrolling of message with Firefox (#4008, #4282, #4398)
- [eas] hebrew folders encoding problem using EAS (#4240)
- [eas] avoid sync requests for shared folders every second (#4275)
- [eas] we skip the organizer from the attendees list (#4402)

View File

@ -221,6 +221,12 @@ body {
position: absolute;
&.sg-flip {
transform: rotateY( 180deg );
.sg-face {
pointer-events: none;
}
.sg-back {
pointer-events: auto;
}
}
.sg-face, .sg-back {
backface-visibility: hidden;
@ -233,6 +239,7 @@ body {
}
.sg-back {
transform: rotateY( 180deg );
pointer-events: none;
}
}
}