You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
39 lines
490 B
CSS
39 lines
490 B
CSS
.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(--sonarrBlue);
|
|
}
|
|
|
|
.unselected {
|
|
color: var(--white);
|
|
}
|
|
|
|
.checkButton {
|
|
&:hover {
|
|
.selected {
|
|
color: var(--white);
|
|
}
|
|
|
|
.unselected {
|
|
color: var(--sonarrBlue);
|
|
}
|
|
}
|
|
}
|