diff options
author | Mario <mario@mariovavti.com> | 2022-08-20 15:10:16 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-08-20 15:10:16 +0000 |
commit | f2c4d80ac01c1755cbbf5c3137d7d3c1479351a4 (patch) | |
tree | 0c0c0686c634aa2000e101097293d67829bfa5fb /view | |
parent | d8a62268059ad38b0ac9efd585f22f39ec0c1bab (diff) | |
download | volse-hubzilla-f2c4d80ac01c1755cbbf5c3137d7d3c1479351a4.tar.gz volse-hubzilla-f2c4d80ac01c1755cbbf5c3137d7d3c1479351a4.tar.bz2 volse-hubzilla-f2c4d80ac01c1755cbbf5c3137d7d3c1479351a4.zip |
more css fixes
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 21a1067ef..0cba341ab 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -542,13 +542,13 @@ </div> <div id="notifications" class="border border-top-0 rounded navbar-nav collapse"> {{foreach $notifications as $notification}} - <div class="{{if $notification@first}}rounded-top {{/if}}{{if $notification@last}}rounded-bottom {{/if}}border border-start-0 border-end-0 border-bottom-0 list-group list-group-flush collapse {{$notification.type}}-button"> + <div class="{{if $notification@first}}rounded-top {{/if}}rounded-bottom border border-start-0 border-end-0 border-bottom-0 list-group list-group-flush collapse {{$notification.type}}-button"> <a id="notification-link-{{$notification.type}}" class="collapsed list-group-item fakelink notification-link" href="#" title="{{$notification.title}}" data-bs-target="#nav-{{$notification.type}}-sub" data-bs-toggle="collapse" data-sse_type="{{$notification.type}}"> <i class="fa fa-fw fa-{{$notification.icon}}"></i> {{$notification.label}} <span class="float-end badge bg-{{$notification.severity}} {{$notification.type}}-update"></span> </a> </div> - <div id="nav-{{$notification.type}}-sub" class="{{if $notification@last}}rounded-bottom {{/if}}border border-start-0 border-end-0 border-bottom-0 list-group list-group-flush collapse notification-content" data-bs-parent="#notifications" data-sse_type="{{$notification.type}}"> + <div id="nav-{{$notification.type}}-sub" class="rounded-bottom border border-start-0 border-end-0 border-bottom-0 list-group list-group-flush collapse notification-content" data-bs-parent="#notifications" data-sse_type="{{$notification.type}}"> {{if $notification.viewall}} <a class="list-group-item text-decoration-none text-dark" id="nav-{{$notification.type}}-see-all" href="{{$notification.viewall.url}}"> <i class="fa fa-fw fa-external-link"></i> {{$notification.viewall.label}} |