From efb8202a16034b4870d96a54cf7682c767270879 Mon Sep 17 00:00:00 2001 From: CylonicRaider Date: Wed, 8 Mar 2017 22:54:24 +0100 Subject: [PATCH] Fix notice display Chrome and (starting with version 52) Firefox both push the absolutely positioned .notice-stack upwards to the top of the page. A zero height on the element instead of that leads to the same appearance of the notices hovering over the scrollbar as observed previously without the repositioning. --- client/lib/main.less | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/client/lib/main.less b/client/lib/main.less index 5b28a5c8..69673af9 100644 --- a/client/lib/main.less +++ b/client/lib/main.less @@ -639,9 +639,7 @@ iframe.js { } .notice-stack { - position: absolute; - left: 0; - right: 0; + height: 0; z-index: 11; }