un artista delle tabelle
This commit is contained in:
parent
6c7f0c9c78
commit
b701f450bd
1 changed files with 9 additions and 2 deletions
|
@ -1,14 +1,19 @@
|
|||
<style>
|
||||
.talk-grid {
|
||||
table-layout: fixed;
|
||||
table-layout: auto;
|
||||
width: 100%;
|
||||
border-collapse: unset;
|
||||
}
|
||||
.talk-grid > thead th:first-child {
|
||||
max-width: 5em;
|
||||
}
|
||||
td.talk {
|
||||
border: 1px solid;
|
||||
border-radius: 0.3em;
|
||||
}
|
||||
.talk-grid tr { line-height: 1em; }
|
||||
.talk-grid tr:hover { background-color: #980e0eb3; }
|
||||
.talk-grid td:first-child { font-size: 60%; }
|
||||
</style>
|
||||
<table class="talk-grid">
|
||||
<thead>
|
||||
|
@ -28,7 +33,9 @@ td.talk {
|
|||
<td></td>
|
||||
{% elif not talk.skip %}
|
||||
<td class="talk" rowspan="{{talk.duration // timestep}}">
|
||||
<a href="#talk-{{talk.id}}"> {{talk.title}}</a>
|
||||
<a href="#talk-{{talk.id}}"
|
||||
title="{{talk.tags|join(",")}}"
|
||||
>{{talk.title}}</a>
|
||||
</td>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Reference in a new issue