1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-19 21:46:43 -04:00
Files
Sonarr/frontend/src/Series/Index/Select/SeriesIndexPosterSelect.css
T

39 lines
490 B
CSS

.checkButton {
position: absolute;
top: 0;
left: 0;
z-index: 3;
width: 100%;
height: 100%;
}
.checkContainer {
position: absolute;
top: 8px;
left: 8px;
width: 20px;
height: 20px;
border-radius: 50%;
background-color: var(--defaultColor);
}
.selected {
color: var(--sonarrBlue);
}
.unselected {
color: var(--white);
}
.checkButton {
&:hover {
.selected {
color: var(--white);
}
.unselected {
color: var(--sonarrBlue);
}
}
}