Changes:
All checks were successful
Android Build / publish (push) Successful in 46s
Linux Build / publish (push) Successful in 50s

- add replies
- add reactions
- add message redacting
- fix chat height when opening mobile keyboard
This commit is contained in:
olcxja 2026-06-12 16:51:32 +02:00
commit 4016975900
10 changed files with 1286 additions and 310 deletions

View file

@ -630,7 +630,18 @@ space{
.chat-message {
display: flex;
gap: 1rem;
padding: 0.2rem 0;
padding: 0.4rem 0.6rem;
margin: 0 -0.6rem;
border-radius: 0.8rem;
transition: background-color 0.15s ease;
}
@media (hover: hover) {
.chat-message:hover {
background-color: rgba(255, 255, 255, 0.04);
}
}
.chat-message:active, .chat-message.context-menu-open {
background-color: rgba(255, 255, 255, 0.04);
}
.chat-message.with-avatar {
margin-top: 0.8rem;