Skip to content

Commit

Permalink
Dim settings and keybindings editors
Browse files Browse the repository at this point in the history
Fixes #191612
Fixes #191611
  • Loading branch information
Tyriar committed Aug 29, 2023
1 parent 72d5c4d commit 4056fc8
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ export class UnfocusedViewDimmingContribution extends Disposable implements IWor
rules.add(`.monaco-workbench .editor-instance:not(:focus-within) .monaco-editor { ${filterRule} }`);
// Terminal editors
rules.add(`.monaco-workbench .editor-instance:not(:focus-within) .terminal-wrapper { ${filterRule} }`);
// Settings editor
rules.add(`.monaco-workbench .editor-instance:not(:focus-within) .settings-editor { ${filterRule} }`);
// Keybindings editor
rules.add(`.monaco-workbench .editor-instance:not(:focus-within) .keybindings-editor { ${filterRule} }`);
cssTextContent = [...rules].join('\n');
}

Expand Down

0 comments on commit 4056fc8

Please sign in to comment.