mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 16:04:55 +08:00
35 lines
515 B
SCSS
35 lines
515 B
SCSS
.full-page-chat {
|
|
#main-chat-outlet.chat-view {
|
|
grid-template-areas:
|
|
"list"
|
|
"footer";
|
|
}
|
|
|
|
.channels-list {
|
|
grid-area: list;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.c-footer {
|
|
&__item {
|
|
.c-unread-indicator,
|
|
.c-unread-indicator.-urgent {
|
|
margin-left: 1rem;
|
|
}
|
|
|
|
&.--active {
|
|
.full-page-chat & {
|
|
.d-icon,
|
|
.d-button-label {
|
|
color: var(--d-nav-color--active);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.has-full-page-chat div#reply-control {
|
|
display: none;
|
|
}
|