mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 09:42:07 +08:00
0a5f548635
As part of this move, we are also renaming `discourse-chat` to `chat`.
40 lines
803 B
SCSS
40 lines
803 B
SCSS
.chat-selection-management {
|
|
border-top: 1px solid var(--primary-low);
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem;
|
|
|
|
.topic-chat-drawer-content & {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.chat-selection-management-buttons {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
|
|
.topic-chat-drawer-content & {
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.chat-selection-message {
|
|
animation: chat-quote-message-background-fade-highlight 2s ease-out 3s;
|
|
animation-fill-mode: forwards;
|
|
background-color: var(--success-low);
|
|
color: var(--primary);
|
|
flex: 1;
|
|
line-height: normal;
|
|
padding: 0.5rem 0.65rem;
|
|
}
|
|
|
|
@keyframes chat-quote-message-background-fade-highlight {
|
|
0% {
|
|
}
|
|
100% {
|
|
background-color: transparent;
|
|
color: transparent;
|
|
}
|
|
}
|
|
}
|