item deletion and hover images

This commit is contained in:
Mike Macgirvin
2010-07-26 17:01:37 -07:00
parent 17808daf5e
commit 7a6665b5cf
9 changed files with 92 additions and 45 deletions

View File

@@ -17,7 +17,7 @@
<div id="contact-edit-links" >
<a href="contacts/$contact_id/block" id="contact-edit-block-link" ><img src="images/b_block.gif" alt="Block/Unblock contact" title="$block_text"/></a>
<a href="contacts/$contact_id/drop" id="contact-edit-drop-link"><img src="images/b_drop.gif" alt="Delete contact" title="Delete contact"/></a>
<a href="contacts/$contact_id/drop" id="contact-edit-drop-link" onclick="return confirmDelete();" ><img src="images/b_drophide.gif" alt="Delete contact" title="Delete contact" onmouseover="imgbright(this);" onmouseout="imgdull(this);" /></a>
</div>
<div id="contact-edit-nav-end"></div>
</div>

View File

@@ -20,11 +20,6 @@
msie = $.browser.msie ;
NavUpdate();
// $('.wall-item-delete-icon').hover(function() {
// $(this).attr("src",$(this).attr("src").replace('hide',''));
// },function() {
// $(this).attr("src",$(this).attr("src").replace('','hide'));
// });
});
@@ -79,5 +74,18 @@
return confirm("Delete this item?");
}
function imgbright(node) {
$(node).attr("src",$(node).attr("src").replace('hide','show'));
}
function imgdull(node) {
$(node).attr("src",$(node).attr("src").replace('show','hide'));
}
</script>

View File

@@ -483,9 +483,13 @@ input#dfrn-url {
}
.wall-item-delete-wrapper {
float: left;
margin-top: 10px;
margin-left: 50px;
float: right;
margin-top: 20px;
margin-right: 50px;
}
.wall-item-delete-end {
clear: both;
}
.wall-item-delete-icon {
@@ -506,6 +510,7 @@ input#dfrn-url {
}
.wall-item-body {
float: left;
width: 450px;
margin-top: 30px;
margin-left: 10px;
}

View File

@@ -6,9 +6,9 @@
<div class="wall-item-wrapper" id="wall-item-wrapper-$id" >
<a href="$profile_url" title="View $name's profile" class="wall-item-name-link"><span class="wall-item-name" id="wall-item-name-$id" >$name</span></a>
<div class="wall-item-ago" id="wall-item-ago-$id">$ago</div>
$drop
</div>
<div class="wall-item-body" id="wall-item-body-$id" >$body</div>
$drop
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-comment-separator"></div>
$comment

View File

@@ -1 +1 @@
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$id" ><a href="item/drop/$id" onclick="return confirmDelete();" ><img src="images/b_drop.gif" alt="Delete" title="Delete" id="wall-item-delete-icon-$id" class="wall-item-delete-icon"></a></div>
<div class="wall-item-delete-wrapper" id="wall-item-delete-wrapper-$id" ><a href="item/drop/$id" onclick="return confirmDelete();" ><img src="images/b_drophide.gif" alt="Delete" title="Delete" id="wall-item-delete-icon-$id" class="wall-item-delete-icon" onmouseover="imgbright(this);" onmouseout="imgdull(this);" ></a></div><div class="wall-item-delete-end"></div>