diff options
author | Andreas Unterkircher <unki@netshadow.at> | 2007-06-09 07:29:15 +0000 |
---|---|---|
committer | Andreas Unterkircher <unki@netshadow.at> | 2007-06-09 07:29:15 +0000 |
commit | d642f891ce6f17ac0d402922d6c417f99e832d21 (patch) | |
tree | 3c50b2a74edcfcf23e3c1c0ecf67f2efec40ab3b | |
parent | 7ca20d2b9cd665125a20a3d480694db0fde0afdc (diff) |
some style fixes
git-svn-id: file:///var/lib/svn/phpfspot/trunk@73 fa6a889d-dae6-447d-9e79-4ba9a3039384
-rw-r--r-- | phpfspot.js | 7 | ||||
-rw-r--r-- | templates/single_photo.tpl | 2 | ||||
-rw-r--r-- | templates/tags.tpl | 4 | ||||
-rw-r--r-- | templates/welcome.tpl | 23 |
4 files changed, 31 insertions, 5 deletions
diff --git a/phpfspot.js b/phpfspot.js index c34f31a..c691b55 100644 --- a/phpfspot.js +++ b/phpfspot.js @@ -63,3 +63,10 @@ function refreshPhotoIndex() } } +function click(object) +{ + if(object.blur) + object.blur(); + +} + diff --git a/templates/single_photo.tpl b/templates/single_photo.tpl index 51d4663..9f2bcd9 100644 --- a/templates/single_photo.tpl +++ b/templates/single_photo.tpl @@ -5,7 +5,7 @@ <b>Photo {$image_name}</b>, {$c_date}, {$madewith}<br /> </td> <td class="index_header" style="text-align: right;"> - <a href="{$image_url_full}" target="_blank"> + <a href="{$image_url_full}" target="_blank" onclick="click(this);"> <img src="resources/loupe.png" /> </a> <img src="resources/information.png" /> diff --git a/templates/tags.tpl b/templates/tags.tpl index 4b30f0c..812b36a 100644 --- a/templates/tags.tpl +++ b/templates/tags.tpl @@ -1,6 +1,6 @@ <table> <tr> - <td style="vertical-align: middle;"> + <td style="vertical-align: middle; text-decoration: underline;"> <img src="resources/available_tags.png" \>Available Tags: </td> </tr> @@ -10,7 +10,7 @@ </td> </tr> <tr> - <td style="vertical-align: middle;"> + <td style="vertical-align: middle; text-decoration: underline;"> <img src="resources/selected_tags.png" />Selected Tags: </td> </tr> diff --git a/templates/welcome.tpl b/templates/welcome.tpl index 07e1fbe..0529887 100644 --- a/templates/welcome.tpl +++ b/templates/welcome.tpl @@ -1,5 +1,16 @@ -welcome to the finest photo gallery for F-Spot<br /> -<br /> +<!-- welcome --> +<table> + <tr> + <td class="index_header" style="text-align: left;"> + Welcome to the finest photo gallery for F-Spot<br /> + </td> + </tr> + <tr> + <td> + <div id='single'> + <table> + <tr> + <td> This application targets to provide an easy way, to presentate<br /> your f-spot pictures in the web, in a way you don't need any of<br /> current web2.0 providers or setup complex apps like gallery<br /> @@ -7,3 +18,11 @@ current web2.0 providers or setup complex apps like gallery<br /> I suggest that you change this text after you have finished the installation ;) <br /><br /> <a href="javascript:showPhotoIndex();">Click here if you want to see your photo index</a> + </td> + </tr> + </table> + </div> + </td> + </tr> +</table> +<!-- /welcome --> |