Add: Player focus dropdown menu

This commit is contained in:
2025-03-15 18:10:42 -04:00
parent cb9462ce9b
commit 3a69f285f3
3 changed files with 167 additions and 158 deletions

View File

@@ -118,4 +118,33 @@ canvas {
cursor: pointer;
z-index: 101;
}
}
#playerSelect {
background-color: #333;
color: #fff;
border: 1px solid #555;
padding: 5px;
border-radius: 4px;
margin-left: 5px;
cursor: pointer;
min-width: 150px;
}
#playerSelect:hover {
background-color: #444;
}
#playerSelect option {
background-color: #333;
color: #fff;
padding: 5px;
}
#playerSelect option:hover {
background-color: #444;
}
.player-focus {
margin-top: 10px;
}