Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/vs/workbench/contrib/coderm/browser/inactiveOverlay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -139,11 +139,11 @@ export class InactiveOverlayController extends Disposable implements IWorkbenchC
left: 0;
right: 0;
bottom: 0;
// Why: 10000 deliberately sits above every standard VS Code layer
// (modal editor backdrop=2540, notifications=2545, quick input=2550,
// dialogs=2575) so the overlay covers all of them when the window is
// inactive — including a dialog or quick pick that happens to be open
// at the moment focus is lost.
/* Why: 10000 deliberately sits above every standard VS Code layer
* (modal editor backdrop=2540, notifications=2545, quick input=2550,
* dialogs=2575) so the overlay covers all of them when the window is
* inactive — including a dialog or quick pick that happens to be open
* at the moment focus is lost. */
z-index: 10000;
display: none;
align-items: center;
Expand Down
Loading