diff options
author | plegall <plg@piwigo.org> | 2013-02-04 09:46:55 +0000 |
---|---|---|
committer | plegall <plg@piwigo.org> | 2013-02-04 09:46:55 +0000 |
commit | 3826020023e05af1d2722812c102ea00ca3b7b7f (patch) | |
tree | efc8ffb813ff7376dd8f00d3dfc8ed24d0dfc88a /themes | |
parent | 2bfff619f27d7c61bc568fe27d900979ebb77d4c (diff) |
feature 2834: move "up" icon before previous/next arrows
git-svn-id: http://piwigo.org/svn/trunk@20542 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | themes/default/template/picture_nav_buttons.tpl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/themes/default/template/picture_nav_buttons.tpl b/themes/default/template/picture_nav_buttons.tpl index e6b2a1e1f..fb6c0c7e9 100644 --- a/themes/default/template/picture_nav_buttons.tpl +++ b/themes/default/template/picture_nav_buttons.tpl @@ -39,6 +39,11 @@ <span class="pwg-icon pwg-icon-arrowstop-w"> </span><span class="pwg-button-text">{'First'|@translate}</span> </span> {/if}{/strip}-->*} +{strip}{if isset($U_UP) and !isset($slideshow)} + <a href="{$U_UP}" title="{'Thumbnails'|@translate}" class="pwg-state-default pwg-button"> + <span class="pwg-icon pwg-icon-arrow-n"> </span><span class="pwg-button-text">{'Thumbnails'|@translate}</span> + </a> +{/if}{/strip} {strip}{if isset($previous)} <a href="{$previous.U_IMG}" title="{'Previous'|@translate} : {$previous.TITLE}" class="pwg-state-default pwg-button"> <span class="pwg-icon pwg-icon-arrow-w"> </span><span class="pwg-button-text">{'Previous'|@translate}</span> @@ -58,11 +63,6 @@ <span class="pwg-icon pwg-icon-pause"> </span><span class="pwg-button-text">{'Pause of slideshow'|@translate}</span> </a> {/if} -{strip}{if isset($U_UP) and !isset($slideshow)} - <a href="{$U_UP}" title="{'Thumbnails'|@translate}" class="pwg-state-default pwg-button"> - <span class="pwg-icon pwg-icon-arrow-n"> </span><span class="pwg-button-text">{'Thumbnails'|@translate}</span> - </a> -{/if}{/strip} {strip}{if isset($next)} <a href="{$next.U_IMG}" title="{'Next'|@translate} : {$next.TITLE}" class="pwg-state-default pwg-button pwg-button-icon-right"> <span class="pwg-icon pwg-icon-arrow-e"> </span><span class="pwg-button-text">{'Next'|@translate}</span> |