From 9b053e9e9b9c98ec3dc883dc53840361ce21156c Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Fri, 8 Jan 2021 14:04:50 -0500 Subject: [PATCH] Do not set fixed width for thread selector dropdown box There were cases that the fixed width for this box would cause the thread selector to explode outside of the email header table in the thread viewer. We should keep the select dropdown itself to the width of the overall list of email addresses in the chain. --- media/css/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/media/css/main.css b/media/css/main.css index aceeaade..cb74f211 100644 --- a/media/css/main.css +++ b/media/css/main.css @@ -1247,6 +1247,11 @@ input[type=checkbox]:focus { margin: 2px; } +/* For the thread viewer, keep the width inline with the parent element */ +#thread_select.custom-select { + width: auto; +} + th.formfieldnamecontainer { padding-right: 1em; } -- 2.39.5