Commit c385cc33 authored by imac's avatar imac

[Bugfix]JIRA : NAP-27 -> catalogue page : css filter bar

parent e8622eb2
......@@ -2034,7 +2034,7 @@ label.chevron.bottom::first-letter {
.right-container .right-panel{
position: absolute;
right: 0;
padding: 0px 15px;
padding: 0px 10px 0px 15px;
padding-bottom: 100px;
}
.panel section > h2{
......@@ -2050,6 +2050,7 @@ label.chevron.bottom::first-letter {
cursor: pointer;
margin-bottom: 12px;
position: relative;
margin-right: 5px;
}
.product-list article .article-bg{
opacity: 0.1;
......
......@@ -459,6 +459,9 @@
#catalogue .right-container .right-panel {
padding: 0px;
}
#catalogue .right-container .right-panel .panel-content{
padding-bottom: 55px;
}
.filter-btn .btn-container{
left: 0px;
position: fixed;
......@@ -730,7 +733,7 @@
}
.product-list figure{
max-width: 146px;
height: 154px;
height: 154px !important;
}
.product-list figure img {
height: 154px;
......
......@@ -401,8 +401,10 @@ $.fn.appendMobileMenu = function(){
$('.right-panel').outerWidth(windowWidth - (navMenuWidth + filterWidth));
$('.contact-form').height(windowHeight - footerHeight);
$('.contact-form .inner-form').outerHeight(windowHeight - footerContact);
if (lastSectionHeight < windowHeight - footerHeight)
$('#catalogue .panel-content section').last().height(2 * windowHeight/3 - footerHeight );
if (lastSectionHeight < windowHeight - footerHeight){
var lastSection = $('#catalogue .panel-content section').last();
lastSection.height(2 * windowHeight/3 + lastSection.find('h2') - footerHeight );
}
if (windowWidth > 860){
$('#fullpage .chevron').css('left',navMenuWidth);
$('.container-bg').css({'height':'100%' , 'width' : navMenuWidth});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment