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 { ...@@ -2034,7 +2034,7 @@ label.chevron.bottom::first-letter {
.right-container .right-panel{ .right-container .right-panel{
position: absolute; position: absolute;
right: 0; right: 0;
padding: 0px 15px; padding: 0px 10px 0px 15px;
padding-bottom: 100px; padding-bottom: 100px;
} }
.panel section > h2{ .panel section > h2{
...@@ -2050,6 +2050,7 @@ label.chevron.bottom::first-letter { ...@@ -2050,6 +2050,7 @@ label.chevron.bottom::first-letter {
cursor: pointer; cursor: pointer;
margin-bottom: 12px; margin-bottom: 12px;
position: relative; position: relative;
margin-right: 5px;
} }
.product-list article .article-bg{ .product-list article .article-bg{
opacity: 0.1; opacity: 0.1;
......
...@@ -459,6 +459,9 @@ ...@@ -459,6 +459,9 @@
#catalogue .right-container .right-panel { #catalogue .right-container .right-panel {
padding: 0px; padding: 0px;
} }
#catalogue .right-container .right-panel .panel-content{
padding-bottom: 55px;
}
.filter-btn .btn-container{ .filter-btn .btn-container{
left: 0px; left: 0px;
position: fixed; position: fixed;
...@@ -730,7 +733,7 @@ ...@@ -730,7 +733,7 @@
} }
.product-list figure{ .product-list figure{
max-width: 146px; max-width: 146px;
height: 154px; height: 154px !important;
} }
.product-list figure img { .product-list figure img {
height: 154px; height: 154px;
......
...@@ -401,8 +401,10 @@ $.fn.appendMobileMenu = function(){ ...@@ -401,8 +401,10 @@ $.fn.appendMobileMenu = function(){
$('.right-panel').outerWidth(windowWidth - (navMenuWidth + filterWidth)); $('.right-panel').outerWidth(windowWidth - (navMenuWidth + filterWidth));
$('.contact-form').height(windowHeight - footerHeight); $('.contact-form').height(windowHeight - footerHeight);
$('.contact-form .inner-form').outerHeight(windowHeight - footerContact); $('.contact-form .inner-form').outerHeight(windowHeight - footerContact);
if (lastSectionHeight < windowHeight - footerHeight) if (lastSectionHeight < windowHeight - footerHeight){
$('#catalogue .panel-content section').last().height(2 * windowHeight/3 - footerHeight ); var lastSection = $('#catalogue .panel-content section').last();
lastSection.height(2 * windowHeight/3 + lastSection.find('h2') - footerHeight );
}
if (windowWidth > 860){ if (windowWidth > 860){
$('#fullpage .chevron').css('left',navMenuWidth); $('#fullpage .chevron').css('left',navMenuWidth);
$('.container-bg').css({'height':'100%' , 'width' : 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