checkpoint

This commit is contained in:
evilchili
2022-08-06 22:07:19 -07:00
parent 24a36e3096
commit 4f010ba507
4 changed files with 37 additions and 21 deletions
@@ -677,9 +677,11 @@ a.disabled:hover {
}
.statblock table tr td:first-of-type {
font-weight: bold;
white-space: nowrap;
}
.statblock table tr td:first-child:nth-last-child(1) {
.statblock table tr td:first-of-type:last-of-type {
font-weight: normal;
white-space: wrap;
}
.statblock table tr:last-child,
@@ -711,6 +713,7 @@ a.disabled:hover {
.statblock dl dd {
flex:0 0 75%;
margin-left: auto;
margin-bottom: 3em;
text-align: left;
text-overflow: ellipsis;
overflow: hidden;
@@ -11,8 +11,8 @@
{% for key in l if key in headers%}
{{ list_to_cols(l[key], headers) }}
{% endfor %}
{% else %}
<td>{{ l if l else "" }}</td>
{% elif l %}
<td>{{ l }}</td>
{% endif %}
{% endmacro %}