fix(category-picker): add scrollbar to category picker

Summary:
fixes T3564

the problem was that the user couldn't tell that the folder & label lists contained more folders & labels than was shown. so i added a scrollbar to make it clearer.

Test Plan: tested manually. all tests still green.

Reviewers: evan, bengotow

Reviewed By: bengotow

Maniphest Tasks: T3564

Differential Revision: https://phab.nylas.com/D2029
This commit is contained in:
dillon 2015-09-17 12:59:01 -07:00
parent 793acfa132
commit 638843ebba
2 changed files with 5 additions and 4 deletions

View file

@ -11,7 +11,7 @@
max-height:400px;
background-color: @background-color;
border-radius: @border-radius-base;
overflow: hidden;
overflow: scroll;
box-shadow: 0 0.5px 0 rgba(0, 0, 0, 0.15), 0 -0.5px 0 rgba(0, 0, 0, 0.15), 0.5px 0 0 rgba(0, 0, 0, 0.15), -0.5px 0 0 rgba(0, 0, 0, 0.15), 0 4px 7px rgba(0,0,0,0.15), inset 0 0 1px rgba(0,0,0,0.5);
.menu {

View file

@ -38,11 +38,12 @@
margin-top: -9px;
}
::-webkit-scrollbar {
display: none;
}
.scroll-region {
::-webkit-scrollbar {
display: none;
}
position:relative;
.scroll-region-content {