feat(schedule): add occurrence filter with pending result status

This commit is contained in:
Lucas Kalil 2026-06-15 14:33:33 -03:00
parent 5cbd3e6f3d
commit 99ea02a604
6 changed files with 122 additions and 10 deletions

View file

@ -544,6 +544,11 @@ button {
color: var(--text-secondary);
}
.match-status.pending {
color: var(--accent-blue);
font-weight: 600;
}
.match-teams {
display: grid;
grid-template-columns: 1fr auto 1fr;
@ -977,6 +982,23 @@ dialog.match-modal::backdrop {
color: var(--accent-gold);
}
.occ-filter {
flex: 0 1 auto;
cursor: pointer;
white-space: nowrap;
transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.occ-filter:hover {
border-color: var(--accent-gold);
}
.occ-filter.active {
border-color: var(--accent-gold);
background: rgba(212, 175, 55, 0.16);
color: var(--accent-gold);
}
.modal-actions {
display: flex;
justify-content: flex-end;