mirror of https://github.com/lidarr/Lidarr
New: Increase clickable area of artist select in poster/overview
(cherry picked from commit 57a64b056a51ff539f5152d194689b4e2c693beb) Closes #3366
This commit is contained in:
parent
77cfd19c43
commit
8364cba12f
|
@ -1,36 +1,38 @@
|
|||
.checkButton {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 3;
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
}
|
||||
|
||||
.checkContainer {
|
||||
position: absolute;
|
||||
top: 10px;
|
||||
left: 10px;
|
||||
z-index: 3;
|
||||
top: 8px;
|
||||
left: 8px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
border-radius: 50%;
|
||||
background-color: var(--defaultColor);
|
||||
}
|
||||
|
||||
.icon {
|
||||
position: absolute;
|
||||
top: -1px;
|
||||
left: -1px;
|
||||
}
|
||||
|
||||
.selected {
|
||||
composes: icon;
|
||||
|
||||
color: var(--lidarrGreen);
|
||||
|
||||
&:hover {
|
||||
color: var(--white);
|
||||
}
|
||||
}
|
||||
|
||||
.unselected {
|
||||
composes: icon;
|
||||
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.checkButton {
|
||||
&:hover {
|
||||
color: var(--lidarrGreen);
|
||||
.selected {
|
||||
color: var(--white);
|
||||
}
|
||||
|
||||
.unselected {
|
||||
color: var(--lidarrGreen);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
// This file is automatically generated.
|
||||
// Please do not change this file!
|
||||
interface CssExports {
|
||||
'checkButton': string;
|
||||
'checkContainer': string;
|
||||
'icon': string;
|
||||
'selected': string;
|
||||
'unselected': string;
|
||||
}
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
import React, { useCallback } from 'react';
|
||||
import { useSelect } from 'App/SelectContext';
|
||||
import IconButton from 'Components/Link/IconButton';
|
||||
import Icon from 'Components/Icon';
|
||||
import Link from 'Components/Link/Link';
|
||||
import { icons } from 'Helpers/Props';
|
||||
import styles from './ArtistIndexPosterSelect.css';
|
||||
|
||||
|
@ -28,13 +29,15 @@ function ArtistIndexPosterSelect(props: ArtistIndexPosterSelectProps) {
|
|||
);
|
||||
|
||||
return (
|
||||
<IconButton
|
||||
className={styles.checkContainer}
|
||||
iconClassName={isSelected ? styles.selected : styles.unselected}
|
||||
name={isSelected ? icons.CHECK_CIRCLE : icons.CIRCLE_OUTLINE}
|
||||
size={20}
|
||||
onPress={onSelectPress}
|
||||
/>
|
||||
<Link className={styles.checkButton} onPress={onSelectPress}>
|
||||
<span className={styles.checkContainer}>
|
||||
<Icon
|
||||
className={isSelected ? styles.selected : styles.unselected}
|
||||
name={isSelected ? icons.CHECK_CIRCLE : icons.CIRCLE_OUTLINE}
|
||||
size={20}
|
||||
/>
|
||||
</span>
|
||||
</Link>
|
||||
);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue