Review players search behavior (arrow keys and click outside)

This commit is contained in:
Claude Brisson
2024-02-24 06:04:42 +01:00
parent 816ef24136
commit 945ae093d3
3 changed files with 23 additions and 5 deletions

View File

@@ -444,12 +444,13 @@
display: inline-block;
text-align: center;
cursor: pointer;
color: gray;
}
.checkbox {
width: 50px;
height: 26px;
border-radius: 18px;
background-color: #F7D6A3;
background-color: #dadada;
display: inline-flex;
align-items: center;
padding-left: 5px;
@@ -465,11 +466,14 @@
}
}
input:checked + .checkbox {
background-color: rgb(218, 114, 80);
background-color: rgb(218, 154, 80);
.circle {
transform: translateX(20px);
}
}
input:checked + .checkbox + label {
color: black;
}
}
@media print {