Skip to content

Commit

Permalink
Fix z-index overlay issue in dock panels (#14695)
Browse files Browse the repository at this point in the history
  • Loading branch information
msujew authored Jan 7, 2025
1 parent 202ab63 commit 9edbf2c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions packages/core/src/browser/style/dockpanel.css
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0-only WITH Classpath-exception-2.0
********************************************************************************/

/*
* phosphor.js sets the z-index of its panels to 0, which causes overlay issues
* See also https://github.com/eclipse-theia/theia/issues/14290
*/
.p-SplitPanel-child,
.p-DockPanel,
.p-DockPanel-widget {
z-index: initial;
}

.p-DockPanel.p-SplitPanel-child {
padding: 0px;
}
Expand Down

0 comments on commit 9edbf2c

Please sign in to comment.