mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 20:35:21 +08:00
18c81958e5
- Back button in drawer will bring you back to channel - Larger font for thread indicator - Prevents screen flashing due to clearing messages when they were already loaded - Fixes a bug where did-update params were inverted causing an error when expanding/collapsing drawer
40 lines
761 B
SCSS
40 lines
761 B
SCSS
.chat-message-thread-indicator {
|
|
align-items: center;
|
|
display: grid;
|
|
grid: 1fr / auto-flow;
|
|
display: flex;
|
|
cursor: pointer;
|
|
grid-area: threadindicator;
|
|
border: 1px solid transparent;
|
|
margin: 4px 0 -2px calc(var(--message-left-width) - 5px);
|
|
padding: 4px;
|
|
|
|
&:hover {
|
|
.chat-message:hover & {
|
|
border-color: var(--primary-low);
|
|
background-color: var(--secondary);
|
|
}
|
|
}
|
|
|
|
&__replies-count {
|
|
color: var(--primary-medium);
|
|
font-size: var(--font-down-1);
|
|
}
|
|
|
|
&__view-thread {
|
|
font-size: var(--font-down-1);
|
|
|
|
.chat-message-thread-indicator:hover & {
|
|
text-decoration: underline;
|
|
}
|
|
}
|
|
|
|
&__replies-count + &__view-thread {
|
|
padding-left: 0.25rem;
|
|
}
|
|
|
|
&__separator {
|
|
margin: 0 0.5em;
|
|
}
|
|
}
|