UX: chat > general fixes (#25929)

* UX: chat > keep send icon active when keyboard is hidden (mobile)

* FIX: chat > keep composer insert button at bottom

* UX: chat > give seperator equal padding
This commit is contained in:
chapoi 2024-02-28 16:12:13 +02:00 committed by GitHub
parent 36a9b5d0fa
commit 337773b8ac
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 3 deletions

View File

@ -125,7 +125,7 @@
}
& + .chat-message-separator__line-container {
padding: 20px 0 20px var(--scrollbarWidth);
padding: 20px var(--scrollbarWidth) 20px var(--scrollbarWidth);
box-sizing: border-box;
.chat-message-separator__line {

View File

@ -6,3 +6,8 @@
}
}
}
.chat-composer-dropdown__trigger-btn {
align-self: flex-end;
height: 50px;
}

View File

@ -3,7 +3,7 @@
padding-top: 0.75rem;
background: none;
.chat-replying-indicator {
padding-left: calc(1rem + (2 * 5px) + 0.2rem + (2 * 0.65rem));
padding-left: calc(1rem + (2 * 5px) + 0.2rem + (2 * 0.65rem) + 1px);
}
}
&__outer-container {
@ -42,7 +42,8 @@
border-radius: 100%;
line-height: 0;
.is-send-enabled.is-focused & {
.is-send-enabled.is-focused &,
.is-send-enabled & {
background-color: var(--tertiary-high);
color: var(--secondary);
.d-icon {