瀏覽代碼

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
Nivedita Rani 2 周之前
父節點
當前提交
284b89a5fd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/gui/src/css/style.css

+ 1 - 1
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"] {