discourse/plugins/chat/assets/stylesheets/mobile/chat-footer.scss

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

37 lines
568 B
SCSS
Raw Normal View History

.full-page-chat {
#main-chat-outlet.chat-view {
2024-10-04 20:10:36 +08:00
display: grid;
grid-template-rows: 1fr auto;
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;
}