more icon updates

This commit is contained in:
friendica
2013-12-04 17:36:53 -08:00
parent f9c5cde38b
commit 307fcac86d
11 changed files with 23 additions and 48 deletions

View File

@@ -458,6 +458,14 @@ footer {
clear: both;
}
.vcard-profile-edit-icon {
font-size: 1.2em;
}
.vcard-profile-edit-icon:hover {
text-decoration: none;
}
#profile-extra-links {
clear: both;
margin-top: 10px;
@@ -589,11 +597,6 @@ footer {
margin-bottom: 10px;
}
.contact-entry-direction-icon {
margin-top: 24px;
margin-right: 2px;
}
.contact-entry-photo img {
border: none;
}
@@ -638,11 +641,7 @@ footer {
margin-left: 50px;
}
/* might be obsolete
.wall-item-delete-icon {
border: none;
}
*/
/* might be obsolete
#profile-youtube-wrapper {
@@ -2697,6 +2696,7 @@ text-decoration: none;
list-style-type: none;
}
.group-edit-icon,
.savedsearchdrop {
opacity: 0;
}

View File

@@ -20,19 +20,19 @@ $(document).ready(function() {
$('.group-edit-icon').hover(
function() {
$(this).addClass('icon'); $(this).removeClass('iconspacer');},
$(this).css('opacity','1.0');},
function() {
$(this).removeClass('icon'); $(this).addClass('iconspacer');}
);
$(this).css('opacity','0');}
);
$('.sidebar-group-element').hover(
function() {
id = $(this).attr('id');
$('#edit-' + id).addClass('icon'); $('#edit-' + id).removeClass('iconspacer');},
$('#edit-' + id).css('opacity','1.0');},
function() {
id = $(this).attr('id');
$('#edit-' + id).removeClass('icon');$('#edit-' + id).addClass('iconspacer');}
$('#edit-' + id).css('opacity','0');}
);