diff --git a/app/views/messages/index.html.erb b/app/views/messages/index.html.erb index 5097c9b..4baff6e 100644 --- a/app/views/messages/index.html.erb +++ b/app/views/messages/index.html.erb @@ -309,13 +309,19 @@ $("#submit_button").click(function(event) { /* Fix dropdown height and padding to prevent text cutoff */ #message_receiver_id { - min-height: 52px !important; - line-height: 1.6 !important; - padding: 0.85rem 0.75rem !important; + min-height: 48px !important; + line-height: 1.5 !important; + padding: 0.5rem 0.75rem !important; vertical-align: middle !important; box-sizing: border-box !important; } + /* Ensure dropdown options have proper spacing too */ + #message_receiver_id option { + padding: 0.5rem 0.75rem !important; + line-height: 1.5 !important; + } + /* Ensure dropdown has proper focus styling */ #message_receiver_id:focus { border-color: var(--rg-success);