Show
Ignore:
Timestamp:
10/04/08 01:48:03 (5 years ago)
Author:
rvelices
Message:

- fix tag cloud display with IE6/IE7 (without additionnal css hacks)
- collapsed several identical selectors into one

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/menubar_tags.tpl

    r2636 r2648  
    11<dt>{'Related tags'|@translate}</dt> 
    22<dd> 
    3         <ul id="menuTagCloud"> 
     3        <div id="menuTagCloud"> 
    44                {foreach from=$block->data item=tag} 
    5                 <li> 
     5                <span> 
    66                        {if !empty($tag.U_ADD) } 
    7                                 <a href="{$tag.U_ADD}" 
    8                                         title="{$pwg->l10n_dec('%d element are also linked to current tags', '%d elements are also linked to current tags', $tag.counter)}" 
    9                                         rel="nofollow"> 
    10                                         <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+" /> 
    11                                 </a> 
     7                        <a href="{$tag.U_ADD}" 
     8                                title="{$pwg->l10n_dec('%d element are also linked to current tags', '%d elements are also linked to current tags', $tag.counter)}" 
     9                                rel="nofollow"> 
     10                                <img src="{$ROOT_URL}{$themeconf.icon_dir}/add_tag.png" alt="+" /> 
     11                        </a> 
    1212                        {/if} 
    1313                        <a href="{$tag.URL}" class="tagLevel{$tag.level}" title="{'See elements linked to this tag only'|@translate}">{$tag.name}</a> 
    14                         </li> 
     14                </span> 
    1515                {/foreach} 
    16         </ul> 
     16        </div> 
    1717</dd> 
    1818