discourse/plugins/chat/assets/stylesheets/mobile/chat-selection-manager.scss
Joffrey JAFFEUX 79a260a6bb
FIX: allows selection of messages in threads (#22119)
This commit fixes the selection of message in threads and also applies various refactorings
- improves specs and especially page objects/components
- makes the channel/thread panes responsible of the state
- adds an animationend modifier
- continues to follow the logic of "state" should be displayed as data attributes on component by having a new `data-selected` attribute on chat messages
2023-06-15 11:27:31 +02:00

21 lines
319 B
SCSS

.chat-selection-management {
&__buttons {
display: flex;
flex-direction: column;
width: 100%;
padding-bottom: env(safe-area-inset-bottom);
.cancel-btn {
margin-left: initial;
}
.btn {
margin-bottom: 0.25em;
&:last-child {
margin-bottom: 0;
}
}
}
}