Skip to content

Commit

Permalink
Add default background color for modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Fryingpannn committed Oct 16, 2024
1 parent 46c656c commit fcbb9d2
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vs/workbench/browser/layout.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1507,6 +1507,8 @@ export abstract class Layout extends Disposable implements IWorkbenchLayoutServi
pearOverlayPartContainer.style.zIndex = "-10";
pearOverlayPartContainer.style.display = "absolute";
pearOverlayPartContainer.classList.add("pearoverlay-part-container");
pearOverlayPartContainer.style.backgroundColor = 'var(--vscode-editor-background)';

this.mainContainer.appendChild(pearOverlayPartContainer);
// Initialize PearOverlayPart in this new container
pearOverlayPart.create(pearOverlayPartContainer);
Expand Down

0 comments on commit fcbb9d2

Please sign in to comment.