Skip to content

Commit

Permalink
Merge pull request #237910 from simon-id/fix_findmatch_color
Browse files Browse the repository at this point in the history
fix: workbench search use correct findMatch colors (fix #237909)
  • Loading branch information
osortega authored Feb 7, 2025
2 parents df77130 + c8083ae commit 9856721
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export class FileMatchImpl extends Disposable implements ISearchTreeFileMatch {
stickiness: TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges,
zIndex: 13,
className: 'currentFindMatch',
inlineClassName: 'currentFindMatchInline',
overviewRuler: {
color: themeColorFromId(overviewRulerFindMatchForeground),
position: OverviewRulerLane.Center
Expand All @@ -44,6 +45,7 @@ export class FileMatchImpl extends Disposable implements ISearchTreeFileMatch {
description: 'search-find-match',
stickiness: TrackedRangeStickiness.NeverGrowsWhenTypingAtEdges,
className: 'findMatch',
inlineClassName: 'findMatchInline',
overviewRuler: {
color: themeColorFromId(overviewRulerFindMatchForeground),
position: OverviewRulerLane.Center
Expand Down

0 comments on commit 9856721

Please sign in to comment.