Ignore:
Timestamp:
Jun 4, 2013, 6:44:34 AM (11 years ago)
Author:
rvelices
Message:

feature 2916 Replace raphael with symbol fonts
I added more icons than before (I think it's better as we can find links faster but that's arguable ...)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/themes/default/template/tags.tpl

    r22592 r23029  
    118118{/literal}{/footer_script}
    119119{if count($all_tags)}
    120 <div><label>{'Search'|@translate}: <input id="searchInput" type="text" size="12"></label></div>
     120<div><label><span class="icon-filter" style="visibility:hidden" id="filterIcon"></span>{'Search'|@translate}: <input id="searchInput" type="text" size="12"></label></div>
    121121{footer_script}{literal}
    122122$("#searchInput").on( "keydown", function() {
     
    128128        $this.data("timer", setTimeout( function() {
    129129                var val = $this.val();
    130                 if (!val)
     130                if (!val) {
    131131                        $(".tagSelection>li").show();
     132                        $("#filterIcon").css("visibility","hidden");
     133                }
    132134                else {
     135                        $("#filterIcon").css("visibility","visible");
    133136                        var regex = new RegExp( val.replace(/[\-\[\]{}()*+?.,\\\^$|#\s]/g, "\\$&"), "i" );
    134137                        $(".tagSelection>li").each( function(i, li) {
Note: See TracChangeset for help on using the changeset viewer.