Skip to content

Commit

Permalink
use a different color for hover than read and unread backgrounds
Browse files Browse the repository at this point in the history
  • Loading branch information
Athou committed Apr 28, 2023
1 parent 56baf82 commit fe1b3a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commafeed-client/src/components/content/FeedEntry.tsx
Expand Up @@ -35,7 +35,7 @@ const useStyles = createStyles((theme, props: FeedEntryProps & { viewMode?: View

let backgroundHoverColor = backgroundColor
if (!props.expanded) {
backgroundHoverColor = theme.colorScheme === "dark" ? theme.colors.dark[7] : theme.colors.gray[0]
backgroundHoverColor = theme.colorScheme === "dark" ? theme.colors.dark[6] : theme.colors.gray[1]
}

const styles = {
Expand Down

0 comments on commit fe1b3a3

Please sign in to comment.