Velká revize stylů (a některých JS) #44

Merged
zelvuska merged 50 commits from static-files-upgrade into master 2024-10-22 20:00:12 +02:00
3 changed files with 11 additions and 1 deletions
Showing only changes of commit d41eb64ab5 - Show all commits

View file

@ -151,7 +151,7 @@ div.cislo_odkazy ul {
border-left: solid 1px;
}
.tabulka_oramovane_sloupce tr {
.tabulka_oramovane_sloupce thead tr {
border-bottom: solid 1px;
}

View file

@ -1,5 +1,6 @@
<div style="overflow-x: auto;">
<table class='tabulka_oramovane_sloupce'>
<thead>
<tr>
<th>#</th>
<th>Jméno</th>
@ -25,6 +26,9 @@
<th>Za číslo</th>
<th>Za ročník</th>
<th>Odjakživa</th>
</tr>
</thead>
<tbody>
{% for rv in vysledkovka.radky_vysledkovky %}
<tr>
<td>{% autoescape off %}{{ rv.poradi }}{% endautoescape %}</td>
@ -46,6 +50,7 @@
<td>{{ rv.body_celkem_odjakziva }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>

View file

@ -1,4 +1,5 @@
<table class='tabulka_oramovane_sloupce'>
<thead>
<tr>
<th>#</th>
<th>Jméno</th>
@ -9,7 +10,10 @@
{{c.rocnik.rocnik}}.{{ c.poradi }}</a></th>
{% endfor %}
<th>Celkem</th>
</tr>
</thead>
<tbody>
{% for rv in vysledkovka.radky_vysledkovky %}
<tr>
<td>{% autoescape off %}{{ rv.poradi }}{% endautoescape %}</td>
@ -26,4 +30,5 @@
<td><b>{{ rv.body_rocnik }}</b></td>
</tr>
{% endfor %}
<tbody>
</table>