From 90e37c198f51ca21697041d2409f5bb4e9e0d200e5cd5a60f55758039b5aa055 Mon Sep 17 00:00:00 2001 From: AidarKC Date: Wed, 2 Sep 2026 14:58:17 +0400 Subject: [PATCH] Adjust DM contact card spacing --- shine-UI/styles/components.css | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/shine-UI/styles/components.css b/shine-UI/styles/components.css index 484a9552..cc5fcbce 100644 --- a/shine-UI/styles/components.css +++ b/shine-UI/styles/components.css @@ -10791,3 +10791,23 @@ body.chat-topbar-overlay .page-header.app-topbar-shell .header-center { flex: 1 1 auto; overflow: hidden; } + +/* Channel list: last message preview + timestamp. + * Override the legacy `.channel-row-time { width: 100% }`: that rule made the + * timestamp consume the whole preview row, collapsing the message text to zero + * width and clipping the rightmost timestamp character. */ +.channels-screen--list .channel-row-preview-line .channel-row-time { + width: auto !important; + max-width: max-content !important; + flex: 0 0 auto !important; + margin: 0 2px 0 0 !important; + padding: 0 !important; + box-sizing: border-box !important; + white-space: nowrap !important; +} + +.channels-screen--list .channel-row-preview-line .channel-row-message { + width: auto !important; + flex: 1 1 0 !important; + min-width: 0 !important; +}