You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Radarr/frontend/src/Movie/Index/Select/MovieIndexPosterSelect.css

39 lines
494 B

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