diff options
author | rvelices <rv-github@modusoptimus.com> | 2010-12-11 13:42:19 +0000 |
---|---|---|
committer | rvelices <rv-github@modusoptimus.com> | 2010-12-11 13:42:19 +0000 |
commit | e859fe07e4d8406ae95896b7fbd2d2951f4d4d5d (patch) | |
tree | fc2b647006da9156cc5041c70d01a1d22ad24866 /themes/default/template/picture_toolbar.tpl | |
parent | c710b81255f198c2038f70e01cecf3741228db6b (diff) |
css sprites (still ongoing)
git-svn-id: http://piwigo.org/svn/trunk@8076 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'themes/default/template/picture_toolbar.tpl')
-rw-r--r-- | themes/default/template/picture_toolbar.tpl | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/themes/default/template/picture_toolbar.tpl b/themes/default/template/picture_toolbar.tpl index 23a7e0fed..e6f0d8edd 100644 --- a/themes/default/template/picture_toolbar.tpl +++ b/themes/default/template/picture_toolbar.tpl @@ -56,6 +56,37 @@ y.callService( <div class="navigationButtons" style="float:right"> {if $DISPLAY_NAV_BUTTONS or isset($slideshow)} +{if isset($slideshow)} + {if isset($slideshow.U_INC_PERIOD)} + <a href="{$slideshow.U_INC_PERIOD}" title="{'Accelerate diaporama speed'|@translate}" class="pwg-state-default pwg-button"> + <span class="pwg-icon pwg-icon-clock-minus"> </span><span class="pwg-button-text">{'Accelerate diaporama speed'|@translate}</span> + </a> + {else} + <span class="pwg-state-disabled pwg-button"> + <span class="pwg-icon pwg-icon-clock-minus"> </span><span class="pwg-button-text">{'Accelerate diaporama speed'|@translate}</span> + </span> + {/if} + {if isset($slideshow.U_DEC_PERIOD)} + <a href="{$slideshow.U_DEC_PERIOD}" title="{'Accelerate diaporama speed'|@translate}" class="pwg-state-default pwg-button"> + <span class="pwg-icon pwg-icon-clock-plus"> </span><span class="pwg-button-text">{'Accelerate diaporama speed'|@translate}</span> + </a> + {else} + <span class="pwg-state-disabled pwg-button"> + <span class="pwg-icon pwg-icon-clock-plus"> </span><span class="pwg-button-text">{'Accelerate diaporama speed'|@translate}</span> + </span> + {/if} +{/if} +{if isset($slideshow.U_START_REPEAT)} + <a href="{$slideshow.U_START_REPEAT}" title="{'Repeat the slideshow'|@translate}" class="pwg-state-default pwg-button"> + <span class="pwg-icon pwg-icon-repeat-play"> </span><span class="pwg-button-text">{'Repeat the slideshow'|@translate}</span> + </a> +{/if} +{if isset($slideshow.U_STOP_REPEAT)} + <a href="{$slideshow.U_STOP_REPEAT}" title="{'Not repeat the slideshow'|@translate}" class="pwg-state-default pwg-button"> + <span class="pwg-icon pwg-icon-repeat-stop"> </span><span class="pwg-button-text">{'Not repeat the slideshow'|@translate}</span> + </a> +{/if} + {if isset($first)} <a href="{$first.U_IMG}" title="{'First'|@translate} : {$first.TITLE}" class="pwg-state-default pwg-button"> <span class="pwg-icon pwg-icon-arrowstop-w"> </span><span class="pwg-button-text">{'First'|@translate}</span> |