New: Add hover background color to Artits table

(cherry picked from commit 028152d732efb8d260dc2565df8b827a44523e37)

Closes #3911
This commit is contained in:
Bogdan 2023-07-23 03:07:20 +03:00
parent 11e6d830b0
commit e00fbd6d7c
3 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,11 @@
.tableScroller { .tableScroller {
position: relative; position: relative;
} }
.row {
transition: background-color 500ms;
&:hover {
background-color: var(--tableRowHoverBackgroundColor);
}
}

View File

@ -1,6 +1,7 @@
// This file is automatically generated. // This file is automatically generated.
// Please do not change this file! // Please do not change this file!
interface CssExports { interface CssExports {
'row': string;
'tableScroller': string; 'tableScroller': string;
} }
export const cssExports: CssExports; export const cssExports: CssExports;

View File

@ -64,6 +64,7 @@ const Row: React.FC<ListChildComponentProps<RowItemData>> = ({
justifyContent: 'space-between', justifyContent: 'space-between',
...style, ...style,
}} }}
className={styles.row}
> >
<ArtistIndexRow <ArtistIndexRow
artistId={artist.id} artistId={artist.id}