forked from mirrors/bookwyrm
c77e5a1a90
Divides the css into sub-files and normalizes how colors are defined. Co-authored-by: Joachim <joachim.robert@protonmail.com>
11 lines
468 B
HTML
11 lines
468 B
HTML
{% extends 'components/dropdown.html' %}
|
|
{% load i18n %}
|
|
{% block dropdown-trigger %}
|
|
<span class="icon icon-arrow-down">
|
|
<span class="is-sr-only">{% trans "More shelves" %}</span>
|
|
</span>
|
|
{% endblock %}
|
|
|
|
{% block dropdown-list %}
|
|
{% include 'snippets/shelve_button/shelve_button_dropdown_options.html' with active_shelf=active_shelf shelves=user_shelves dropdown=True class="shelf-option is-fullwidth is-small is-radiusless has-background-body" %}
|
|
{% endblock %}
|