mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 17:34:02 +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
22 lines
433 B
SCSS
22 lines
433 B
SCSS
.chat-thread-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
position: relative;
|
|
@include chat-height(env(safe-area-inset-bottom));
|
|
|
|
&__items {
|
|
overflow-y: scroll;
|
|
@include chat-scrollbar();
|
|
box-sizing: border-box;
|
|
flex-grow: 1;
|
|
overscroll-behavior: contain;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
&__no-threads {
|
|
@include thread-list-item;
|
|
margin: 0.5rem 0rem 0.5rem 0.5rem;
|
|
}
|
|
}
|