git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@11066 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
sThiebaut
2011-12-08 17:07:55 +00:00
parent e9ee2e68ca
commit 085f64c85f
10 changed files with 36 additions and 17 deletions
+3
View File
@@ -31,6 +31,9 @@
text-indent:-5000px;
background:url(img/icon/less.gif) no-repeat 2px 2px;
}
#layered_block_left span.closed a {
background:url(img/icon/more.gif) no-repeat 2px 2px;
}
#layered_block_left .layered_subtitle {
display: inline-block;
+2
View File
@@ -240,11 +240,13 @@ function openCloseFilter()
{
$('#'+$(this).attr('rel')).show();
$(this).html('v');
$(this).parent().removeClass('closed');
}
else
{
$('#'+$(this).attr('rel')).hide();
$(this).html('<');
$(this).parent().addClass('closed');
}
e.preventDefault();