File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
src/vs/workbench/contrib/accessibility/browser Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -45,19 +45,19 @@ export class UnfocusedViewDimmingContribution extends Disposable implements IWor
45
45
// Terminals
46
46
rules . add ( `.monaco-workbench .pane-body.integrated-terminal .terminal-wrapper:not(:focus-within) { ${ filterRule } }` ) ;
47
47
// Text editors
48
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .monaco-editor { ${ filterRule } }` ) ;
48
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .monaco-editor { ${ filterRule } }` ) ;
49
49
// Breadcrumbs
50
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .tabs-breadcrumbs { ${ filterRule } }` ) ;
50
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .tabs-breadcrumbs { ${ filterRule } }` ) ;
51
51
// Terminal editors
52
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .terminal-wrapper { ${ filterRule } }` ) ;
52
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .terminal-wrapper { ${ filterRule } }` ) ;
53
53
// Settings editor
54
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .settings-editor { ${ filterRule } }` ) ;
54
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .settings-editor { ${ filterRule } }` ) ;
55
55
// Keybindings editor
56
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .keybindings-editor { ${ filterRule } }` ) ;
56
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .keybindings-editor { ${ filterRule } }` ) ;
57
57
// Editor placeholder (error case)
58
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .monaco-editor-pane-placeholder { ${ filterRule } }` ) ;
58
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .monaco-editor-pane-placeholder { ${ filterRule } }` ) ;
59
59
// Welcome editor
60
- rules . add ( `.monaco-workbench .editor-group-container :not(.active ) .gettingStartedContainer { ${ filterRule } }` ) ;
60
+ rules . add ( `.monaco-workbench .editor-instance :not(:focus-within ) .gettingStartedContainer { ${ filterRule } }` ) ;
61
61
cssTextContent = [ ...rules ] . join ( '\n' ) ;
62
62
}
63
63
You can’t perform that action at this time.
0 commit comments