From 4060221b9cb87e4c8db458061a90279a7b952e5a Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 23 Mar 2016 15:28:31 -0700 Subject: [PATCH] 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 --- stylesheets/_conversation.scss | 2 +- stylesheets/manifest.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stylesheets/_conversation.scss b/stylesheets/_conversation.scss index fd061a2d4..fb5ce29c5 100644 --- a/stylesheets/_conversation.scss +++ b/stylesheets/_conversation.scss @@ -21,7 +21,7 @@ .panel { height: calc(100% - #{$header-height}); - overflow-y: auto; + overflow-y: scroll; .container { padding-top: 20px; diff --git a/stylesheets/manifest.css b/stylesheets/manifest.css index b969e59c5..c8b7cec89 100644 --- a/stylesheets/manifest.css +++ b/stylesheets/manifest.css @@ -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;