diff options
author | Bryan Newbold <bnewbold@archive.org> | 2021-02-04 18:05:27 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2021-02-04 18:05:27 -0800 |
commit | 7cb5182bdcfad58069c5e0341b6ce19b8301b09c (patch) | |
tree | d3a1d959116b90828b376aea3441eb8dc31852ac | |
parent | 700107e21f7a81a0678e2141b6bef5959437dd00 (diff) | |
download | fatcat-scholar-7cb5182bdcfad58069c5e0341b6ce19b8301b09c.tar.gz fatcat-scholar-7cb5182bdcfad58069c5e0341b6ce19b8301b09c.zip |
html: fix 'clear filters' alignment (add class)
-rw-r--r-- | fatcat_scholar/templates/search_macros.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fatcat_scholar/templates/search_macros.html b/fatcat_scholar/templates/search_macros.html index 57d981b..4ce0356 100644 --- a/fatcat_scholar/templates/search_macros.html +++ b/fatcat_scholar/templates/search_macros.html @@ -538,7 +538,7 @@ {% macro clear_query(query) -%} {% if query.filter_time or query.filter_type or query.filter_availability or query.sort_order %} <div> - <a href="{{ lang_prefix }}/search{% if query.q %}?q={{ query.q|urlencode }}{% endif %}" style="color: rgba(0,0,0,0.55); color: brown;">{% trans %}Clear Filters{% endtrans %}</a> + <a class="filter-label" href="{{ lang_prefix }}/search{% if query.q %}?q={{ query.q|urlencode }}{% endif %}" style="color: rgba(0,0,0,0.55); color: brown;">{% trans %}Clear Filters{% endtrans %}</a> </div> <br> {% endif %} |