From 054e57e07429938e648db524a7b4c42b42322f1c Mon Sep 17 00:00:00 2001 From: "Rodrigo Rodriguez (Pragmatismo)" Date: Tue, 3 Mar 2026 13:36:15 -0300 Subject: [PATCH] fix: make maximized window fill entire screen with 100vh height - Add height: 100vh !important to maximized window-element - Add width: 100vw !important to maximized window-element - Window now fills entire screen (1920x1080) when maximized - Recovers 28px of vertical space previously lost to minibar offset --- ui/suite/css/desktop.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/suite/css/desktop.css b/ui/suite/css/desktop.css index 1b4a722..18c841f 100644 --- a/ui/suite/css/desktop.css +++ b/ui/suite/css/desktop.css @@ -271,6 +271,8 @@ body.window-maximized .bg-svg { body.window-maximized .window-element { z-index: 9998 !important; /* Lower than minibar's 9999 */ top: 0 !important; /* No minibar offset - start at top */ + height: 100vh !important; /* Fill entire screen height */ + width: 100vw !important; /* Fill entire screen width */ } /* Ensure window body is opaque */