Skip to content

Commit

Permalink
Fix HTML W3C stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
nickygerritsen committed Nov 22, 2024
1 parent 21de969 commit eb5270e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion webapp/public/style_domjudge.css
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ img.affiliation-logo {
.silver-medal { background-color: #aaa }
.bronze-medal { background-color: #c08e55 }

#scoresolv,#scoretotal { width: 2.5em; }
#scoresolv,#scoretotal,#scoresolvmobile,#scoretotalmobile { width: 2.5em; }
.scorenc,.scorett,.scorepl { text-align: center; width: 2ex; }
.scorenc { font-weight: bold; }
td.scorenc { border-color: silver; border-right: 0; }
Expand Down
12 changes: 6 additions & 6 deletions webapp/templates/partials/scoreboard_table.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -39,22 +39,22 @@
{# output table column groups (for the styles) #}
<colgroup>
{% if enable_ranking %}
<col id="scorerank"/>
<col id="scorerankmobile"/>
{% endif %}
{% if showFlags %}
<col id="scoreflags"/>
<col id="scoreflagsmobile"/>
{% else %}
<col/>
{% endif %}
{% if showAffiliationLogos %}
<col id="scorelogos"/>
<col id="scorelogosmobile"/>
{% endif %}
<col id="scoreteamname"/>
<col id="scoreteamnamemobile"/>
</colgroup>
{% if enable_ranking %}
<colgroup>
<col id="scoresolv"/>
<col id="scoretotal"/>
<col id="scoresolvmobile"/>
<col id="scoretotalmobile"/>
</colgroup>
{% endif %}
<colgroup>
Expand Down

0 comments on commit eb5270e

Please sign in to comment.