Rende usabili calendario, overlay ospite e stato diretta del cartellone.
Il calendario non deve più scorrere in orizzontale, il logo a destra non copre il nome e una diretta YouTube o in collegamento compare come In diretta. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -1183,6 +1183,93 @@ body.invite-editor--resizing {
|
||||
|
||||
.tournament-hub-hint { color: #888; margin: 0 0 12px; }
|
||||
.tournament-table-wrap { overflow-x: auto; margin-top: 8px; }
|
||||
.tournament-match-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 12px;
|
||||
margin-top: 8px;
|
||||
min-width: 0;
|
||||
overflow-x: clip;
|
||||
}
|
||||
.tournament-match-row {
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr) minmax(0, 0.7fr);
|
||||
gap: 10px 12px;
|
||||
align-items: end;
|
||||
min-width: 0;
|
||||
padding: 14px;
|
||||
border: 1px solid #2a2a36;
|
||||
border-radius: 12px;
|
||||
background: #14141c;
|
||||
}
|
||||
.tournament-match-row__field,
|
||||
.tournament-match-row__side,
|
||||
.tournament-match-row__score {
|
||||
min-width: 0;
|
||||
}
|
||||
.tournament-match-row__field label,
|
||||
.tournament-match-row__label {
|
||||
display: block;
|
||||
margin-bottom: 6px;
|
||||
color: #9a9aa8;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 0.02em;
|
||||
}
|
||||
.tournament-match-row__phase {
|
||||
margin: 0;
|
||||
padding: 8px 0;
|
||||
color: #e8e8ee;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
.tournament-match-row__sides {
|
||||
grid-column: 1 / -1;
|
||||
display: grid;
|
||||
grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr) auto;
|
||||
gap: 8px 10px;
|
||||
align-items: end;
|
||||
min-width: 0;
|
||||
}
|
||||
.tournament-match-row__actions {
|
||||
grid-column: 1 / -1;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.tournament-match-row .tournament-match-form__datetime,
|
||||
.tournament-match-row .tournament-match-form__court,
|
||||
.tournament-match-row .tournament-match-form__team {
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
min-width: 0;
|
||||
margin-bottom: 0;
|
||||
padding: 8px 10px;
|
||||
font-size: 0.9rem;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
@media (max-width: 799px) {
|
||||
.tournament-match-row {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
}
|
||||
.tournament-match-row__field--phase {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
.tournament-match-row__sides {
|
||||
grid-template-columns: minmax(0, 1fr) 44px minmax(0, 1fr);
|
||||
}
|
||||
.tournament-match-row__score {
|
||||
grid-column: 1 / -1;
|
||||
}
|
||||
}
|
||||
@media (max-width: 560px) {
|
||||
.tournament-match-row,
|
||||
.tournament-match-row__sides {
|
||||
grid-template-columns: minmax(0, 1fr);
|
||||
}
|
||||
.tournament-match-row__field--phase {
|
||||
grid-column: auto;
|
||||
}
|
||||
.tournament-match-swap-col {
|
||||
justify-self: center;
|
||||
}
|
||||
}
|
||||
.tournament-index-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
@@ -1205,19 +1292,19 @@ body.invite-editor--resizing {
|
||||
background: #12121a;
|
||||
flex-shrink: 0;
|
||||
}
|
||||
.tournament-match-table .tournament-match-form__datetime {
|
||||
table.tournament-match-table .tournament-match-form__datetime {
|
||||
min-width: 190px;
|
||||
margin-bottom: 0;
|
||||
padding: 8px 10px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.tournament-match-table .tournament-match-form__court {
|
||||
table.tournament-match-table .tournament-match-form__court {
|
||||
min-width: 120px;
|
||||
margin-bottom: 0;
|
||||
padding: 8px 10px;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
.tournament-match-table .tournament-match-form__team {
|
||||
table.tournament-match-table .tournament-match-form__team {
|
||||
min-width: 160px;
|
||||
max-width: 220px;
|
||||
margin-bottom: 0;
|
||||
@@ -1260,6 +1347,8 @@ body.invite-editor--resizing {
|
||||
padding: 4px 10px;
|
||||
font-size: 0.8rem;
|
||||
margin: 0;
|
||||
flex-shrink: 0;
|
||||
white-space: nowrap;
|
||||
}
|
||||
.tournament-match-swap-col {
|
||||
width: 44px;
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
event.stopImmediatePropagation();
|
||||
if (form.dataset.swapBusy === "1") return;
|
||||
|
||||
var row = form.closest("tr");
|
||||
var row = form.closest(".tournament-match-row") || form.closest("tr");
|
||||
if (!row) return;
|
||||
|
||||
form.dataset.swapBusy = "1";
|
||||
|
||||
Reference in New Issue
Block a user