File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -367,6 +367,8 @@ const FolderOverview: React.FC<FolderOverviewProps> = ({
367367 borderLeftWidth : '3px' ,
368368 borderLeftStyle : 'solid' ,
369369 borderLeftColor : 'rgb(var(--color-accent) / 0.45)' ,
370+ backgroundColor : 'rgb(var(--color-border) / 0.26)' ,
371+ borderRadius : '4px' ,
370372 } }
371373 >
372374 { highlightMatches ( result . searchSnippet , folderSearchTerm ) }
Original file line number Diff line number Diff line change @@ -356,6 +356,7 @@ const DocumentTreeItem: React.FC<DocumentTreeItemProps> = (props) => {
356356 const snippetAccentWidth = 3 ;
357357 const snippetMarginLeft = Math . max ( snippetPaddingLeft - snippetAccentPadding , 0 ) ;
358358 const snippetAccentColor = 'rgb(var(--color-accent) / 0.45)' ;
359+ const snippetBackgroundColor = 'rgb(var(--color-border) / 0.26)' ;
359360
360361 return (
361362 < li
@@ -523,6 +524,8 @@ const DocumentTreeItem: React.FC<DocumentTreeItemProps> = (props) => {
523524 borderLeftWidth : `${ snippetAccentWidth } px` ,
524525 borderLeftStyle : 'solid' ,
525526 borderLeftColor : snippetAccentColor ,
527+ backgroundColor : snippetBackgroundColor ,
528+ borderRadius : '4px' ,
526529 } }
527530 >
528531 { highlightMatches ( node . searchSnippet , searchTerm ) }
You can’t perform that action at this time.
0 commit comments