Commit 87282073 authored by lpsolit%gmail.com's avatar lpsolit%gmail.com

Bug 455744: Text fields on enter_bug.cgi are too large and inconsistent compared…

Bug 455744: Text fields on enter_bug.cgi are too large and inconsistent compared to show_bug.cgi - Patch by Fré©ric Buclin <LpSolit@gmail.com> r/a=mkanat
parent 427ca003
...@@ -340,7 +340,7 @@ function handleWantsAttachment(wants_attachment) { ...@@ -340,7 +340,7 @@ function handleWantsAttachment(wants_attachment) {
name => "assigned_to" name => "assigned_to"
value => assigned_to value => assigned_to
disabled => assigned_to_disabled disabled => assigned_to_disabled
size => 32 size => 30
emptyok => 1 emptyok => 1
%] %]
<noscript>(Leave blank to assign to component's default assignee)</noscript> <noscript>(Leave blank to assign to component's default assignee)</noscript>
...@@ -355,7 +355,7 @@ function handleWantsAttachment(wants_attachment) { ...@@ -355,7 +355,7 @@ function handleWantsAttachment(wants_attachment) {
name => "qa_contact" name => "qa_contact"
value => qa_contact value => qa_contact
disabled => qa_contact_disabled disabled => qa_contact_disabled
size => 32 size => 30
emptyok => 1 emptyok => 1
%] %]
<noscript>(Leave blank to assign to default qa contact)</noscript> <noscript>(Leave blank to assign to default qa contact)</noscript>
...@@ -370,7 +370,7 @@ function handleWantsAttachment(wants_attachment) { ...@@ -370,7 +370,7 @@ function handleWantsAttachment(wants_attachment) {
name => "cc" name => "cc"
value => cc value => cc
disabled => cc_disabled disabled => cc_disabled
size => 45 size => 30
multiple => 5 multiple => 5
%] %]
</td> </td>
...@@ -424,7 +424,7 @@ function handleWantsAttachment(wants_attachment) { ...@@ -424,7 +424,7 @@ function handleWantsAttachment(wants_attachment) {
<tr> <tr>
<th>URL:</th> <th>URL:</th>
<td colspan="2"> <td colspan="2">
<input name="bug_file_loc" size="60" <input name="bug_file_loc" size="40"
value="[% bug_file_loc FILTER html %]"> value="[% bug_file_loc FILTER html %]">
</td> </td>
</tr> </tr>
...@@ -443,11 +443,10 @@ function handleWantsAttachment(wants_attachment) { ...@@ -443,11 +443,10 @@ function handleWantsAttachment(wants_attachment) {
<tr> <tr>
<th>Summary:</th> <th>Summary:</th>
<td colspan="2"> <td colspan="3">
<input name="short_desc" size="60" value="[% short_desc FILTER html %]" <input name="short_desc" size="70" value="[% short_desc FILTER html %]"
maxlength="255" spellcheck="true"> maxlength="255" spellcheck="true">
</td> </td>
<td>&nbsp;</td>
</tr> </tr>
<tr> <tr>
...@@ -531,7 +530,7 @@ function handleWantsAttachment(wants_attachment) { ...@@ -531,7 +530,7 @@ function handleWantsAttachment(wants_attachment) {
<tr> <tr>
<th><a href="describekeywords.cgi">Keywords</a>:</th> <th><a href="describekeywords.cgi">Keywords</a>:</th>
<td colspan="3"> <td colspan="3">
<input id="keywords" name="keywords" size="60" <input id="keywords" name="keywords" size="40"
value="[% keywords FILTER html %]"> (optional) value="[% keywords FILTER html %]"> (optional)
</td> </td>
</tr> </tr>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment