diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-10-20 15:02:51 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-10-20 15:02:51 -0700 |
commit | 5dd7a15db9656fc28f26dac77e5e9f6dc0d4dbc9 (patch) | |
tree | cc35bea00d5aec1b56a6184998d530d3086c25d7 /fatcat_scholar/templates/search.html | |
parent | 41aa0edaf826cd6561b4b12d1040d403db51e4ea (diff) | |
download | fatcat-scholar-5dd7a15db9656fc28f26dac77e5e9f6dc0d4dbc9.tar.gz fatcat-scholar-5dd7a15db9656fc28f26dac77e5e9f6dc0d4dbc9.zip |
html: several small tweaks and accessibility improvements
Diffstat (limited to 'fatcat_scholar/templates/search.html')
-rw-r--r-- | fatcat_scholar/templates/search.html | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/fatcat_scholar/templates/search.html b/fatcat_scholar/templates/search.html index 49af012..35ecfa5 100644 --- a/fatcat_scholar/templates/search.html +++ b/fatcat_scholar/templates/search.html @@ -33,7 +33,7 @@ </details> {% if hits %} - <span style="font-size: 1.5em;">{{ "{:,}".format(hits.count_found) }}</span> + <span class="hit-count" style="font-size: 1.5em;">{{ "{:,}".format(hits.count_found) }}</span> Hits <span style="color: rgba(0,0,0,0.55);">in {{ format_query_time(hits.query_time_ms) }}</span> {% else %} @@ -46,7 +46,16 @@ <nav class="ui tablet-hide two wide column"> {% if hits %} <div style="width: 100%; text-align: end;"> - <h3 style="font-size: {% if hits.count_found >= 10000000 %}1.0em{% elif hits.count_found >= 1000 %}1.5em{% else %}2.0em{% endif %};">{{ "{:,}".format(hits.count_found) }}</h3> + {% if hits.count_found >= 10000000 %} + {% set count_size = "1.0em" %} + {% elif hits.count_found >= 1000 %} + {% set count_size = "1.5em" %} + {% else %} + {% set count_size = "2.0em" %} + {% endif %} + <span class="hit-count" style="display: block; font-size: {{ count_size }};"> + {{ "{:,}".format(hits.count_found) }} + </span> {{ _("Hits") }} </div> <div style="text-align: end;"> @@ -55,7 +64,7 @@ <div class="ui clearing divider"></div> {% endif %} - <div style="text-align: end; white-space: nowrap;"> + <div style="white-space: nowrap; direction: {% if locale in ['ar'] %}ltr{% else %}rtl{% endif %};"> {{ search_macros.query_option(query.time_options, query.filter_time) }} {{ search_macros.query_option(query.type_options, query.filter_type) }} {{ search_macros.query_option(query.availability_options, query.filter_availability) }} |