We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 006a2ae commit 5febe97Copy full SHA for 5febe97
gui/src/renderer/components/cell/Label.tsx
@@ -30,7 +30,10 @@ const StyledTintedIcon = styled(ImageView).attrs((props: IImageViewProps) => ({
30
tintColor: props.tintColor ?? colors.white60,
31
tintHoverColor: props.tintHoverColor ?? props.tintColor ?? colors.white60,
32
}))((props: IImageViewProps) => ({
33
- [CellButton + ':hover &']: {
+ ':hover': {
34
+ backgroundColor: props.tintColor,
35
+ },
36
+ [`${CellButton}:not(:disabled):hover &`]: {
37
backgroundColor: props.tintHoverColor,
38
},
39
}));
0 commit comments