aboutsummaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorplegall <plg@piwigo.org>2007-02-07 21:23:33 +0000
committerplegall <plg@piwigo.org>2007-02-07 21:23:33 +0000
commit3c8775b25255a2be4f561b1c0ede275cbae3f73b (patch)
tree16d21c0034081f1d730ddf3d60ad2eca1ca43cc1 /template
parent15b3774482b086f4f34f440763d11d00f7e2b04e (diff)
Feature 638 added: "Fixed navigation bar" extension integration.
git-svn-id: http://piwigo.org/svn/trunk@1787 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'template')
-rw-r--r--template/yoga/icon/first_unactive.pngbin0 -> 1573 bytes
-rw-r--r--template/yoga/icon/last_unactive.pngbin0 -> 1556 bytes
-rw-r--r--template/yoga/icon/left_unactive.pngbin0 -> 1574 bytes
-rw-r--r--template/yoga/icon/right_unactive.pngbin0 -> 1556 bytes
-rw-r--r--template/yoga/picture.tpl18
5 files changed, 15 insertions, 3 deletions
diff --git a/template/yoga/icon/first_unactive.png b/template/yoga/icon/first_unactive.png
new file mode 100644
index 000000000..f0c0364f2
--- /dev/null
+++ b/template/yoga/icon/first_unactive.png
Binary files differ
diff --git a/template/yoga/icon/last_unactive.png b/template/yoga/icon/last_unactive.png
new file mode 100644
index 000000000..90469d5c4
--- /dev/null
+++ b/template/yoga/icon/last_unactive.png
Binary files differ
diff --git a/template/yoga/icon/left_unactive.png b/template/yoga/icon/left_unactive.png
new file mode 100644
index 000000000..0aefc64e4
--- /dev/null
+++ b/template/yoga/icon/left_unactive.png
Binary files differ
diff --git a/template/yoga/icon/right_unactive.png b/template/yoga/icon/right_unactive.png
new file mode 100644
index 000000000..cf2f9614c
--- /dev/null
+++ b/template/yoga/icon/right_unactive.png
Binary files differ
diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl
index 99056b8ad..c90271b07 100644
--- a/template/yoga/picture.tpl
+++ b/template/yoga/picture.tpl
@@ -40,16 +40,28 @@
<!-- BEGIN last -->
<a class="navButton prev" href="{last.U_IMG}" title="{lang:last_page} : {last.TITLE_IMG}" rel="last"><img src="{pwg_root}{themeconf:icon_dir}/last.png" class="button" alt="{lang:last_page}"></a>
<!-- END last -->
+<!-- BEGIN last_unactive -->
+ <a class="navButton prev"><img src="{pwg_root}{themeconf:icon_dir}/last_unactive.png" class="button" alt="{lang:last_page}"></a>
+<!-- END last_unactive -->
<!-- BEGIN next -->
- <a class="navButton next" href="{next.U_IMG}" title="{lang:next_page} : {next.TITLE_IMG}" rel="next"><img src="{pwg_root}{themeconf:icon_dir}/right.png" class="button" alt="{lang:next_page}"></a>
+ <a class="navButton next" href="{next.U_IMG}" title="{L_NEXT_IMG}{next.TITLE_IMG}" rel="next"><img src="{pwg_root}{themeconf:icon_dir}/right.png" class="button" alt="{lang:next_page}"></a>
<!-- END next -->
- <a class="navButton up" href="{U_UP}" title="{lang:thumbnails}" rel="up"><img src="{pwg_root}{themeconf:icon_dir}/up.png" class="button" alt="{lang:home}"></a>
+<!-- BEGIN next_unactive -->
+ <a class="navButton next"><img src="{pwg_root}{themeconf:icon_dir}/right_unactive.png" class="button" alt="{lang:next_page}"></a>
+<!-- END next_unactive -->
+ <a class="navButton up" href="{U_UP}" title="{lang:thumbnails}" rel="up"><img src="{pwg_root}{themeconf:icon_dir}/up.png" class="button" alt="{L_UP_ALT}"></a>
<!-- BEGIN previous -->
- <a class="navButton prev" href="{previous.U_IMG}" title="{lang:previous_page} : {previous.TITLE_IMG}" rel="prev"><img src="{pwg_root}{themeconf:icon_dir}/left.png" class="button" alt="{lang:previous_page}"></a>
+ <a class="navButton prev" href="{previous.U_IMG}" title="{L_PREV_IMG}{previous.TITLE_IMG}" rel="prev"><img src="{pwg_root}{themeconf:icon_dir}/left.png" class="button" alt="{lang:previous_page}"></a>
<!-- END previous -->
+<!-- BEGIN previous_unactive -->
+ <a class="navButton prev"><img src="{pwg_root}{themeconf:icon_dir}/left_unactive.png" class="button" alt="{lang:previous_page}"></a>
+<!-- END previous_unactive -->
<!-- BEGIN first -->
<a class="navButton prev" href="{first.U_IMG}" title="{lang:first_page} : {first.TITLE_IMG}" rel="first"><img src="{pwg_root}{themeconf:icon_dir}/first.png" class="button" alt="{lang:first_page}"></a>
<!-- END first -->
+<!-- BEGIN first_unactive -->
+ <a class="navButton prev"><img src="{pwg_root}{themeconf:icon_dir}/first_unactive.png" class="button" alt="{lang:first_page}"></a>
+<!-- END first_unactive -->
</div>
</div> <!-- imageToolBar -->