From 7b0aa2320dedadd299b7ef5469b62bd4e1b5e3a7 Mon Sep 17 00:00:00 2001 From: Mattia Del Franco Date: Fri, 6 Jan 2023 12:34:51 +0100 Subject: [PATCH] Fixed windows z-index Changed position type of #draggable-windows-container from absolute to fixed to getting working the z-index (now toolbars, notifications and infostand are displayed on top of windows). --- src/common/index.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/index.scss b/src/common/index.scss index b9e5297c..e0e11081 100644 --- a/src/common/index.scss +++ b/src/common/index.scss @@ -203,7 +203,7 @@ } #draggable-windows-container { - position: absolute; + position: fixed; top: 0; left: 0; width: 100%;