1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-21 22:05:43 -04:00

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

This commit is contained in:
Qstick
2023-04-22 16:12:43 -05:00
parent 1bc299fd35
commit 7501fe095e
3 changed files with 39 additions and 33 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;
width: 18px;
height: 18px;
top: 8px;
left: 8px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: var(--defaultColor);
}
.icon {
position: absolute;
top: -1px;
left: -1px;
}
.selected {
composes: icon;
color: var(--sonarrBlue);
&:hover {
color: var(--white);
}
color: var(--primaryColor);
}
.unselected {
composes: icon;
color: var(--white);
}
.checkButton {
&:hover {
color: var(--sonarrBlue);
.selected {
color: var(--white);
}
.unselected {
color: var(--primaryColor);
}
}
}