Elastic: Fix navlist border (when it is with scrollbar)

pull/6226/head
Aleksander Machniak 7 years ago
parent f289b6767f
commit f1450a34d2

@ -64,8 +64,6 @@ font.bold {
flex: initial !important;
.listing {
border-bottom: 1px solid @color-layout-border;
tr:last-child td,
li:last-child {
border-bottom: 0;
@ -74,6 +72,9 @@ font.bold {
}
}
.pagenav.expanded + .navlist {
border-bottom: 1px solid @color-layout-border;
}
.contact-header {
display: flex;

@ -3079,10 +3079,12 @@ function rcube_elastic_ui()
navlist.animate({height: (Math.min(5, records.length) * height + 1) + 'px'}, speed);
button.addClass('collapse').removeClass('expand');
$(obj).addClass('expanded');
}
else {
navlist.animate({height: '0'}, speed);
button.addClass('expand').removeClass('collapse');
$(obj).removeClass('expanded');
}
};

Loading…
Cancel
Save