fix(dm): Ctrl+Enter перенос, время в списке и выравнивание карточек

This commit is contained in:
AidarKC
2026-05-19 16:13:44 +03:00
parent 8325cbec84
commit 9c35567389
5 changed files with 84 additions and 8 deletions
+35 -1
View File
@@ -3405,6 +3405,10 @@ textarea.input {
font-weight: 700;
}
.dm-screen .list-item {
align-items: stretch;
}
.dm-screen .meta-muted {
color: rgba(255, 255, 255, 0.5);
}
@@ -3430,14 +3434,44 @@ textarea.input {
.dm-row-meta-col {
display: grid;
justify-items: end;
align-content: start;
align-content: end;
gap: 6px;
min-width: 64px;
align-self: stretch;
}
.dm-row-main {
min-width: 0;
display: grid;
grid-template-rows: auto auto;
gap: 4px;
}
.dm-row-title-wrap {
display: flex;
align-items: center;
gap: 8px;
min-width: 0;
}
.dm-row-title {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.dm-row-last-message {
margin-top: 0 !important;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
padding-right: 6px;
}
.dm-row-time {
font-size: 11px;
line-height: 1.2;
white-space: nowrap;
}
.dm-chat-wrap {