aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/theme.php
diff options
context:
space:
mode:
authorSimon L'nu <simon.lnu@gmail.com>2012-04-13 19:30:07 -0400
committerSimon L'nu <simon.lnu@gmail.com>2012-04-13 19:30:07 -0400
commit6b46fe3dfeeae89e00991d8e8f8d9ec0dadbb5bc (patch)
tree128c14e9d45b8341e05c506337da191239ad5f6d /view/theme/dispy/theme.php
parenta3d95f79f27ca73d657907ab42b51ecc50872089 (diff)
downloadvolse-hubzilla-6b46fe3dfeeae89e00991d8e8f8d9ec0dadbb5bc.tar.gz
volse-hubzilla-6b46fe3dfeeae89e00991d8e8f8d9ec0dadbb5bc.tar.bz2
volse-hubzilla-6b46fe3dfeeae89e00991d8e8f8d9ec0dadbb5bc.zip
neat little changes. hopefully the shadow will be well recieved
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'view/theme/dispy/theme.php')
-rw-r--r--view/theme/dispy/theme.php18
1 files changed, 17 insertions, 1 deletions
diff --git a/view/theme/dispy/theme.php b/view/theme/dispy/theme.php
index 5df193aa6..8af61d78b 100644
--- a/view/theme/dispy/theme.php
+++ b/view/theme/dispy/theme.php
@@ -114,11 +114,27 @@ function dispy_init(&$a) {
return false;
});
- // (attempt) to change the text colour in a top post
+ // (attempt to) change the text colour in a top post
$('#profile-jot-text').focusin(function() {
$(this).css({color: '#eec'});
});
+ $('a[href=#top]').click(function() {
+ $('html, body').animate({scrollTop:0}, '500');
+ return false;
+ });
+
+ });
+ // shadowing effect for floating toolbars
+ $(document).scroll(function(e) {
+ var pageTop = $('html').scrollTop();
+ if (pageTop) {
+ $('#nav-floater').css({boxShadow: '3px 3px 10px rgba(0, 0, 0, 0.7)'});
+ $('.search-box').css({boxShadow: '3px 3px 10px rgba(0, 0, 0, 0.7)'});
+ } else {
+ $('#nav-floater').css({boxShadow: '0 0 0 0'});
+ $('.search-box').css({boxShadow: '0 0 0 0'});
+ }
});
</script>
EOT;