mirror of
https://github.com/discourse/discourse.git
synced 2024-12-03 02:43:43 +08:00
7a9514922b
* Moved the settings cog from thread list to thread and put it in a new header component * Remove thread original message component, no longer needed and the list item and thread indicator styles/content will be quite different * Start adding content (unread indicator etc.) to the thread list item and changing structure to be more like designs * Serialize the last thread reply when opening the thread index, show in list and update with message bus
16 lines
356 B
SCSS
16 lines
356 B
SCSS
.chat-thread-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;
|
|
justify-content: space-between;
|
|
padding-inline: 1rem;
|
|
|
|
&__buttons {
|
|
display: flex;
|
|
}
|
|
}
|