// new theme fix
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@10869 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
@@ -142,7 +142,7 @@ var removingLinkText = '{l s='remove this product from my cart' mod='blockcart'
|
||||
{/if}
|
||||
<p id="cart-buttons">
|
||||
{if $blockcart_order_process == 'order'}<a href="{$link->getPageLink("$blockcart_order_process.php", true)}" class="button_small" title="{l s='Cart' mod='blockcart'}">{l s='Cart' mod='blockcart'}</a>{/if}
|
||||
<a href="{$link->getPageLink("$blockcart_order_process.php", true)}{if $blockcart_order_process == 'order'}?step=1{/if}" id="button_order_cart" class="exclusive{if $blockcart_order_process == 'order-opc'}_large{/if}" title="{l s='Check out' mod='blockcart'}"><span></span>{l s='Check out' mod='blockcart'}</a>
|
||||
<a href="{$link->getPageLink("$blockcart_order_process.php", true)}" id="button_order_cart" class="exclusive{if $blockcart_order_process == 'order-opc'}_large{/if}" title="{l s='Check out' mod='blockcart'}"><span></span>{l s='Check out' mod='blockcart'}</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
/* module blockwishlist */
|
||||
|
||||
/* lnk on detail product page */
|
||||
#wishlist_button {
|
||||
padding:2px 0 2px 20px;
|
||||
background:url(img/icon/add.png) no-repeat 0 0 transparent
|
||||
}
|
||||
|
||||
|
||||
/* bt add */
|
||||
.add_wishlist_button a {padding:5px 7px 5px 18px}
|
||||
.add_wishlist_button a span {
|
||||
|
||||
BIN
modules/blockwishlist/img/icon/add.png
Normal file
BIN
modules/blockwishlist/img/icon/add.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 917 B |
@@ -48,7 +48,7 @@
|
||||
|
||||
#usefull_link_block li#favoriteproducts_block_extra_remove {
|
||||
padding-left:20px;
|
||||
background:url(img/add_favorite.gif) no-repeat 0 0;
|
||||
background:url(img/del_favorite.gif) no-repeat 0 0;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
|
||||
BIN
modules/favoriteproducts/img/del_favorite.gif
Normal file
BIN
modules/favoriteproducts/img/del_favorite.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 358 B |
@@ -8,16 +8,23 @@
|
||||
line-height:18px
|
||||
}
|
||||
|
||||
#product_comments_block_extra a {text-decoration: none;}
|
||||
#product_comments_block_extra a {
|
||||
padding-left: 10px;
|
||||
text-decoration: none;
|
||||
background: url(img/bg_li.png) no-repeat scroll 1px 45% #fff;
|
||||
|
||||
}
|
||||
|
||||
#product_comments_block_extra a:hover {text-decoration: underline}
|
||||
|
||||
#product_comments_block_extra .comments_note {margin-bottom:5px}
|
||||
#product_comments_block_extra .comments_note span,
|
||||
#product_comments_block_extra .star_content {float:left}
|
||||
#product_comments_block_extra .star_content {margin-top:2px}
|
||||
|
||||
#product_comments_block_extra div.star {background: url(img/star.gif) no-repeat scroll 0 0 transparent}
|
||||
|
||||
#product_comments_block_extra div.star_on {background: url(img/star.gif) no-repeat scroll 0 -16px transparent}
|
||||
#product_comments_block_extra div.star_on {background: url(img/star.gif) no-repeat scroll 0 -12px transparent}
|
||||
|
||||
#product_comments_block_extra .comments_advices {clear:both;}
|
||||
|
||||
@@ -159,7 +166,7 @@
|
||||
#product_comments_block_tab div.star_on {
|
||||
background: url(img/star.gif) no-repeat 0 0 transparent
|
||||
}
|
||||
#product_comments_block_tab div.star_on {background-position: 0 -16px}
|
||||
#product_comments_block_tab div.star_on {background-position: 0 -12px}
|
||||
#product_comments_block_tab .comment_author_infos {clear:both}
|
||||
#product_comments_block_tab .comment_author_infos em {color:#999}
|
||||
|
||||
|
||||
@@ -27,13 +27,11 @@
|
||||
{literal}
|
||||
$('document').ready(function(){
|
||||
$('#send_friend_button').fancybox({
|
||||
'hideOnContentClick': false,
|
||||
'onClosed': function(){
|
||||
},
|
||||
'hideOnContentClick': false
|
||||
});
|
||||
|
||||
$('#sendEmail').click(function(){
|
||||
console.log('aaa');
|
||||
//console.log('aaa');
|
||||
var datas = [];
|
||||
$('#fancybox-content').find('input').each(function(index){
|
||||
var o = {}
|
||||
@@ -42,8 +40,8 @@ $('document').ready(function(){
|
||||
if (o.value != '')
|
||||
datas.push(o);
|
||||
});
|
||||
console.log(datas.length);
|
||||
console.log(datas);
|
||||
//console.log(datas.length);
|
||||
//console.log(datas);
|
||||
if (datas.length >= 3)
|
||||
{
|
||||
$.ajax({
|
||||
|
||||
Reference in New Issue
Block a user