discourse/plugins/chat/assets/stylesheets/mobile/chat-message-thread-indicator.scss

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
532 B
SCSS
Raw Normal View History

.chat-message-thread-indicator {
.c-routes.--threads & {
background: var(--secondary);
}
grid-template-areas:
"avatar info info participants"
"excerpt excerpt excerpt replies";
.chat-thread-participants {
.avatar {
width: 22px;
height: 22px;
}
}
&__last-reply-excerpt {
white-space: wrap;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
margin-top: 0.5rem;
margin-right: 0.25rem;
}
&__replies-count {
grid-area: replies;
}
}