discourse/plugins/chat/assets/stylesheets/common/chat-thread-participants.scss
Joffrey JAFFEUX 39b598f304
UI: refines thread list item (#23207)
It will now replies count and participants list. Also the title will be OM excerpt or user defined title, no more default "Thread" title. Lastly, the author of the last reply is also shown as prefix of it.
2023-08-24 18:45:20 +02:00

44 lines
756 B
SCSS

.chat-thread-participants {
&__other-count {
font-size: var(--font-down-2);
color: var(--primary-high);
white-space: nowrap;
}
&__avatar-group {
display: flex;
align-items: center;
justify-content: flex-end;
.chat-user-avatar__container {
padding: 0;
}
.chat-user-avatar {
width: auto !important;
.avatar {
padding: 0;
}
}
}
}
@container (max-width: 400px) {
.chat-thread-participants {
&__avatar-group {
flex-direction: row;
justify-content: flex-start;
.chat-user-avatar {
&:not(:last-child) {
margin-right: -10px;
}
.avatar {
border: 1px solid var(--primary-very-low);
}
}
}
}
}