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:
parent
d7025a98de
commit
028152d732
@ -1,3 +1,11 @@
|
|||||||
.tableScroller {
|
.tableScroller {
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.row {
|
||||||
|
transition: background-color 500ms;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--tableRowHoverBackgroundColor);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
@ -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;
|
||||||
|
@ -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}
|
||||||
|
Loading…
Reference in New Issue
Block a user