diff options
Diffstat (limited to '')
-rw-r--r-- | template/yoga/icon/rating-stars.gif | bin | 0 -> 251 bytes | |||
-rw-r--r-- | template/yoga/icon/star_e.gif | bin | 109 -> 0 bytes | |||
-rw-r--r-- | template/yoga/icon/star_f.gif | bin | 185 -> 0 bytes | |||
-rw-r--r-- | template/yoga/picture.css | 6 | ||||
-rw-r--r-- | template/yoga/picture.tpl | 10 |
5 files changed, 6 insertions, 10 deletions
diff --git a/template/yoga/icon/rating-stars.gif b/template/yoga/icon/rating-stars.gif Binary files differnew file mode 100644 index 000000000..535443e06 --- /dev/null +++ b/template/yoga/icon/rating-stars.gif diff --git a/template/yoga/icon/star_e.gif b/template/yoga/icon/star_e.gif Binary files differdeleted file mode 100644 index e09994991..000000000 --- a/template/yoga/icon/star_e.gif +++ /dev/null diff --git a/template/yoga/icon/star_f.gif b/template/yoga/icon/star_f.gif Binary files differdeleted file mode 100644 index 5e08567b3..000000000 --- a/template/yoga/icon/star_f.gif +++ /dev/null diff --git a/template/yoga/picture.css b/template/yoga/picture.css index 27fd5aec8..839760053 100644 --- a/template/yoga/picture.css +++ b/template/yoga/picture.css @@ -110,13 +110,11 @@ TABLE.infoTable TD.value UL { } .rateButtonStarFull { - background: url('icon/star_f.gif') no-repeat center; - width: 16px; + background: url('icon/rating-stars.gif') no-repeat scroll; background-position:-16px center; width:16px; } .rateButtonStarEmpty { - background: url('icon/star_e.gif') no-repeat center; - width: 16px; + background: url('icon/rating-stars.gif') no-repeat scroll; background-position:0 center; width:16px; } #comments { diff --git a/template/yoga/picture.tpl b/template/yoga/picture.tpl index 9e0d6fa2f..276db31de 100644 --- a/template/yoga/picture.tpl +++ b/template/yoga/picture.tpl @@ -39,7 +39,7 @@ {if isset($U_SLIDESHOW_STOP) } <a href="{$U_SLIDESHOW_STOP}" title="{'slideshow_stop'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/stop_slideshow.png" class="button" alt="{'slideshow_stop'|@translate}"></a> {/if} - <a href="{$U_METADATA}" title="{'picture_show_metadata'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/metadata.png" class="button" alt="{'picture_show_metadata'|@translate}"></a> + <a href="{$U_METADATA}" title="{'picture_show_metadata'|@translate}" rel="nofollow"><img src="{$ROOT_URL}{$themeconf.icon_dir}/metadata.png" class="button" alt="metadata" /></a> {if isset($current.U_DOWNLOAD) } <a href="{$current.U_DOWNLOAD}" title="{'download_hint'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/save.png" class="button" alt="{'download'|@translate}"></a> {/if} @@ -115,10 +115,8 @@ <td class="label">{'Tags'|@translate}</td> <td class="value"> {if isset($related_tags)} - {foreach from=$related_tags item=tag name=tag_loop} - {if !$smarty.foreach.tag_loop.first}, {/if} - <a href="{$tag.U_TAG}">{$tag.NAME}</a> - {/foreach} + {foreach from=$related_tags item=tag name=tag_loop}{if !$smarty.foreach.tag_loop.first}, {/if} + <a href="{$tag.U_TAG}">{$tag.NAME}</a>{/foreach} {/if} </td> </tr> @@ -176,7 +174,7 @@ : {foreach from=$rating.marks item=mark name=rate_loop} {if !$smarty.foreach.rate_loop.first} | {/if} -{if $mark==$rating.USER_RATE} +{if isset($rating.USER_RATE) && $mark==$rating.USER_RATE} <input type="button" name="rate" value="{$mark}" class="rateButtonSelected" /> {else} <input type="submit" name="rate" value="{$mark}" class="rateButton" /> |