diff --git a/static/css/transbeam.css b/static/css/transbeam.css index a8d0792..870067b 100644 --- a/static/css/transbeam.css +++ b/static/css/transbeam.css @@ -175,8 +175,9 @@ tr.unavailable td.file_download { margin-right: auto; } -#download_contents h3 { - margin-bottom: 0; +#download_contents summary { + font-size: 24px; + font-weight: bold; } #download_contents table { diff --git a/templates/download.html b/templates/download.html index f282db2..a4c5b67 100644 --- a/templates/download.html +++ b/templates/download.html @@ -26,18 +26,20 @@ {% match file.contents %} {% when Some with (files) %}
-

Contents

- - {% let offsets = offsets.as_ref().unwrap() %} - {% for f in files %} - - - - - - - {% endfor %} -
{{ bytesize::to_string(f.size.clone(), false).replace(" ", "") }}{{ f.name }}
+
+ Show file list + + {% let offsets = offsets.as_ref().unwrap() %} + {% for f in files %} + + + + + + + {% endfor %} +
{{ bytesize::to_string(f.size.clone(), false).replace(" ", "") }}{{ f.name }}
+
{% else %} {% endmatch %}