"Private chat" header for direct chats

Also, auto-create account and room when joining a DM chat link.
This commit is contained in:
N-Pex 2023-08-30 10:50:45 +02:00
parent 46bd105449
commit 68b241b6ce
9 changed files with 437 additions and 37 deletions

View file

@ -86,9 +86,8 @@ body {
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: 11 * $chat-text-size;
color: var(--v-foreground-color);
background-color: var(--v-background-color) !important;
border: 1px solid var(--v-foreground-color);
color: white;
background-color: red !important;
border-radius: $chat-standard-padding / 2;
height: $chat-standard-padding;
margin-top: $chat-standard-padding-xs;
@ -99,6 +98,26 @@ body {
color: var(--v-secondary-color);
}
.leave-button {
font-family: "Inter", sans-serif;
font-weight: 700;
font-size: 11.54 * $chat-text-size;
line-height: 140%;
color: white !important;
background-color: #ff3300 !important;
border-radius: $small-button-height / 2;
min-height: 0;
height: $small-button-height !important;
margin-top: $chat-standard-padding-xs;
margin-bottom: $chat-standard-padding-xs;
padding-left: $chat-standard-padding-s !important;
padding-right: $chat-standard-padding-s !important;
width: auto !important;
.v-icon {
margin-right: 4px;
}
}
.icon-dropdown {
margin: 0px 8px;
}