From baa776ba7aea36e634de1c01647d4853b3365998 Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Fri, 23 Jan 2026 23:24:27 -0500 Subject: [PATCH] Update conversations.php --- conversations.php | 121 +++++++++++++++++++++++++++++++++++++++------- 1 file changed, 104 insertions(+), 17 deletions(-) diff --git a/conversations.php b/conversations.php index 586ccad..b391840 100644 --- a/conversations.php +++ b/conversations.php @@ -428,6 +428,33 @@ .notification-toast .nt-actions { margin-left: auto; display:flex; gap:6px; } .notification-toast .btn { font-size: 12px; padding: 4px 8px; } + /* UI improvements for chat area */ + .quick-replies .btn { + border-radius: 20px; + padding: 6px 10px; + font-size: 12px; + white-space: nowrap; + overflow: hidden; + text-overflow: ellipsis; + } + + .chat-conversations { + background-repeat: repeat; + background-color: #e9efe9; + padding-bottom: 20px; /* space for reply preview and input */ + } + + .message-bubble { transition: transform 0.12s ease, box-shadow 0.12s ease; } + .message-bubble:hover { transform: translateY(-1px); box-shadow: 0 4px 10px rgba(0,0,0,0.06); } + + #reply-preview { box-shadow: 0 1px 2px rgba(0,0,0,0.04); } + #reply-preview button { border: none; color: #888; } + #reply-preview button:hover { color: #333; } + + .message.incoming .message-bubble::before, + .message.outgoing .message-bubble::after { content: ''; } + + .notification-toast.urgent { border-left: 4px solid #e74c3c; } .message-template { @@ -593,6 +620,11 @@ + +