mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 22:53:44 +08:00
e6c6c342d9
This commit contains multiple changes to improve the composer behavior especially in the context of a thread: - Generally rename anything of the form `chatChannelThread...` to `chatThread...`` - Moves the textarea interactor instance inside the composer server - Improves the focus state and closing of panel related to the use of the Escape shortcut - Creates `Chat::ThreadList` as a component instead of having `Chat::Thread::ListItem` and others which could imply they were children of a the `Chat::Thread` component
16 lines
352 B
SCSS
16 lines
352 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;
|
|
}
|
|
}
|