Skip to content

Commit f5308c6

Browse files
fix: change hover background color
part of #179
1 parent f623efd commit f5308c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/webview/SearchSidebar/SearchResultList/MatchList.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const styles = stylex.create({
1111
paddingLeft: '38px',
1212
listStyle: 'none',
1313
':hover': {
14-
background: 'var(--vscode-list-inactiveSelectionBackground)',
14+
background: 'var( --vscode-list-hoverBackground)',
1515
},
1616
// a hack to avoid setHover state, see also Actions.tsx
1717
// https://github.com/facebook/stylex/issues/373

src/webview/SearchSidebar/SearchResultList/TreeItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const styles = stylex.create({
2525
alignItems: 'center',
2626
background: 'var(--vscode-sideBar-background)',
2727
':hover': {
28-
background: 'var(--vscode-list-inactiveSelectionBackground)',
28+
background: 'var( --vscode-list-hoverBackground)',
2929
},
3030
},
3131
scrolled: {

0 commit comments

Comments
 (0)