diff options
author | Mario <mario@mariovavti.com> | 2024-10-04 11:26:48 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-10-04 11:26:48 +0000 |
commit | 2693e9e99097c4bbcf8c9103a5876bc0585ff84c (patch) | |
tree | 86a5a72c2d6a1ac8f33448e9ac22e58c82a033bb /view | |
parent | 04741c761aeb944c8b54472ac7e3d1e9460a8cfc (diff) | |
download | volse-hubzilla-2693e9e99097c4bbcf8c9103a5876bc0585ff84c.tar.gz volse-hubzilla-2693e9e99097c4bbcf8c9103a5876bc0585ff84c.tar.bz2 volse-hubzilla-2693e9e99097c4bbcf8c9103a5876bc0585ff84c.zip |
css fixes
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/saved_searches.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/saved_searches.tpl b/view/tpl/saved_searches.tpl index 51a19c3ae..5ee7f1d13 100644 --- a/view/tpl/saved_searches.tpl +++ b/view/tpl/saved_searches.tpl @@ -4,7 +4,7 @@ <ul id="saved-search-list" class="nav nav-pills flex-column"> {{foreach $saved as $search}} <li class="nav-item nav-item-hack" id="search-term-{{$search.id}}"> - <a class="nav-link widget-nav-pills-icons" title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i class="bi bi-trash drop-icons" ></i></a> + <a class="nav-link widget-nav-pills-icons{{if $search.selected}} active{{/if}}" title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i class="bi bi-trash"></i></a> <a id="saved-search-term-{{$search.id}}" class="nav-link{{if $search.selected}} active{{/if}}" href="{{$search.srchlink}}">{{$search.displayterm}}</a> </li> {{/foreach}} |