diff options
author | rvelices <rv-github@modusoptimus.com> | 2011-11-30 20:51:20 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2011-11-30 20:51:20 +0000 |
commit | adc90e72b681d2c63d86f23161fabac456ba983a (patch) | |
tree | 1ee86ee8212866ca1f7248d55bb24832b591d5b0 /themes/default | |
parent | f75a41d9b96a00201f315bd7704b2f15ecfb8db1 (diff) |
bug 2515: a few icons are not in CSS sprite (comment actions use text links now)
git-svn-id: http://piwigo.org/svn/trunk@12676 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default')
-rw-r--r-- | themes/default/template/comment_list.tpl | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/themes/default/template/comment_list.tpl b/themes/default/template/comment_list.tpl index 852153897..2ff4d03e8 100644 --- a/themes/default/template/comment_list.tpl +++ b/themes/default/template/comment_list.tpl @@ -11,23 +11,23 @@ </div> {/if} <div class="description"{if isset($comment.IN_EDIT)} style="height:200px"{/if}> - {if isset($comment.U_DELETE) or isset($comment.U_VALIDATE) or isset($comment.U_EDIT) } - <div class="actions" style="float:right"> + {if isset($comment.U_DELETE) or isset($comment.U_VALIDATE) or isset($comment.U_EDIT)} + <div class="actions" style="float:right;font-size:90%"> {if isset($comment.U_DELETE)} - <a href="{$comment.U_DELETE}" title="{'delete this comment'|@translate}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');"> - <img src="{$ROOT_URL}{$themeconf.icon_dir}/delete.png" alt="[delete]"> - </a> + <a href="{$comment.U_DELETE}" onclick="return confirm('{'Are you sure?'|@translate|@escape:javascript}');"> + {'Delete'|@translate} + </a>{if isset($comment.U_VALIDATE) or isset($comment.U_EDIT)} | {/if} {/if} {if isset($comment.U_EDIT) and !isset($comment.IN_EDIT)} - <a class="editComment" href="{$comment.U_EDIT}#edit_comment" title="{'edit this comment'|@translate}"> - <img src="{$ROOT_URL}{$themeconf.icon_dir}/edit.png" alt="[edit]"> - </a> + <a class="editComment" href="{$comment.U_EDIT}#edit_comment"> + {'Edit'|@translate} + </a>{if isset($comment.U_VALIDATE)} | {/if} {/if} {if isset($comment.U_VALIDATE)} - <a href="{$comment.U_VALIDATE}" title="{'validate this comment'|@translate}"> - <img src="{$ROOT_URL}{$themeconf.icon_dir}/validate_s.png" alt="[validate]"> + <a href="{$comment.U_VALIDATE}"> + {'Validate'|@translate} </a> - {/if} + {/if} </div> {/if} |