Merge pull request #6655 from SimonBrandner/fix/autocomplete-scroll

This commit is contained in:
Germain 2021-08-23 11:16:02 +01:00 committed by GitHub
commit 1fad454fe0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 */
@ -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 {