mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 23:45:59 +08:00
f20b6a0cc3
Chat redesign work to improve chat navigation: - New header title with channel name (thread list on mobile) - New header title without channel name (thread list on full page chat) - Removes the close button on threads (mobile only) - Updates to back button route within thread (mobile), taking user to: - The thread index, if they accessed the thread from the thread index. - The channel itself, if they accessed the thread directly from the channel. - The channel itself, if they accessed the thread from a notification. - Show thread title in chat drawer header - Properly convert emoji in thread titles in chat header (all devices) - Upgrades various templates to use gjs format.
25 lines
483 B
SCSS
25 lines
483 B
SCSS
.chat-thread-list-header {
|
|
height: var(--chat-header-offset);
|
|
min-height: var(--chat-header-offset);
|
|
border-bottom: 1px solid var(--primary-low);
|
|
border-top: 1px solid var(--primary-low);
|
|
box-sizing: border-box;
|
|
display: flex;
|
|
align-items: center;
|
|
padding-inline: 0.5rem;
|
|
|
|
&__buttons {
|
|
display: flex;
|
|
margin-left: auto;
|
|
}
|
|
|
|
&__label span {
|
|
font-weight: bold;
|
|
}
|
|
|
|
&__label-channel {
|
|
display: block;
|
|
font-size: var(--font-down-1-rem);
|
|
}
|
|
}
|