Make panel scrollbar track persistent

The bar is effectively invisible, but having it present means that we
don't see a jarring change in width when the content expands into the
overflow zone and triggers the scrollbar to suddenly appear.

// FREEBIE
pull/749/head
lilia 9 years ago
parent 5a9358efc9
commit 4060221b9c

@ -21,7 +21,7 @@
.panel {
height: calc(100% - #{$header-height});
overflow-y: auto;
overflow-y: scroll;
.container {
padding-top: 20px;

@ -640,7 +640,7 @@ input.search {
height: 100%; }
.conversation .panel {
height: calc(100% - 64px);
overflow-y: auto; }
overflow-y: scroll; }
.conversation .panel .container {
padding-top: 20px;
max-width: 910px;

Loading…
Cancel
Save