Add test dm accepting, revoking and declining

This commit is contained in:
olcxja 2026-05-27 08:53:24 +02:00
commit 2979881908
3 changed files with 41 additions and 16 deletions

View file

@ -15,8 +15,8 @@
--border-width: 0.09rem;
--big-default: rgb(207, 207, 207);
--big-red: rgb(195, 75, 75);
--big-green: rgb(75, 165, 95);
--big-red: hsl(0, 60%, 55%);
--big-green: hsl(120, 60%, 55%);
}
*:focus {
outline: none;
@ -544,6 +544,7 @@ space{
width: 2.8rem;
height: 2.8rem;
border-radius: 0.8rem;
border: var(--border-width) solid rgba(255, 255, 255, 0.2);
object-fit: cover;
}
.invite-details {
@ -565,6 +566,9 @@ space{
}
.invite-actions button {
margin: 0;
border-color: rgba(255, 255, 255, 0.2);
width: 3.1rem;
height: 3.1rem;
}
@media (hover: hover) {
@ -591,11 +595,17 @@ space{
.context-menu button:hover {
background-color: rgba(255, 255, 255, 0.08);
}
.invite-actions button:hover {
filter: brightness(0.93);
}
}
button:active, button.is-pressed, input:active, input.is-pressed {
background-color: rgba(255, 255, 255, 0.1);
transform: var(--press-scale);
}
.invite-actions button:active {
filter: brightness(0.85);
}
button.active, input.active {
background-color: rgba(255, 255, 255, 0.1);
}