diff options
author | 2022-01-31 20:06:54 +0100 | |
---|---|---|
committer | 2022-01-31 20:06:54 +0100 | |
commit | ee1c5e71fa6308a71747ad069bd21b9f1f05defb (patch) | |
tree | 90f25a778b3e0949cc9d4dbaca529a2af23ecbec | |
parent | Placate the flake8. (diff) |
Adding missing EOFs.
-rw-r--r-- | pydis_site/static/css/collapsibles.css | 2 | ||||
-rw-r--r-- | pydis_site/static/css/resources/resources.css | 2 | ||||
-rw-r--r-- | pydis_site/templates/resources/resources.html | 5 |
3 files changed, 5 insertions, 4 deletions
diff --git a/pydis_site/static/css/collapsibles.css b/pydis_site/static/css/collapsibles.css index 7b76d8d5..8fdd1f12 100644 --- a/pydis_site/static/css/collapsibles.css +++ b/pydis_site/static/css/collapsibles.css @@ -9,4 +9,4 @@ overflow: hidden; max-height: 0; transition: max-height 0.2s ease-out; -}
\ No newline at end of file +} diff --git a/pydis_site/static/css/resources/resources.css b/pydis_site/static/css/resources/resources.css index 26ddc14e..16226936 100644 --- a/pydis_site/static/css/resources/resources.css +++ b/pydis_site/static/css/resources/resources.css @@ -230,4 +230,4 @@ span.resource-tag.active.has-background-info-light { max-width: 25rem; min-width: 18rem; } -}
\ No newline at end of file +} diff --git a/pydis_site/templates/resources/resources.html b/pydis_site/templates/resources/resources.html index a37bf80a..4b7e9040 100644 --- a/pydis_site/templates/resources/resources.html +++ b/pydis_site/templates/resources/resources.html @@ -32,6 +32,9 @@ {# Filter box tags #} <div class="card filter-tags"> <div class="is-flex ml-auto is-flex-wrap-wrap"> + {# A little x in the top right, visible only when filters are active, which removes all filters. #} + <i class="fas fa-window-close"></i> + {# A filter tag for when there are no filters active #} <span class="no-tags-selected tag has-background-disabled has-text-disabled ml-2 mt-2"> <i class="fas fa-ban mr-1"></i> @@ -153,5 +156,3 @@ </div> </section> {% endblock %} - - |