Change styling to always have scrollbar on search results

pull/1408/head
Thibaut Girka 2020-08-17 14:05:59 +02:00 committed by ThibG
parent d4b65193c7
commit 5dcc406abe
2 changed files with 45 additions and 34 deletions

View File

@ -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>
);
};
}

View File

@ -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;
@ -171,6 +179,7 @@
}
}
}
}
.drawer__pager {
box-sizing: border-box;