fix: background colors for record table (#5967)
# Summary - Address issue #5959 - Update background color on hover & click for record table # Test Plan 
This commit is contained in:
@ -32,7 +32,10 @@ const StyledColumnHeaderCell = styled.th<{
|
|||||||
${({ theme }) => {
|
${({ theme }) => {
|
||||||
return `
|
return `
|
||||||
&:hover {
|
&:hover {
|
||||||
background: ${theme.background.quaternary};
|
background: ${theme.background.secondary};
|
||||||
|
};
|
||||||
|
&:active {
|
||||||
|
background: ${theme.background.tertiary};
|
||||||
};
|
};
|
||||||
`;
|
`;
|
||||||
}};
|
}};
|
||||||
|
|||||||
Reference in New Issue
Block a user