aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2022-04-07 14:18:02 -0700
committerBryan Newbold <bnewbold@robocracy.org>2022-04-07 14:18:02 -0700
commit67b71d583ea0c1e2c0cae859fbcce9bddf4df7bd (patch)
tree6e3c0b358b651138b5ccb5ec659fe225c353332b /python
parent048985d59d3ee3e1b73df120cc6e39ae19360ed5 (diff)
downloadfatcat-67b71d583ea0c1e2c0cae859fbcce9bddf4df7bd.tar.gz
fatcat-67b71d583ea0c1e2c0cae859fbcce9bddf4df7bd.zip
web: fileset manifest table as 'single line' class, with scrolling overflow
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_web/templates/fileset_view.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/fatcat_web/templates/fileset_view.html b/python/fatcat_web/templates/fileset_view.html
index 939925f6..6f3f802e 100644
--- a/python/fatcat_web/templates/fileset_view.html
+++ b/python/fatcat_web/templates/fileset_view.html
@@ -49,7 +49,8 @@ No known public URL, mirror, or archive for this File Set.
<h3>File Manifest ({{ fileset.manifest|count }})</h3>
{% if fileset.manifest %}
-<table class="ui compact table" style="z-index: 10;">
+<div style="overflow-x: auto;">
+<table class="ui compact single line table">
<thead>
<tr>
<th class="collapsing"></th>
@@ -92,6 +93,7 @@ No known public URL, mirror, or archive for this File Set.
{% endfor %}
</tbody>
</table>
+</div>
{% else %}
<p>This File Set is empty (contains no files).
{% endif %}