live seat availability: fetch from server webhook, orange/red styling when <10/0 seats, disable sold-out locations

This commit is contained in:
Oliver
2026-06-14 16:54:13 -03:00
parent ea58be1d97
commit 19183b42a8
5 changed files with 136 additions and 18 deletions
+8
View File
@@ -972,6 +972,14 @@ section {
.pricing-config-select:focus {
border-color: var(--accent);
}
.pricing-config-select.low-seats {
border-color: var(--warning);
box-shadow: 0 0 0 2px rgba(255, 170, 0, 0.2);
}
.pricing-config-select.no-seats {
border-color: var(--danger);
box-shadow: 0 0 0 2px rgba(255, 59, 59, 0.2);
}
.pricing-config-input {
background: var(--bg);
border: 1px solid var(--border);