Skip to content
Snippets Groups Projects
Commit bbfe8d7d authored by Benjamin Hättasch's avatar Benjamin Hättasch
Browse files

Minor design improvements for status views

parent 028be1ee
No related branches found
No related tags found
1 merge request!162Split AKModel views into different files & introduce modular status page
Pipeline #163043 passed
...@@ -15,13 +15,13 @@ ...@@ -15,13 +15,13 @@
<div class="card-header"> <div class="card-header">
{% if widget.actions %} {% if widget.actions %}
<div class="float-end"> <div class="float-end">
<a class="" data-bs-toggle="dropdown" aria-expanded="false"> <a style="cursor: pointer;" data-bs-toggle="dropdown" aria-expanded="false">
{% fa6_icon "ellipsis-vertical" %} &nbsp;{% fa6_icon "ellipsis-vertical" %}&nbsp;
</a> </a>
<ul class="dropdown-menu dropdown-menu-end"> <ul class="dropdown-menu dropdown-menu-end">
{% for action in widget.actions %} {% for action in widget.actions %}
<li> <li class="dropdown-item">
<a class="dropdown-item" href="{{ action.url }}">{{ action.text }}</a> <a href="{{ action.url }}">{{ action.text }}</a>
</li> </li>
{% endfor %} {% endfor %}
</ul> </ul>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment