mirror of
https://github.com/Foundry376/Mailspring.git
synced 2025-11-10 00:11:34 +08:00
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:
parent
267a719016
commit
8605fdb531
2 changed files with 5 additions and 4 deletions
|
|
@ -11,7 +11,7 @@
|
||||||
max-height:400px;
|
max-height:400px;
|
||||||
background-color: @background-color;
|
background-color: @background-color;
|
||||||
border-radius: @border-radius-base;
|
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);
|
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 {
|
.menu {
|
||||||
|
|
|
||||||
|
|
@ -38,11 +38,12 @@
|
||||||
margin-top: -9px;
|
margin-top: -9px;
|
||||||
}
|
}
|
||||||
|
|
||||||
::-webkit-scrollbar {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.scroll-region {
|
.scroll-region {
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
position:relative;
|
position:relative;
|
||||||
|
|
||||||
.scroll-region-content {
|
.scroll-region-content {
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue