mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
Add hover background color in Indexer Table Index
This commit is contained in:
@@ -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;
|
||||||
|
@@ -64,6 +64,7 @@ const Row: React.FC<ListChildComponentProps<RowItemData>> = ({
|
|||||||
justifyContent: 'space-between',
|
justifyContent: 'space-between',
|
||||||
...style,
|
...style,
|
||||||
}}
|
}}
|
||||||
|
className={styles.row}
|
||||||
>
|
>
|
||||||
<IndexerIndexRow
|
<IndexerIndexRow
|
||||||
indexerId={indexer.id}
|
indexerId={indexer.id}
|
||||||
|
Reference in New Issue
Block a user