52 lines
935 B
SCSS
52 lines
935 B
SCSS
.MessageContextMenu {
|
|
position: absolute;
|
|
font-size: 1rem;
|
|
|
|
.scrollable-content {
|
|
overflow: auto;
|
|
overflow: overlay;
|
|
padding: 0.5rem 0;
|
|
overscroll-behavior: contain;
|
|
}
|
|
|
|
&.compact .scrollable-content {
|
|
padding: 0.25rem 0;
|
|
}
|
|
|
|
.bubble {
|
|
transition: opacity 0.15s cubic-bezier(0.2, 0, 0.2, 1), transform 0.15s cubic-bezier(0.2, 0, 0.2, 1) !important;
|
|
transform: scale(0.7);
|
|
overflow: initial;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
&.with-reactions .bubble {
|
|
margin-top: 3.5rem;
|
|
}
|
|
|
|
.backdrop {
|
|
touch-action: none;
|
|
}
|
|
|
|
&--seen-by {
|
|
min-width: 14rem;
|
|
}
|
|
|
|
.avatars {
|
|
display: flex;
|
|
align-self: center;
|
|
margin-inline-start: auto;
|
|
padding-inline-start: 1rem;
|
|
|
|
.Avatar {
|
|
border: 0.0625rem solid var(--color-background);
|
|
margin-right: 0;
|
|
box-sizing: content-box;
|
|
|
|
&:not(:first-child) {
|
|
margin-left: -0.1875rem;
|
|
}
|
|
}
|
|
}
|
|
}
|