1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-26 04:33:01 +01:00

New: Add hover background color to Series table

This commit is contained in:
Bogdan 2023-07-23 03:07:20 +03:00 committed by GitHub
parent d7025a98de
commit 028152d732
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -65,6 +65,7 @@ const Row: React.FC<ListChildComponentProps<RowItemData>> = ({
justifyContent: 'space-between', justifyContent: 'space-between',
...style, ...style,
}} }}
className={styles.row}
> >
<SeriesIndexRow <SeriesIndexRow
seriesId={series.id} seriesId={series.id}