Uses clickable dropdowns and improves styling on menu buttons

screenreader legible
This commit is contained in:
Mouse Reeve
2021-01-17 16:48:05 -08:00
parent 0a70d6e981
commit 937a7dd1af
5 changed files with 33 additions and 36 deletions

View File

@ -12,7 +12,7 @@
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.id }}">
<input type="hidden" name="shelf" value="{{ shelf.identifier }}">
<button class="button is-small" type="submit">{{ shelf.name }}</button>
<button class="button is-fullwidth is-small" type="submit">{{ shelf.name }}</button>
</form>
</li>
{% endif %}
@ -23,7 +23,7 @@
{% csrf_token %}
<input type="hidden" name="book" value="{{ book.id }}">
<input type="hidden" name="shelf" value="{{ current.id }}">
<button class="button is-small is-danger is-light" type="submit">Unshelve</button>
<button class="button is-fullwidth is-small is-danger is-light" type="submit">Unshelve</button>
</form>
</li>
{% endblock %}