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
This commit is contained in:
Nivedita Rani
2025-05-01 19:55:17 +02:00
committed by GitHub
parent ea241540b9
commit 284b89a5fd

View File

@@ -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"] {