This commit is contained in:
Matthias 2021-12-07 00:51:27 +01:00
parent 99a62b2934
commit 2fa67707bd
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076
3 changed files with 5 additions and 2 deletions

View File

@ -4,7 +4,8 @@
{% settings_value 'PART_SHOW_IMPORT' as show_import %}
{% include "sidebar_toggle.html" with target="sidetree" %}
{% trans "Tree" as text %}
{% include "sidebar_toggle.html" with target="sidetree" text=text %}
<a class="m-1"></a>
{% trans "Subcategories" as text %}

View File

@ -5,7 +5,8 @@
{% settings_value "PART_INTERNAL_PRICE" as show_internal_price %}
{% settings_value 'PART_SHOW_RELATED' as show_related %}
{% include "sidebar_toggle.html" with target="sidetree" %}
{% trans "Tree" as text %}
{% include "sidebar_toggle.html" with target="sidetree" text=text %}
<a class="m-1"></a>
{% trans "Parameters" as text %}

View File

@ -1,3 +1,4 @@
<a href="#" id='{{ target }}-toggle' class="list-group-item {{ target }}-list-group-item border-end d-inline-block text-truncate {{ target }}-toggle" data-bs-parent="#{{ target }}" style='display: none;'>
<i class="bi bi-bootstrap"></i><span id='{{ target }}-toggle-icon' class='{{ target }}-item-icon fas fa-chevron-left'></span>
{% if text %}<span class='sidebar-item-text' style='display: none;'>{{ text }}</span>{% endif %}
</a>