mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 16:51:42 +03:00
hark: flip hovermarker flag
This commit is contained in:
parent
e128d88864
commit
2776f783ed
@ -207,7 +207,7 @@ const MessageWrapper = (props) => {
|
||||
<Box
|
||||
py='1'
|
||||
backgroundColor={
|
||||
hovering && props.hoverMarker !== false ? 'washedGray' : 'transparent'
|
||||
hovering && !props.hideHover ? 'washedGray' : 'transparent'
|
||||
}
|
||||
position='relative'
|
||||
{...bind}
|
||||
@ -235,7 +235,7 @@ interface ChatMessageProps {
|
||||
api: GlobalApi;
|
||||
highlighted?: boolean;
|
||||
renderSigil?: boolean;
|
||||
hoverMarker?: boolean;
|
||||
hideHover?: boolean;
|
||||
innerRef: (el: HTMLDivElement | null) => void;
|
||||
}
|
||||
|
||||
@ -268,7 +268,7 @@ class ChatMessage extends Component<ChatMessageProps> {
|
||||
highlighted,
|
||||
showOurContact,
|
||||
fontSize,
|
||||
hoverMarker
|
||||
hideHover
|
||||
} = this.props;
|
||||
|
||||
let { renderSigil } = this.props;
|
||||
@ -306,7 +306,7 @@ class ChatMessage extends Component<ChatMessageProps> {
|
||||
scrollWindow,
|
||||
highlighted,
|
||||
fontSize,
|
||||
hoverMarker
|
||||
hideHover
|
||||
};
|
||||
|
||||
const unreadContainerStyle = {
|
||||
|
@ -136,7 +136,7 @@ const GraphNodeContent = ({
|
||||
msg={post}
|
||||
fontSize='0'
|
||||
pt='2'
|
||||
hoverMarker={false}
|
||||
hideHover={true}
|
||||
/>
|
||||
</Row>
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user