This commit is contained in:
Tomas Dvorak
2025-10-21 15:02:05 +02:00
parent 68e69e00cc
commit 63700eedb2
103 changed files with 12442 additions and 446 deletions
+28
View File
@@ -518,6 +518,34 @@ html {
.table-card .standing-row .team .name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-weight: 600; color: var(--text); }
.table-card .standing-row .pts { text-align: right; font-weight: 800; color: var(--secondary); font-size: 1.1rem; }
/* Compact standings table with full statistics */
.standings-table-compact {
font-size: 0.85rem;
}
.standings-table-compact thead th {
position: sticky;
top: 0;
background: var(--bg);
z-index: 1;
border-bottom: 2px solid var(--card-border);
}
.standings-table-compact tbody tr {
position: relative;
}
.standings-table-compact tbody tr + tr {
margin-top: 4px;
}
/* Hide score column on smaller screens to maintain compact layout */
@media (max-width: 1200px) {
.standings-table-compact .hide-mobile {
display: none !important;
}
}
/* Enriched standings table (logos, colors, motion) */
.card.tables .table.enriched { margin-top: 8px; }
.card.tables .table.enriched .tr {