mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 17:15:32 +08:00
84c1cc70d6
- better handling of drawer state using chat state manager - removes various float and topic occurrences to use drawer - ensures user can chat before doing a lot of chat setup - fixes a bug which was creating presence errors in tests - removes dead code
40 lines
791 B
SCSS
40 lines
791 B
SCSS
.chat-selection-management {
|
|
border-top: 1px solid var(--primary-low);
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
padding: 0.5rem;
|
|
|
|
.chat-drawer-content & {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.chat-selection-management-buttons {
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
|
|
.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;
|
|
}
|
|
}
|
|
}
|