Fix highlight selection background colour
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
This commit is contained in:
committed by
Facebook GitHub Bot
parent
7227f722ac
commit
a357e280c2
@@ -50,7 +50,7 @@ const BaseContainer = styled.div<{
|
|||||||
paddingLeft: 10,
|
paddingLeft: 10,
|
||||||
userSelect: 'text',
|
userSelect: 'text',
|
||||||
width: '100%',
|
width: '100%',
|
||||||
backgroundColor: props.hovered ? '#f9f9f9' : '',
|
backgroundColor: props.hovered ? theme.selectionBackgroundColor : '',
|
||||||
}));
|
}));
|
||||||
BaseContainer.displayName = 'DataInspector:BaseContainer';
|
BaseContainer.displayName = 'DataInspector:BaseContainer';
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user