From 2151b2dae3eebe0da9638948074ce28acd296f30 Mon Sep 17 00:00:00 2001 From: tomt610 Date: Tue, 13 Jan 2026 00:40:26 +0000 Subject: [PATCH] fix: Use absolute positioning for strip widget container to fill full panel height --- style.css | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index f846b05..eac54dc 100644 --- a/style.css +++ b/style.css @@ -10970,17 +10970,22 @@ body:has(.rpg-panel[data-theme="light"]) .rpg-fab-widget:hover { /* Strip Widget Container - hidden by default, shown when collapsed with strip widgets enabled */ .rpg-strip-widget-container { display: none; + position: absolute; + top: 0; + left: 0; + right: 0; + bottom: 0; flex-direction: column; align-items: center; gap: 8px; padding: 8px 4px; padding-top: 40px; width: 100%; - height: 100%; overflow-y: auto; overflow-x: hidden; scrollbar-width: thin; scrollbar-color: var(--rpg-border) transparent; + z-index: 10; } /* Show strip widgets when panel is collapsed and strip widgets are enabled */