From 702423d2ae66949c5d98316feaad5edb89b60c0e Mon Sep 17 00:00:00 2001 From: Lizandro Guarnizo <77708265+lizandrogd@users.noreply.github.com> Date: Fri, 23 Jan 2026 23:38:52 -0500 Subject: [PATCH] Update conversations.php --- conversations.php | 83 +++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 73 insertions(+), 10 deletions(-) diff --git a/conversations.php b/conversations.php index 8e59afd..f247cc9 100644 --- a/conversations.php +++ b/conversations.php @@ -470,6 +470,44 @@ text-overflow: ellipsis; } + /* Quick replies compact panel */ + .quick-replies-wrapper { position: relative; } + .quick-replies-panel { + display: none; + background: #fff; + border: 1px solid #e6eef5; + box-shadow: 0 8px 20px rgba(2,6,23,0.06); + padding: 8px; + border-radius: 8px; + max-height: 220px; + overflow-y: auto; + display: flex; + gap: 6px; + flex-wrap: wrap; + } + .quick-replies-panel .btn { min-width: 80px; max-width: 180px; font-size: 12px; } + #quick-replies-toggle { background: transparent; border-radius: 20px; } + @media (max-width: 768px) { + .quick-replies-panel { left: 8px; right: 8px; bottom: 56px; min-width: auto; } + } + + /* Make mic button more visible */ + #mic-btn { + margin-left: 6px; + background: var(--whatsapp-green); + border: none; + color: white; + width: 40px; + height: 40px; + display: inline-flex; + align-items: center; + justify-content: center; + border-radius: 50%; + box-shadow: 0 2px 6px rgba(3, 102, 80, 0.12); + } + #mic-btn.recording { background: #c0392b; color: white; } + #mic-btn i { font-size: 14px; } + .chat-conversations { background-repeat: repeat; background-color: #e9efe9; @@ -672,8 +710,11 @@ -
- +
+ +