2
0
mirror of https://expo.survex.com/repositories/troggle/.git synced 2025-12-16 13:47:07 +00:00

fix long-standing problem of multi-columns on firefox

This commit is contained in:
2025-07-29 11:10:19 +02:00
parent 2e26532837
commit 08577deeb5
2 changed files with 6 additions and 12 deletions

View File

@@ -32,30 +32,24 @@ See <em><a href="/cavesall">All Caves</a></em> for all the caves in areas 1623,
<h3>This year's caves</h3>
<div style="column-count: 3;">
<table class="searchable">
<div style="column-count: 3; -moz-column-count: 3;">
{% for cave in caves_this_year %}
{% include 'cavelist_columns.html' %}
{% endfor %}
</table>
</div>
<h3>Last year's caves</h3>
<div style="column-count: 3;">
<table class="searchable">
<div style="column-count: 3;-moz-column-count: 3">
{% for cave in caves_last_year %}
{% include 'cavelist_columns.html' %}
{% endfor %}
</table>
</div>
<h3>Previous year's caves</h3>
<div style="column-count: 3;">
<table class="searchable">
<div style="column-count: 3;-moz-column-count: 3">
{% for cave in caves_previous_year %}
{% include 'cavelist_columns.html' %}
{% endfor %}
</table>
</div>
<p>
See <em><a href="/cavesall">All Caves</a></em> for all the caves in areas 1623, 1626, 1624, 1627

View File

@@ -1,6 +1,6 @@
<tr><td> <a href="/{{ cave.url }}">
<a href="/{{ cave.url }}">
{% if cave.unexplored %}
<span style="color:red">
<span style="color:red" title="The cave is marked as unexplored/undescended">
{% else %}
<span>
{% endif %}
@@ -28,4 +28,4 @@
{% endif %}
</span>
</td></tr>
<br />