From 284b89a5fd497fc598b2ed2683d7997b3e0094a4 Mon Sep 17 00:00:00 2001 From: Nivedita Rani <72278830+Niveditarani@users.noreply.github.com> Date: Thu, 1 May 2025 19:55:17 +0200 Subject: [PATCH] fix: iframe overlap issue (PR 1250) * Removed css property overflow: hidden at the parent container which was interfering with the layout calculations and was forcefully clipping child elements * Replace css property overflow: hidden with contain: paint to fix stacking without masking border-radius Fixes #1233 --- src/gui/src/css/style.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/src/css/style.css b/src/gui/src/css/style.css index 6e5e819cc..c0573eefd 100644 --- a/src/gui/src/css/style.css +++ b/src/gui/src/css/style.css @@ -904,13 +904,13 @@ span.header-sort-icon img { padding: 0; border: 1px solid #9a9a9a; box-shadow: 0px 0px 15px #00000066; - overflow: hidden; border-radius: 4px; border: none; transition: opacity .2s; user-select: none !important; -moz-user-select: none !important; -webkit-user-select: none; + contain: paint; } .window[data-is_maximized="1"] {