]> git.mxchange.org Git - friendica.git/blob - view/theme/dispy-dark/theme.php
Merge branch 'master' of git://github.com/friendica/friendica
[friendica.git] / view / theme / dispy-dark / theme.php
1 <?php
2
3 /*
4  * Name: Dispy Dark
5  * Description: Dispy Dark, Friendica theme
6  * Version: 0.9
7  * Author: Simon <http://simon.kisikew.org/>
8  * Maintainer: Simon <http://simon.kisikew.org/>
9  */
10
11
12 $a->theme_info = array(
13         'extends' => 'dispy-dark'
14 );
15
16 $a->page['htmlhead'] .= <<< EOT
17 <script>
18 $(document).ready(function() {
19     $('.group-edit-icon').hover(
20         function() {
21             $(this).addClass('icon');
22             $(this).removeClass('iconspacer'); },
23
24         function() {
25             $(this).removeClass('icon');
26             $(this).addClass('iconspacer'); }
27     );
28
29     $('.sidebar-group-element').hover(
30         function() {
31             id = $(this).attr('id');
32             $('#edit-' + id).addClass('icon');
33             $('#edit-' + id).removeClass('iconspacer'); },
34
35         function() {
36             id = $(this).attr('id');
37             $('#edit-' + id).removeClass('icon');
38             $('#edit-' + id).addClass('iconspacer'); }
39     );
40
41     $('.savedsearchdrop').hover(
42         function() {
43             $(this).addClass('drop');
44             $(this).addClass('icon');
45             $(this).removeClass('iconspacer'); },
46
47         function() {
48             $(this).removeClass('drop');
49             $(this).removeClass('icon');
50             $(this).addClass('iconspacer'); }
51     );
52
53     $('.savedsearchterm').hover(
54         function() {
55             id = $(this).attr('id');
56             $('#drop-' + id).addClass('icon');
57             $('#drop-' + id).addClass('drophide');
58             $('#drop-' + id).removeClass('iconspacer'); },
59
60         function() {
61             id = $(this).attr('id');
62             $('#drop-' + id).removeClass('icon');
63             $('#drop-' + id).removeClass('drophide');
64             $('#drop-' + id).addClass('iconspacer'); }
65         );
66
67         // click outside notifications menu closes it
68         $('html').click(function() {
69                 $('#nav-notifications-linkmenu').removeClass('selected');
70                 document.getElementById("nav-notifications-menu").style.display = "none";
71         });
72
73         $('#nav-notifications-linkmenu').click(function(event) {
74                 event.stopPropagation();
75         });
76         // click outside profiles menu closes it
77         $('html').click(function() {
78                 $('#profiles-menu-trigger').removeClass('selected');
79                 document.getElementById("profiles-menu").style.display = "none";
80         });
81
82         $('#profiles-menu').click(function(event) {
83                 event.stopPropagation();
84         });
85
86         // main function in toolbar functioning
87     function toggleToolbar() {
88         if ( $('#nav-floater').is(':visible') ) {
89             $('#nav-floater').slideUp('fast');
90             $('.floaterflip').css({
91                 backgroundPosition: '-210px -60px' 
92             });
93         } else {
94             $('#nav-floater').slideDown('fast');
95             $('.floaterflip').css({
96                 backgroundPosition: '-190px -60px'
97             });
98         }
99     };
100         // our trigger for the toolbar button
101     $('.floaterflip').click(function() {
102         toggleToolbar();
103         return false;
104     });
105
106         // (attempt) to change the text colour in a top post
107         $('#profile-jot-text').focusin(function() {
108                 $(this).css({color: '#eec'});
109         });
110
111 /*      $('#profile-photo-wrapper').mouseover(function() {
112                 $('.profile-edit-side-div').css({display: 'block'});
113         }).mouseout(function() {
114                 $('.profile-edit-side-div').css({display: 'none'});
115                 return false;
116         });
117
118         $('img.photo').mouseover(function() {
119                 $('.profile-edit-side-div').css({display: 'block'});
120         }).mouseout(function() {
121                 $('.profile-edit-side-div').css({display: 'none'});
122                 return false;
123         });*/
124
125 });
126 </script>
127 EOT;
128