moviewyrm/bookwyrm/templates/components/tooltip.html

12 lines
684 B
HTML
Raw Normal View History

2021-09-08 14:26:51 +00:00
{% load i18n %}
2021-09-08 15:19:54 +00:00
{% trans "Help" as button_text %}
{% include 'snippets/toggle/open_button.html' with text=button_text class="ml-3 is-rounded is-small has-background-body p-0 pb-1" icon="question-circle is-size-6" controls_text=controls_text controls_uid=controls_uid %}
2021-09-08 15:19:54 +00:00
2021-09-17 19:59:16 +00:00
<aside class="tooltip notification is-hidden transition-y is-pulled-left mb-2" id="{{ controls_text }}{% if controls_uid %}-{{ controls_uid }}{% endif %}">
2021-09-08 15:19:54 +00:00
{% trans "Close" as button_text %}
{% include 'snippets/toggle/close_button.html' with label=button_text class="delete" nonbutton=True controls_text=controls_text controls_uid=controls_uid %}
2021-09-08 14:26:51 +00:00
{% block tooltip_content %}{% endblock %}
</aside>