From: Emma Humphries Date: Fri, 3 Mar 2017 02:47:05 +0000 (-0800) Subject: Bug 1343663 - Comments are too wide X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=df64b724fab74da6de0d4d2ee4bb112389da68d0;p=thirdparty%2Fbugzilla.git Bug 1343663 - Comments are too wide Set #bugzilla-body to have em based widths so they scale with font size. --- diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css index ee1584cb7..4c24034c9 100644 --- a/extensions/BugModal/web/bug_modal.css +++ b/extensions/BugModal/web/bug_modal.css @@ -389,7 +389,9 @@ input[type="number"] { #bottom-actions { margin-top: 8px; margin-bottom: 50px; - max-width: 1200px; + min-width: 60em; + max-width: 72em; + width: 100%; } #bottom-right-actions { @@ -702,7 +704,9 @@ h3.change-name { width: 100%; box-sizing: border-box !important; margin: 0 0 1em; - max-width: 1200px; + min-width: 60em; + max-width: 72em; + width: 100%; } #comment-preview { @@ -812,8 +816,8 @@ h3.change-name { /* theme */ #bugzilla-body { - max-width: 1200px; - min-width: 800px; + max-width: 72em; + min-width: 60em; width: 100%; }