summaryrefslogtreecommitdiff
path: root/django
diff options
context:
space:
mode:
authorJonathan S. Katz2021-01-08 19:05:03 +0000
committerJonathan S. Katz2021-01-08 19:05:03 +0000
commit82143c24354dcb35ab1d7fe507c478d67ccfcea9 (patch)
treea98bc3cc60f4d3a93d905476d5b4498b65413920 /django
parent6b70cbb0119389b21d0a458a380f9395973908e8 (diff)
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.
Diffstat (limited to 'django')
-rw-r--r--django/media/css/main.css5
1 files changed, 5 insertions, 0 deletions
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;
}