From 19404a5063db83d58a8865e2cf6d7bbb4a759633 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20G=C3=A4rtner?= <andreas.gaertner@mni.thm.de> Date: Thu, 6 Oct 2016 18:18:02 +0200 Subject: [PATCH] Bugfix: Fix major flexbox layout problems for latest firefox versions --- src/main/webapp/resources/sass/app/_bugfixes.scss | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/main/webapp/resources/sass/app/_bugfixes.scss b/src/main/webapp/resources/sass/app/_bugfixes.scss index e6a1e8fc1..f8249798f 100644 --- a/src/main/webapp/resources/sass/app/_bugfixes.scss +++ b/src/main/webapp/resources/sass/app/_bugfixes.scss @@ -65,3 +65,14 @@ body.x-android.splashscreenClosed { body.x-windows { touch-action: none !important; } + +/* fix flexbox rendering in firefox 48+ */ +.x-firefox { + .x-button, + .x-layout-box, + .x-layout-box > .x-layout-box-item { + display: -webkit-box !important; + display: -ms-flexbox !important; + display: flex !important; + } +} -- GitLab