mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 06:54:15 +08:00
c74fa300e7
This commit ensures the browse page can be loaded in the drawer and doesn’t force full page mode. Other notable changes of this commit: - be consistent about wrapping each full page route with "c-routes.--route-name" and each drawer container with "c-drawer-routes.--route-name" - move browse channels into its own component, it was before in the template of the channels browse
28 lines
532 B
SCSS
28 lines
532 B
SCSS
.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;
|
|
}
|
|
}
|