]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1343663 - Comments are too wide
authorEmma Humphries <emceeaich@users.noreply.github.com>
Fri, 3 Mar 2017 02:47:05 +0000 (18:47 -0800)
committerDylan William Hardison <dylan@hardison.net>
Fri, 3 Mar 2017 22:12:41 +0000 (17:12 -0500)
Set #bugzilla-body to have em based widths so they scale with font size.

extensions/BugModal/web/bug_modal.css

index ee1584cb7bf3dd64925c11c82985e1c80175e5d5..4c24034c9e9d8c60af183844a0169eec648ea8f0 100644 (file)
@@ -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%;
 }