|
@@ -40,12 +40,12 @@
|
|
|
{{ group.label }}
|
|
{{ group.label }}
|
|
|
</div>
|
|
</div>
|
|
|
{% for item, buttons in items %}
|
|
{% for item, buttons in items %}
|
|
|
- <div class="dropdown-item d-flex justify-content-between ps-3 py-0">
|
|
|
|
|
|
|
+ <div class="dropdown-item d-flex align-items-center justify-content-between ps-3 py-0">
|
|
|
<a href="{{ item.url }}" class="d-inline-flex flex-fill py-1">{{ item.link_text }}</a>
|
|
<a href="{{ item.url }}" class="d-inline-flex flex-fill py-1">{{ item.link_text }}</a>
|
|
|
{% if buttons %}
|
|
{% if buttons %}
|
|
|
- <div class="btn-group ms-1">
|
|
|
|
|
|
|
+ <div class="dropdown-item-buttons d-inline-flex ms-1">
|
|
|
{% for button in buttons %}
|
|
{% for button in buttons %}
|
|
|
- <a href="{{ button.url }}" class="btn btn-sm btn-{{ button.color|default:"outline" }} lh-2 px-2" title="{{ button.title }}" aria-label="{{ button.title }}">
|
|
|
|
|
|
|
+ <a href="{{ button.url }}" class="btn btn-sm btn-ghost btn-{{ button.color|default:"secondary" }} px-2" title="{{ button.title }}" aria-label="{{ button.title }}">
|
|
|
<i class="{{ button.icon_class }}" aria-hidden="true"></i>
|
|
<i class="{{ button.icon_class }}" aria-hidden="true"></i>
|
|
|
</a>
|
|
</a>
|
|
|
{% endfor %}
|
|
{% endfor %}
|