From cef1e3363cf81f3793a9d50e693049ce172a480f Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Fri, 28 Apr 2023 18:44:09 -0700 Subject: [PATCH] compose: Increase size of recipient menu. We should do a better long-term fix, but the current menu feels cramped. --- web/styles/compose.css | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/styles/compose.css b/web/styles/compose.css index 39fa0e46eb..81d2149b95 100644 --- a/web/styles/compose.css +++ b/web/styles/compose.css @@ -777,6 +777,9 @@ a.compose_control_button.hide { } .dropdown-menu { + /* The Bootstrap default of 160px wraps too early. + TODO: Replace this with a max-width and natural scaling? */ + width: 200px; top: auto; left: -10px; }