diff options
author | vdigital <vdigital@piwigo.org> | 2008-09-08 20:46:11 +0000 |
---|---|---|
committer | vdigital <vdigital@piwigo.org> | 2008-09-08 20:46:11 +0000 |
commit | b5c5a2aeae0f771da8b04ba29f2cc1b8ec0fe4ae (patch) | |
tree | b5667682bc5891b4aff95c8f24b50970b4698879 /admin | |
parent | 85ea11bf35c84f1880721147faf1839428333f40 (diff) |
Sylvia theme: .content reviewed including hover/active backgrounds.
Some additional jQuery fade in/out functions
git-svn-id: http://piwigo.org/svn/trunk@2510 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to '')
-rw-r--r-- | admin/template/yoga/admin/element_set_unit.tpl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/admin/template/yoga/admin/element_set_unit.tpl b/admin/template/yoga/admin/element_set_unit.tpl index 34366fada..40e1c1863 100644 --- a/admin/template/yoga/admin/element_set_unit.tpl +++ b/admin/template/yoga/admin/element_set_unit.tpl @@ -91,3 +91,15 @@ {/if} </form> + +<script type="text/javascript">// <![CDATA[ +{literal}$(document).ready(function() { + $(".elementEdit img").fadeTo("slow", 0.6); // Opacity on page load + $(".elementEdit img").hover(function(){ + $(this).fadeTo("slow", 1.0); // Opacity on hover + },function(){ + $(this).fadeTo("slow", 0.6); // Opacity on mouseout + }); +});{/literal} +// ]]> +</script>
\ No newline at end of file |