diff options
author | flop25 <flop25@piwigo.org> | 2012-04-17 13:27:33 +0000 |
---|---|---|
committer | flop25 <flop25@piwigo.org> | 2012-04-17 13:27:33 +0000 |
commit | f03ce8dcfa688e7204d124c0f864d70c504a82df (patch) | |
tree | 6947e184441fcc79d5d4455032340c49dd8d919e /admin/themes/default/template/element_set_ranks.tpl | |
parent | 9f9798e1eada362e229949a18c8a0178366761e1 (diff) |
feature:2388
on element_set_ranks, no more clipping due to the use of the default square size
git-svn-id: http://piwigo.org/svn/trunk@14205 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/element_set_ranks.tpl')
-rw-r--r-- | admin/themes/default/template/element_set_ranks.tpl | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/admin/themes/default/template/element_set_ranks.tpl b/admin/themes/default/template/element_set_ranks.tpl index 91ec0b39d..deeef6d32 100644 --- a/admin/themes/default/template/element_set_ranks.tpl +++ b/admin/themes/default/template/element_set_ranks.tpl @@ -50,12 +50,8 @@ jQuery('.clipwrapper').tipTip({ <p>{'Drag to re-order'|@translate}</p> <ul class="thumbnails"> {foreach from=$thumbnails item=thumbnail} - <li class="rank-of-image" style="width:{$thumbnail.CLIPING_li}px; height:{$thumbnail.CLIPING_li}px; "> - <div class="clipwrapper" style="width:{$thumbnail.CLIPING}px; height:{$thumbnail.CLIPING}px; " title="{$thumbnail.NAME|@replace:'"':' '}"> - <div class="clip" style="clip:rect({$thumbnail.CLIP_TOP}px {$thumbnail.CLIP_RIGHT}px {$thumbnail.CLIP_BOTTOM}px {$thumbnail.CLIP_LEFT}px);top:-{$thumbnail.CLIP_TOP}px;left:-{$thumbnail.CLIP_LEFT}px"> - <img src="{$thumbnail.TN_SRC}" class="thumbnail" alt="{$thumbnail.NAME|@replace:'"':' '}"> - </div> - </div> + <li class="rank-of-image"> + <img src="{$thumbnail.TN_SRC}" class="thumbnail" alt="{$thumbnail.NAME|@replace:'"':' '}" style="width:{$thumbnail.SIZE[0]}px; height:{$thumbnail.SIZE[1]}px; "> <input type="text" name="rank_of_image[{$thumbnail.ID}]" value="{$thumbnail.RANK}" style="display:none"> </li> {/foreach} |