Refine direct message profile data

This commit is contained in:
AidarKC
2026-09-02 14:56:33 +04:00
parent 065616a18b
commit 1373283947
5 changed files with 77 additions and 29 deletions
+32
View File
@@ -10759,3 +10759,35 @@ body.chat-topbar-overlay .page-header.app-topbar-shell .header-center {
font-weight: 500;
color: rgba(189,207,232,0.72);
}
/* ===== DM header regression fix (2026-09-02) =====
* The peer identity button intentionally spans the whole free header area.
* Its avatar uses a 119% glass overlay, so neither the center cell nor the
* button may clip overflow. Text keeps its own ellipsis boundary instead.
*/
body.chat-topbar-overlay .page-header.app-topbar-shell .header-center {
overflow: visible !important;
}
.chat-header-peer-btn {
overflow: visible !important;
padding-inline: 2px !important;
}
.chat-header-peer-btn .chat-header-avatar-slot {
width: 44px !important;
height: 44px !important;
min-width: 44px !important;
min-height: 44px !important;
flex: 0 0 44px !important;
overflow: visible !important;
}
.chat-header-peer-btn .chat-header-avatar-slot .chat-header-avatar {
overflow: visible !important;
}
.chat-header-peer-text {
flex: 1 1 auto;
overflow: hidden;
}