* Size Autocomplete relative to the RoomView height rather than the viewport height * Add screenshot for the autocomplete in a regression changes the height * Add cjk fonts to support rendering text emoticons displayed in slash command picker * Maybe when actually running the tests? * Try after system dependencies and clear font cache * Add cjk fonts to support rendering text emoticons displayed in slash command picker Try after system dependencies and clear font cache Maybe when actually running the tests? Revert "Add cjk fonts to support rendering text emoticons displayed in slash command picker" This reverts commit 46fa014308b6010626174f8cd0d3a978488963ee. * Render emoji autocoplete instead * Remove font install that didn't work
99 lines
2.1 KiB
Plaintext
99 lines
2.1 KiB
Plaintext
.mx_Autocomplete {
|
|
position: absolute;
|
|
bottom: 0;
|
|
z-index: 1001;
|
|
width: 100%;
|
|
border: 1px solid $primary-hairline-color;
|
|
background: $background;
|
|
border-bottom: none;
|
|
border-radius: 8px 8px 0 0;
|
|
overflow: clip;
|
|
display: flex;
|
|
flex-direction: column;
|
|
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 */
|
|
.mx_Autocomplete_Completion_block {
|
|
min-height: 34px;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
padding: 0 12px;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
color: $primary-content;
|
|
}
|
|
|
|
.mx_Autocomplete_Completion_block * {
|
|
margin: 0 3px;
|
|
}
|
|
|
|
.mx_Autocomplete_Completion_pill {
|
|
box-sizing: border-box;
|
|
border-radius: 2rem;
|
|
height: $font-34px;
|
|
padding: 0.4rem;
|
|
display: flex;
|
|
user-select: none;
|
|
cursor: pointer;
|
|
align-items: center;
|
|
color: $primary-content;
|
|
}
|
|
|
|
.mx_Autocomplete_Completion_pill > * {
|
|
margin-right: 0.3rem;
|
|
}
|
|
|
|
/* styling for common completion elements */
|
|
.mx_Autocomplete_Completion_subtitle {
|
|
font-style: italic;
|
|
flex: 1;
|
|
}
|
|
|
|
.mx_Autocomplete_Completion_description {
|
|
color: gray;
|
|
min-width: 150px;
|
|
}
|
|
|
|
.mx_Autocomplete_Completion_container_pill {
|
|
margin: 12px;
|
|
height: 100%;
|
|
overflow-y: scroll;
|
|
}
|
|
|
|
@container roomview (height >= 0px) {
|
|
.mx_Autocomplete_Completion_container_pill {
|
|
max-height: 40cqh;
|
|
}
|
|
}
|
|
|
|
.mx_Autocomplete_Completion_container_truncate {
|
|
.mx_Autocomplete_Completion_title,
|
|
.mx_Autocomplete_Completion_subtitle,
|
|
.mx_Autocomplete_Completion_description {
|
|
/* Ellipsis for long names/subtitles/descriptions */
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
}
|
|
|
|
.mx_Autocomplete_Completion.selected,
|
|
.mx_Autocomplete_Completion:hover {
|
|
background: $selected-color;
|
|
outline: none;
|
|
}
|
|
|
|
.mx_Autocomplete_provider_name {
|
|
margin: 12px;
|
|
color: $primary-content;
|
|
font-weight: 400;
|
|
opacity: 0.4;
|
|
}
|