remove low-seat coloring on select and options (normal appearance), keep sold-out red/disabled only

This commit is contained in:
Oliver
2026-06-14 19:35:02 -03:00
parent da598a8ead
commit eab62121c3
3 changed files with 1 additions and 14 deletions
+1 -5
View File
@@ -665,8 +665,6 @@ async function initServerLocations() {
sel.classList.remove("low-seats", "no-seats");
if (minAvail <= 0) {
sel.classList.add("no-seats");
} else if (minAvail < 10) {
sel.classList.add("low-seats");
}
servers.forEach(function (s) {
@@ -683,10 +681,8 @@ async function initServerLocations() {
opt.style.color = "#ff4444";
opt.style.fontWeight = "600";
} else if (available < 10) {
// Low seats — orange with count
// Low seats — show count
opt.textContent = label + " (available " + available + ")";
opt.style.color = "#ff9900";
opt.style.fontWeight = "600";
} else {
// Plenty of seats
opt.textContent = label + " (available " + available + ")";