1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00

New: Increase clickable area of series select in poster/overview

This commit is contained in:
Mark McDowall
2023-02-13 17:26:32 -08:00
parent 279d3a89b6
commit 57a64b056a
3 changed files with 32 additions and 27 deletions
@@ -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(--sonarrBlue);
&:hover {
color: var(--white);
}
}
.unselected {
composes: icon;
color: var(--white);
}
.checkButton {
&:hover {
color: var(--sonarrBlue);
.selected {
color: var(--white);
}
.unselected {
color: var(--sonarrBlue);
}
}
}