File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/vs/workbench/contrib/notebook/browser/view/renderers Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -274,8 +274,8 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Themable {
274274 this . nonce ) ;
275275
276276 const enableCsp = this . configurationService . getValue ( 'notebook.experimental.enableCsp' ) ;
277- const findHighlight = this . getColor ( editorFindMatch ) ;
278- const currentMatchHighlight = this . getColor ( editorFindMatchHighlight ) ;
277+ const currentHighlight = this . getColor ( editorFindMatch ) ;
278+ const findMatchHighlight = this . getColor ( editorFindMatchHighlight ) ;
279279 return /* html */ `
280280 <html lang="en">
281281 <head>
@@ -293,11 +293,11 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Themable {
293293 ">` : '' }
294294 <style nonce="${ this . nonce } ">
295295 ::highlight(find-highlight) {
296- background-color: var(--vscode-editor-findMatchBackground, ${ findHighlight } );
296+ background-color: var(--vscode-editor-findMatchBackground, ${ findMatchHighlight } );
297297 }
298298
299299 ::highlight(current-find-highlight) {
300- background-color: var(--vscode-editor-findMatchHighlightBackground, ${ currentMatchHighlight } );
300+ background-color: var(--vscode-editor-findMatchHighlightBackground, ${ currentHighlight } );
301301 }
302302
303303 #container .cell_container {
You can’t perform that action at this time.
0 commit comments