aboutsummaryrefslogtreecommitdiffstats
path: root/view/tpl/saved_searches.tpl
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2017-03-12 21:11:28 +0100
committerMario Vavti <mario@mariovavti.com>2017-03-12 21:11:28 +0100
commit8aabc6bc3dfccb85f44b5db4708a756124277e1e (patch)
treef14531513d44fdf0d181cdef8731ce1a908f2b9d /view/tpl/saved_searches.tpl
parentd9ecca859150f9e9e4213eded9e3f8a69e57f4be (diff)
downloadvolse-hubzilla-8aabc6bc3dfccb85f44b5db4708a756124277e1e.tar.gz
volse-hubzilla-8aabc6bc3dfccb85f44b5db4708a756124277e1e.tar.bz2
volse-hubzilla-8aabc6bc3dfccb85f44b5db4708a756124277e1e.zip
many dropdown and class fixes. still a long way to go...
Diffstat (limited to 'view/tpl/saved_searches.tpl')
-rw-r--r--view/tpl/saved_searches.tpl12
1 files changed, 5 insertions, 7 deletions
diff --git a/view/tpl/saved_searches.tpl b/view/tpl/saved_searches.tpl
index 2065cd714..b62404fcc 100644
--- a/view/tpl/saved_searches.tpl
+++ b/view/tpl/saved_searches.tpl
@@ -1,14 +1,12 @@
-<div class="widget saved-search-widget">
+<div class="widget saved-search-widget clearfix">
<h3 id="search">{{$title}}</h3>
{{$searchbox}}
-
- <ul id="saved-search-list" class="nav nav-pills nav-stacked">
+ <ul id="saved-search-list" class="nav nav-pills flex-column">
{{foreach $saved as $search}}
- <li id="search-term-{{$search.id}}">
- <a class="pull-right group-edit-tool" title="{{$search.delete}}" onclick="return confirmDelete();" id="drop-saved-search-term-{{$search.id}}" href="{{$search.dellink}}"><i id="dropfa-floppy-od-search-term-{{$search.id}}" class="group-edit-icon fa fa-trash-o" ></i></a>
- <a id="saved-search-term-{{$search.id}}"{{if $search.selected}} class="search-selected"{{/if}} href="{{$search.srchlink}}">{{$search.displayterm}}</a>
+ <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 id="dropfa-floppy-od-search-term-{{$search.id}}" class="fa fa-trash-o drop-icons" ></i></a>
+ <a id="saved-search-term-{{$search.id}}" class="nav-link{{if $search.selected}} search-selected{{/if}}" href="{{$search.srchlink}}">{{$search.displayterm}}</a>
</li>
{{/foreach}}
</ul>
- <div class="clear"></div>
</div>