mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-18 21:35:51 -04:00
abf3fc4557
(cherry picked from commit b116f63a1d95a23a6f3684e6b60ead60c2584f0f)
39 lines
494 B
CSS
39 lines
494 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(--primaryColor);
|
|
}
|
|
|
|
.unselected {
|
|
color: var(--white);
|
|
}
|
|
|
|
.checkButton {
|
|
&:hover {
|
|
.selected {
|
|
color: var(--white);
|
|
}
|
|
|
|
.unselected {
|
|
color: var(--primaryColor);
|
|
}
|
|
}
|
|
}
|