Skip to content

Commit

Permalink
Merge branch 'bugfix/ARTESCA-14186' into q/3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bert-e committed Jan 24, 2025
2 parents 3261504 + 71f2371 commit 4d79d04
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/react/ui-elements/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,11 @@ export const Row = styled(HeadRow)`
// it's better to use 1px instead of spacing.r1, otherwise the border of some rows
// can look different cause of subpixel positioning
border-bottom: 1px solid ${(props) => props.theme.backgroundLevel1};
&:hover {
background-color: ${(props) => props.theme.backgroundLevel3};
&:hover,
&:focus {
background-color: ${(props) => props.theme.highlight};
outline: none;
cursor: pointer;
}
cursor: ${(props) => (props.onClick ? 'pointer' : 'default')};
box-sizing: border-box;
Expand Down

0 comments on commit 4d79d04

Please sign in to comment.