From a75ae849537e1d4e9f8f5e409642aaccbbe89741 Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Tue, 27 Feb 2018 09:30:12 -0500 Subject: [PATCH] (css) Fix scrolling of message with Firefox Fixes #4008, #4282, #4398 --- NEWS | 1 + UI/WebServerResources/scss/views/_view.scss | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/NEWS b/NEWS index cb3f9684e..3f3d417c0 100644 --- a/NEWS +++ b/NEWS @@ -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) diff --git a/UI/WebServerResources/scss/views/_view.scss b/UI/WebServerResources/scss/views/_view.scss index 86d2ef4ad..cdcb445aa 100644 --- a/UI/WebServerResources/scss/views/_view.scss +++ b/UI/WebServerResources/scss/views/_view.scss @@ -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; } } }