From 82143c24354dcb35ab1d7fe507c478d67ccfcea9 Mon Sep 17 00:00:00 2001 From: "Jonathan S. Katz" Date: Fri, 8 Jan 2021 14:05:03 -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. --- django/media/css/main.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/django/media/css/main.css b/django/media/css/main.css index eff40a7..f7d6646 100644 --- a/django/media/css/main.css +++ b/django/media/css/main.css @@ -700,6 +700,11 @@ input[type=checkbox] { 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