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 {
274
274
this . nonce ) ;
275
275
276
276
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 ) ;
279
279
return /* html */ `
280
280
<html lang="en">
281
281
<head>
@@ -293,11 +293,11 @@ export class BackLayerWebView<T extends ICommonCellInfo> extends Themable {
293
293
">` : '' }
294
294
<style nonce="${ this . nonce } ">
295
295
::highlight(find-highlight) {
296
- background-color: var(--vscode-editor-findMatchBackground, ${ findHighlight } );
296
+ background-color: var(--vscode-editor-findMatchBackground, ${ findMatchHighlight } );
297
297
}
298
298
299
299
::highlight(current-find-highlight) {
300
- background-color: var(--vscode-editor-findMatchHighlightBackground, ${ currentMatchHighlight } );
300
+ background-color: var(--vscode-editor-findMatchHighlightBackground, ${ currentHighlight } );
301
301
}
302
302
303
303
#container .cell_container {
You can’t perform that action at this time.
0 commit comments