Skip to content
This repository has been archived by the owner on Nov 22, 2024. It is now read-only.

Commit

Permalink
Fix highlight selection background colour
Browse files Browse the repository at this point in the history
Summary: There was a regression in which the selection background color made the selection hard to read in dark mode.

Reviewed By: mweststrate

Differential Revision: D38572894

fbshipit-source-id: c46d384175132112e1223434534a379318bfa2ea
  • Loading branch information
lblasa authored and facebook-github-bot committed Aug 10, 2022
1 parent 7227f72 commit a357e28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ const BaseContainer = styled.div<{
paddingLeft: 10,
userSelect: 'text',
width: '100%',
backgroundColor: props.hovered ? '#f9f9f9' : '',
backgroundColor: props.hovered ? theme.selectionBackgroundColor : '',
}));
BaseContainer.displayName = 'DataInspector:BaseContainer';

Expand Down

0 comments on commit a357e28

Please sign in to comment.