From da1ce63e59496cd19e886601ed940f83532d3a05 Mon Sep 17 00:00:00 2001 From: Ken Johnson Date: Tue, 9 Dec 2025 16:47:54 +0000 Subject: [PATCH] Increase dropdown height and padding to fully prevent text cutoff MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Increased vertical spacing to ensure recipient names display fully: - min-height: 48px → 52px - line-height: 1.5 → 1.6 - padding: 0.75rem → 0.85rem - Added vertical-align: middle This provides more breathing room for text to prevent any cutoff at the bottom of the dropdown field. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- app/views/messages/index.html.erb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/views/messages/index.html.erb b/app/views/messages/index.html.erb index bc47e78..f774b9b 100644 --- a/app/views/messages/index.html.erb +++ b/app/views/messages/index.html.erb @@ -309,9 +309,10 @@ $("#submit_button").click(function(event) { /* Fix dropdown height and padding to prevent text cutoff */ #message_receiver_id { - min-height: 48px; - line-height: 1.5; - padding: 0.75rem 0.75rem; + min-height: 52px; + line-height: 1.6; + padding: 0.85rem 0.75rem; + vertical-align: middle; } /* Ensure dropdown has proper focus styling */