Change styling to always have scrollbar on search results
This commit is contained in:
parent
d4b65193c7
commit
5dcc406abe
2 changed files with 45 additions and 34 deletions
|
@ -125,10 +125,12 @@ class SearchResults extends ImmutablePureComponent {
|
|||
<FormattedMessage id='search_results.total' defaultMessage='{count, number} {count, plural, one {result} other {results}}' values={{ count }} />
|
||||
</header>
|
||||
|
||||
<div className='search-results__contents'>
|
||||
{accounts}
|
||||
{statuses}
|
||||
{hashtags}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
}
|
||||
|
|
|
@ -115,8 +115,10 @@
|
|||
|
||||
.drawer--results {
|
||||
background: $ui-base-color;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
overflow: hidden;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
flex: 1 1 auto;
|
||||
|
||||
& > header {
|
||||
color: $dark-text-color;
|
||||
|
@ -125,6 +127,7 @@
|
|||
font-weight: 500;
|
||||
font-size: 16px;
|
||||
cursor: default;
|
||||
flex: 0 0 auto;
|
||||
|
||||
.fa {
|
||||
display: inline-block;
|
||||
|
@ -132,6 +135,11 @@
|
|||
}
|
||||
}
|
||||
|
||||
& > .search-results__contents {
|
||||
overflow-x: hidden;
|
||||
overflow-y: scroll;
|
||||
flex: 1 1 auto;
|
||||
|
||||
& > section {
|
||||
margin-bottom: 5px;
|
||||
|
||||
|
@ -170,6 +178,7 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.drawer__pager {
|
||||
|
|
Loading…
Reference in a new issue