This commit is contained in:
sThiebaut
2011-12-30 15:33:52 +00:00
parent acdedffc71
commit 29acdb01e6
2 changed files with 11 additions and 4 deletions
+9 -2
View File
@@ -22,10 +22,15 @@
/* bloc */
#wishlist_block #wishlist_block_list {
margin:10px 0;
margin:5px 0 10px 0;
padding-bottom:10px;
border-bottom:1px dotted #ccc
}
#wishlist_block_list dt {
position:relative;
margin-top:5px;
padding-right:20px
}
#wishlist_block_list .quantity-formated {
display:inline-block;
@@ -34,8 +39,10 @@
}
#wishlist_block_list .cart_block_product_name {font-weight:bold}
#wishlist_block_list .ajax_cart_block_remove_link {
float:right;
display:inline-block;
position:absolute;
right:0;
top:0;
margin:1px 0 0 5px;
height:12px;
width:12px
+2 -2
View File
@@ -214,13 +214,13 @@ function WishlistVisibility(bought_class, id_button)
{
$('.' + bought_class).slideDown('fast');
$('#show' + id_button).hide();
$('#hide' + id_button).fadeIn('fast');
$('#hide' + id_button).css('display', 'block');
}
else
{
$('.' + bought_class).slideUp('fast');
$('#hide' + id_button).hide();
$('#show' + id_button).fadeIn('fast');
$('#show' + id_button).css('display', 'block');
}
}