mirror of
https://github.com/LucasKalil-Programador/world-2026-hub.git
synced 2026-07-04 17:41:28 -03:00
feat(schedule): add occurrence filter with pending result status
This commit is contained in:
parent
5cbd3e6f3d
commit
99ea02a604
6 changed files with 122 additions and 10 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue