discourse/plugins/chat/assets/stylesheets/common/chat-selection-manager.scss
Joffrey JAFFEUX 84c1cc70d6
REFACTOR: naming and state refactor (#19187)
- 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
2022-11-25 14:15:38 +01:00

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;
}
}
}