fix: iframe overlap issue (PR 1250)
Docker Image CI / build-and-push-image (push) Has been cancelled
Maintain Release Merge PR / update-release-pr (push) Has been cancelled
release-please / release-please (push) Has been cancelled
test / test (18.x) (push) Has been cancelled
test / test (20.x) (push) Has been cancelled
test / test (22.x) (push) Has been cancelled

* 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 13:55:17 -04:00
committed by GitHub
parent ea241540b9
commit 284b89a5fd
+1 -1
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"] {