summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--resources/arrow_left_gray.pngbin0 -> 915 bytes
-rw-r--r--resources/arrow_right_gray.pngbin0 -> 917 bytes
-rw-r--r--templates/photo_index.tpl4
-rw-r--r--templates/single_photo.tpl4
4 files changed, 4 insertions, 4 deletions
diff --git a/resources/arrow_left_gray.png b/resources/arrow_left_gray.png
new file mode 100644
index 0000000..669a7a0
--- /dev/null
+++ b/resources/arrow_left_gray.png
Binary files differ
diff --git a/resources/arrow_right_gray.png b/resources/arrow_right_gray.png
new file mode 100644
index 0000000..550e2dc
--- /dev/null
+++ b/resources/arrow_right_gray.png
Binary files differ
diff --git a/templates/photo_index.tpl b/templates/photo_index.tpl
index 28a933d..57cf2ff 100644
--- a/templates/photo_index.tpl
+++ b/templates/photo_index.tpl
@@ -58,7 +58,7 @@
<tr>
<td style="text-align: left; width: 32px;">
{ if $previous_url == "" }
- &nbsp;
+ <img src="resources/arrow_left_gray.png" alt="first page reached" />
{ else }
<a href="{$previous_url}">
<img src="resources/arrow_left.png" alt="previous photo" />
@@ -74,7 +74,7 @@
</td>
<td style="text-align: right; width: 32px;">
{ if $next_url == "" }
- &nbsp;
+ <img src="resources/arrow_right_gray.png" alt="last page reached" />
{ else }
<a href="{$next_url}">
<img src="resources/arrow_right.png" alt="next photo" />
diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl
index e5bcada..536f1db 100644
--- a/templates/single_photo.tpl
+++ b/templates/single_photo.tpl
@@ -30,7 +30,7 @@
<tr>
<td style="text-align: left; width: 33%;">
{ if $previous_url == "" }
- &nbsp;
+ <img src="resources/arrow_left_gray.png" alt="first photo reached" />
{ else }
<a href="{$previous_url}">
<img src="resources/arrow_left.png" alt="previous photo" />
@@ -44,7 +44,7 @@
</td>
<td style="text-align: right; width: 33%;">
{ if $next_url == "" }
- &nbsp;
+ <img src="resources/arrow_right_gray.png" alt="last photo reached" />
{ else }
<a href="{$next_url}">
<img src="resources/arrow_right.png" alt="next photo" />