mirror of
https://github.com/discourse/discourse.git
synced 2024-12-02 13:23:38 +08:00
79a260a6bb
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
21 lines
319 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|
|
}
|