Skip to content

Commit

Permalink
feature:2617 class .tiptip added for links of disable themes
Browse files Browse the repository at this point in the history
git-svn-id: http://piwigo.org/svn/trunk@14192 68402e56-0260-453c-a942-63ccdbb3a9ee
  • Loading branch information
flop25 committed Apr 17, 2012
1 parent 28255b8 commit 2e17c9e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions admin/themes/default/template/themes_installed.tpl
Expand Up @@ -24,7 +24,7 @@ jQuery(document).ready(function() {
{if $theme.deactivable}
<a href="{$deactivate_baseurl}{$theme.id}" class="tiptip" title="{'Forbid this theme to users'|@translate}">{'Deactivate'|@translate}</a>
{else}
<span title="{$theme.deactivate_tooltip}">{'Deactivate'|@translate}</span>
<span title="{$theme.deactivate_tooltip}" class="tiptip">{'Deactivate'|@translate}</span>
{/if}

{if not $theme.is_default}
Expand Down Expand Up @@ -52,17 +52,17 @@ jQuery(document).ready(function() {
<div class="themeActions">
<div>
{if $theme.activable}
<a href="{$activate_baseurl}{$theme.id}" title="{'Make this theme available to users'|@translate}">{'Activate'|@translate}</a>
<a href="{$activate_baseurl}{$theme.id}" title="{'Make this theme available to users'|@translate}" class="tiptip">{'Activate'|@translate}</a>
{else}
<span title="{$theme.activate_tooltip}">{'Activate'|@translate}</span>
<span title="{$theme.activate_tooltip}" class="tiptip">{'Activate'|@translate}</span>
{/if}

|

{if $theme.deletable}
<a href="{$delete_baseurl}{$theme.id}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');" title="{'Delete this theme'|@translate}">{'Delete'|@translate}</a>
{else}
<span title="{$theme.delete_tooltip}">{'Delete'|@translate}</span>
<span title="{$theme.delete_tooltip}" class="tiptip">{'Delete'|@translate}</span>
{/if}
</div>
</div>
Expand Down

0 comments on commit 2e17c9e

Please sign in to comment.