Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6655 from SimonBrandner/fix/autocomplete-scroll
Browse files Browse the repository at this point in the history
  • Loading branch information
germain-gg authored Aug 23, 2021
2 parents 5344b86 + b58184d commit 1fad454
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions res/css/views/rooms/_Autocomplete.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@
background: $primary-bg-color;
border-bottom: none;
border-radius: 8px 8px 0 0;
max-height: 50vh;
overflow: auto;
max-height: 35vh;
overflow: clip;
display: flex;
box-shadow: 0px -16px 32px $composer-shadow-color;
}

.mx_Autocomplete_ProviderSection {
border-bottom: 1px solid $primary-hairline-color;
width: 100%;
}

/* a "block" completion takes up a whole line */
Expand Down Expand Up @@ -59,8 +61,8 @@

.mx_Autocomplete_Completion_container_pill {
margin: 12px;
display: flex;
flex-direction: column;
height: 100%;
overflow-y: scroll;
}

.mx_Autocomplete_Completion_container_truncate {
Expand Down

0 comments on commit 1fad454

Please sign in to comment.