From befa48edfb022ae35828b55ad2b4c9e02699310a Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 3 Mar 2026 13:29:36 -0300 Subject: [PATCH] fix: remove 28px top offset for maximized windows - Change window-element top from 28px to 0 when maximized - Minibar is not present, so window should fill screen from top - Removes blank space at top when window is maximized --- ui/suite/css/desktop.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/suite/css/desktop.css b/ui/suite/css/desktop.css index 0ab1234..1b4a722 100644 --- a/ui/suite/css/desktop.css +++ b/ui/suite/css/desktop.css @@ -267,10 +267,10 @@ body.window-maximized .bg-svg { opacity: 0 !important; } -/* Ensure maximized window is below minibar (28px height) */ +/* Ensure maximized window fills the screen without minibar offset */ body.window-maximized .window-element { z-index: 9998 !important; /* Lower than minibar's 9999 */ - top: 28px !important; /* Below the minibar */ + top: 0 !important; /* No minibar offset - start at top */ } /* Ensure window body is opaque */