2012-03-11 07:32:11 +01:00
|
|
|
<?php
|
2012-03-14 06:05:08 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* 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'
|
|
|
|
);
|
2012-03-11 07:32:11 +01:00
|
|
|
|
|
|
|
$a->page['htmlhead'] .= <<< EOT
|
|
|
|
<script>
|
|
|
|
$(document).ready(function() {
|
|
|
|
$('.group-edit-icon').hover(
|
|
|
|
function() {
|
|
|
|
$(this).addClass('icon');
|
|
|
|
$(this).removeClass('iconspacer'); },
|
|
|
|
|
|
|
|
function() {
|
|
|
|
$(this).removeClass('icon');
|
|
|
|
$(this).addClass('iconspacer'); }
|
|
|
|
);
|
|
|
|
|
|
|
|
$('.sidebar-group-element').hover(
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).addClass('icon');
|
|
|
|
$('#edit-' + id).removeClass('iconspacer'); },
|
|
|
|
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#edit-' + id).removeClass('icon');
|
|
|
|
$('#edit-' + id).addClass('iconspacer'); }
|
|
|
|
);
|
|
|
|
|
|
|
|
$('.savedsearchdrop').hover(
|
|
|
|
function() {
|
|
|
|
$(this).addClass('drop');
|
|
|
|
$(this).addClass('icon');
|
|
|
|
$(this).removeClass('iconspacer'); },
|
|
|
|
|
|
|
|
function() {
|
|
|
|
$(this).removeClass('drop');
|
|
|
|
$(this).removeClass('icon');
|
|
|
|
$(this).addClass('iconspacer'); }
|
|
|
|
);
|
|
|
|
|
|
|
|
$('.savedsearchterm').hover(
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#drop-' + id).addClass('icon');
|
|
|
|
$('#drop-' + id).addClass('drophide');
|
|
|
|
$('#drop-' + id).removeClass('iconspacer'); },
|
|
|
|
|
|
|
|
function() {
|
|
|
|
id = $(this).attr('id');
|
|
|
|
$('#drop-' + id).removeClass('icon');
|
|
|
|
$('#drop-' + id).removeClass('drophide');
|
|
|
|
$('#drop-' + id).addClass('iconspacer'); }
|
|
|
|
);
|
|
|
|
|
2012-03-16 18:31:59 +01:00
|
|
|
// click outside notifications menu closes it
|
2012-03-14 06:05:08 +01:00
|
|
|
$('html').click(function() {
|
|
|
|
$('#nav-notifications-linkmenu').removeClass('selected');
|
|
|
|
document.getElementById("nav-notifications-menu").style.display = "none";
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#nav-notifications-linkmenu').click(function(event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
});
|
|
|
|
|
2012-03-16 18:31:59 +01:00
|
|
|
// main function in toolbar functioning
|
2012-03-11 07:32:11 +01:00
|
|
|
function toggleToolbar() {
|
|
|
|
if ( $('#nav-floater').is(':visible') ) {
|
|
|
|
$('#nav-floater').slideUp('fast');
|
|
|
|
$('.floaterflip').css({
|
|
|
|
backgroundPosition: '-210px -60px'
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$('#nav-floater').slideDown('fast');
|
|
|
|
$('.floaterflip').css({
|
|
|
|
backgroundPosition: '-190px -60px'
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
2012-03-16 18:31:59 +01:00
|
|
|
// our trigger for the toolbar button
|
2012-03-11 07:32:11 +01:00
|
|
|
$('.floaterflip').click(function() {
|
|
|
|
toggleToolbar();
|
|
|
|
return false;
|
|
|
|
});
|
2012-03-14 06:05:08 +01:00
|
|
|
|
2012-03-16 18:31:59 +01:00
|
|
|
// (attempt) to change the text colour in a top post
|
2012-03-14 06:05:08 +01:00
|
|
|
$('#profile-jot-text').focusin(function() {
|
|
|
|
$(this).css({color: '#eec'});
|
|
|
|
});
|
|
|
|
|
2012-03-16 18:31:59 +01:00
|
|
|
// make auto-complete work in more places
|
|
|
|
$(".wall-item-comment-wrapper textarea").contact_autocomplete(baseurl+"/acl");
|
|
|
|
|
2012-03-15 20:07:17 +01:00
|
|
|
/* $('#profile-photo-wrapper').mouseover(function() {
|
|
|
|
$('.profile-edit-side-div').css({display: 'block'});
|
2012-03-14 06:05:08 +01:00
|
|
|
}).mouseout(function() {
|
2012-03-15 20:07:17 +01:00
|
|
|
$('.profile-edit-side-div').css({display: 'none'});
|
|
|
|
return false;
|
2012-03-14 06:05:08 +01:00
|
|
|
});
|
2012-03-15 20:07:17 +01:00
|
|
|
|
|
|
|
$('img.photo').mouseover(function() {
|
|
|
|
$('.profile-edit-side-div').css({display: 'block'});
|
|
|
|
}).mouseout(function() {
|
|
|
|
$('.profile-edit-side-div').css({display: 'none'});
|
|
|
|
return false;
|
|
|
|
});*/
|
|
|
|
|
2012-03-11 07:32:11 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
EOT;
|
2012-03-12 01:36:16 +01:00
|
|
|
|