TelegramPWA/src/components/middle/composer/MentionTooltip.scss
Alexander Zinchuk f638ae3717 Revert "Revert "Composer: Add Emoji Picker (#1061)""
This reverts commit b1a2e27576b3bbcc5d319a506540042462e8b105.
2021-05-09 04:03:12 +03:00

53 lines
665 B
SCSS

.MentionTooltip {
width: calc(100% - 4rem);
max-width: 20rem;
flex-direction: column;
z-index: -1;
@media (max-width: 600px) {
width: calc(100% - 3rem);
}
.ListItem.chat-item-clickable {
margin: 0;
.ListItem-button {
border-radius: 0;
}
.info {
display: flex;
}
.title {
margin-right: 10px;
max-width: 70%;
}
.handle {
font-size: 1rem;
}
}
.ChatInfo {
.title h3 {
line-height: 1.25;
}
.Avatar {
margin-right: 0.7em;
}
.handle {
&::before {
content: '@';
}
}
.user-status {
display: none;
}
}
}