diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-03-10 14:50:47 +0100 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-03-10 14:57:26 +0100 |
commit | f5436802e3ff4abb04e43fc22f8c86e549d459b1 (patch) | |
tree | e8a4d9f6e756006193cf1784714de7e1aa8f7de8 /extensions | |
parent | f25ef8dde8327e8190c971b7fb443ba12816bdcf (diff) | |
download | bugzilla-f5436802e3ff4abb04e43fc22f8c86e549d459b1.tar.gz bugzilla-f5436802e3ff4abb04e43fc22f8c86e549d459b1.tar.xz |
Bug 1345949 - modal is a little too narrow, and we shouldn't mix px and em
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/BugModal/web/bug_modal.css | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/extensions/BugModal/web/bug_modal.css b/extensions/BugModal/web/bug_modal.css index 4c24034c9..ea3697d83 100644 --- a/extensions/BugModal/web/bug_modal.css +++ b/extensions/BugModal/web/bug_modal.css @@ -389,9 +389,7 @@ input[type="number"] { #bottom-actions { margin-top: 8px; margin-bottom: 50px; - min-width: 60em; - max-width: 72em; - width: 100%; + max-width: 1024px; } #bottom-right-actions { @@ -704,9 +702,7 @@ h3.change-name { width: 100%; box-sizing: border-box !important; margin: 0 0 1em; - min-width: 60em; - max-width: 72em; - width: 100%; + max-width: 1024px; } #comment-preview { @@ -816,8 +812,8 @@ h3.change-name { /* theme */ #bugzilla-body { - max-width: 72em; - min-width: 60em; + max-width: 1024px; + min-width: 800px; width: 100%; } |