mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 20:53:44 +08:00
d0427919f1
Adds a placeholder image + CTA in chat, for empty channel and DM lists. On desktop with drawer mode, we split chat into tabs (like mobile). --------- Co-authored-by: Joffrey JAFFEUX <j.jaffeux@gmail.com> Co-authored-by: David Battersby <info@davidbattersby.com> Co-authored-by: Régis Hanol <regis@hanol.fr>
17 lines
238 B
SCSS
17 lines
238 B
SCSS
.full-page-chat {
|
|
#main-chat-outlet.chat-view {
|
|
grid-template-areas:
|
|
"list"
|
|
"footer";
|
|
}
|
|
|
|
.channels-list {
|
|
grid-area: list;
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
.has-full-page-chat div#reply-control {
|
|
display: none;
|
|
}
|