aboutsummaryrefslogtreecommitdiffstats
path: root/view/theme/dispy/theme.php
diff options
context:
space:
mode:
authorSimon <simon@kisikew.org>2012-03-13 22:10:02 -0700
committerSimon <simon@kisikew.org>2012-03-13 22:10:02 -0700
commitfb77bfa648c3dd06d1b3f343f5ad98f32a7ce313 (patch)
treebc2ba3aac0a08c1464718f688be8080d0dff6d2c /view/theme/dispy/theme.php
parent4972d7ef6ee740f6eb09d8c7efa9a76ee40973c1 (diff)
parent975781d3e23e6beb2ac86b191c7c12b7347c1705 (diff)
downloadvolse-hubzilla-fb77bfa648c3dd06d1b3f343f5ad98f32a7ce313.tar.gz
volse-hubzilla-fb77bfa648c3dd06d1b3f343f5ad98f32a7ce313.tar.bz2
volse-hubzilla-fb77bfa648c3dd06d1b3f343f5ad98f32a7ce313.zip
Merge pull request #131 from simonlnu/master
massive work done to both dispys, mostly -dark
Diffstat (limited to 'view/theme/dispy/theme.php')
-rw-r--r--view/theme/dispy/theme.php41
1 files changed, 40 insertions, 1 deletions
diff --git a/view/theme/dispy/theme.php b/view/theme/dispy/theme.php
index a7aec1c1a..75297290c 100644
--- a/view/theme/dispy/theme.php
+++ b/view/theme/dispy/theme.php
@@ -1,5 +1,17 @@
<?php
-$a->theme_info = array();
+
+/*
+ * Name: Dispy
+ * Description: Dispy, Friendica theme
+ * Version: 0.9
+ * Author: unknown
+ * Maintainer: Simon <http://simon.kisikew.org/>
+ */
+
+
+$a->theme_info = array(
+ 'extends' => 'dispy'
+);
$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() {
+ $('#nav-user-linkmenu').removeClass('selected');
+ document.getElementById("nav-user-menu").style.display = "none";
+ });
+
+ $('#nav-user-linkmenu').click(function(event) {
+ event.stopPropagation();
+ });
+
function toggleToolbar() {
if ( $('#nav-floater').is(':visible') ) {
$('#nav-floater').slideUp('fast');
@@ -71,6 +103,13 @@ $(document).ready(function() {
});
});
</script>
+<script>
+$(document).ready(function() {
+ $('#profile-jot-text').focusin(function() {
+ $(this).css('color: #eec;');
+ });
+});
+</script>
EOT;
$a->page['footer'] .= <<<EOFooter