diff options
author | Simon L'nu <simon.lnu@gmail.com> | 2012-03-14 01:05:08 -0400 |
---|---|---|
committer | Simon L'nu <simon.lnu@gmail.com> | 2012-03-14 01:05:08 -0400 |
commit | 975781d3e23e6beb2ac86b191c7c12b7347c1705 (patch) | |
tree | 62ee6d6f1e983c4003e170eed41d4fd495f50b17 /view/theme/dispy-dark/theme.php | |
parent | a2073bcfc05abadc3e967f40c66d1fa674bba0d3 (diff) | |
download | volse-hubzilla-975781d3e23e6beb2ac86b191c7c12b7347c1705.tar.gz volse-hubzilla-975781d3e23e6beb2ac86b191c7c12b7347c1705.tar.bz2 volse-hubzilla-975781d3e23e6beb2ac86b191c7c12b7347c1705.zip |
massive work done to both dispys, mostly -dark
Signed-off-by: Simon L'nu <simon.lnu@gmail.com>
Diffstat (limited to 'view/theme/dispy-dark/theme.php')
-rw-r--r-- | view/theme/dispy-dark/theme.php | 46 |
1 files changed, 43 insertions, 3 deletions
diff --git a/view/theme/dispy-dark/theme.php b/view/theme/dispy-dark/theme.php index a7aec1c1a..6f8243058 100644 --- a/view/theme/dispy-dark/theme.php +++ b/view/theme/dispy-dark/theme.php @@ -1,5 +1,17 @@ <?php -$a->theme_info = array(); + +/* + * Name: Dispy Dark + * Description: Dispy Dark, Friendica theme + * Version: 0.9 + * Author: Simon <http://simon.kisikew.org/> + * Maintainer: Simon <http://simon.kisikew.org/> + */ + + +$a->theme_info = array( + 'extends' => 'dispy-dark' +); $a->page['htmlhead'] .= <<< EOT <script> @@ -52,6 +64,26 @@ $(document).ready(function() { $('#drop-' + id).addClass('iconspacer'); } ); + // notifications + $('html').click(function() { + $('#nav-notifications-linkmenu').removeClass('selected'); + document.getElementById("nav-notifications-menu").style.display = "none"; + }); + + $('#nav-notifications-linkmenu').click(function(event) { + event.stopPropagation(); + }); + + // usermenu + //$('html').click(function() { +// $('#user-menu-popup').css('display: none'); + //document.getElementById("usermenu-popup").style.display = "none"; + //}); + + //$('#user-menu').click(function(event) { + // event.stopPropagation(); + //}); + function toggleToolbar() { if ( $('#nav-floater').is(':visible') ) { $('#nav-floater').slideUp('fast'); @@ -69,9 +101,17 @@ $(document).ready(function() { toggleToolbar(); return false; }); + + $('#profile-jot-text').focusin(function() { + $(this).css({color: '#eec'}); + }); + + $('#profile-photo-wrapper').mouseover(function() { + $('#profile-edit-side-div').css({display: 'block'}); + }).mouseout(function() { + $('#profile-edit-side-div').css({display: 'none'}); + }); }); </script> EOT; -$a->page['footer'] .= <<<EOFooter -EOFooter; |