mirror of
https://expo.survex.com/repositories/troggle/.git
synced 2025-12-16 17:07:13 +00:00
fix long-standing problem of multi-columns on firefox
This commit is contained in:
@@ -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>
|
<h3>This year's caves</h3>
|
||||||
<div style="column-count: 3;">
|
<div style="column-count: 3; -moz-column-count: 3;">
|
||||||
<table class="searchable">
|
|
||||||
{% for cave in caves_this_year %}
|
{% for cave in caves_this_year %}
|
||||||
{% include 'cavelist_columns.html' %}
|
{% include 'cavelist_columns.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Last year's caves</h3>
|
<h3>Last year's caves</h3>
|
||||||
<div style="column-count: 3;">
|
<div style="column-count: 3;-moz-column-count: 3">
|
||||||
<table class="searchable">
|
|
||||||
{% for cave in caves_last_year %}
|
{% for cave in caves_last_year %}
|
||||||
{% include 'cavelist_columns.html' %}
|
{% include 'cavelist_columns.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h3>Previous year's caves</h3>
|
<h3>Previous year's caves</h3>
|
||||||
<div style="column-count: 3;">
|
<div style="column-count: 3;-moz-column-count: 3">
|
||||||
<table class="searchable">
|
|
||||||
{% for cave in caves_previous_year %}
|
{% for cave in caves_previous_year %}
|
||||||
{% include 'cavelist_columns.html' %}
|
{% include 'cavelist_columns.html' %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</table>
|
|
||||||
</div>
|
</div>
|
||||||
<p>
|
<p>
|
||||||
See <em><a href="/cavesall">All Caves</a></em> for all the caves in areas 1623, 1626, 1624, 1627
|
See <em><a href="/cavesall">All Caves</a></em> for all the caves in areas 1623, 1626, 1624, 1627
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<tr><td> <a href="/{{ cave.url }}">
|
<a href="/{{ cave.url }}">
|
||||||
{% if cave.unexplored %}
|
{% if cave.unexplored %}
|
||||||
<span style="color:red">
|
<span style="color:red" title="The cave is marked as unexplored/undescended">
|
||||||
{% else %}
|
{% else %}
|
||||||
<span>
|
<span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -28,4 +28,4 @@
|
|||||||
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</span>
|
</span>
|
||||||
</td></tr>
|
<br />
|
||||||
|
|||||||
Reference in New Issue
Block a user