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

Bug 431370: Make the bug summary edit field larger on show_bug.cgi - Patch by…

Bug 431370: Make the bug summary edit field larger on show_bug.cgi - Patch by Guy Pyrzak <guy.pyrzak@gmail.com> r/a=LpSolit
parent 75e92404
...@@ -61,3 +61,6 @@ ...@@ -61,3 +61,6 @@
.bz_time_tracking_table .bz_summarize_time { .bz_time_tracking_table .bz_summarize_time {
text-align: right; text-align: right;
} }
#summary tr td {
vertical-align:top;
}
...@@ -314,32 +314,44 @@ ...@@ -314,32 +314,44 @@
</span> </span>
<span id="summary_alias_input"> <div id="summary_alias_input">
<span id="summary"> <table id="summary">
[% IF Param("usebugaliases") %] [% IF Param("usebugaliases") %]
[% IF bug.check_can_change_field('alias', 0, 1) %] <tr>
<label [% IF bug.check_can_change_field('alias', 0, 1) %]
for="alias" <td>
title="a name for the <label
[% terms.bug %] that can be used in place of its ID number, for="alias"
[%%] e.g. when adding it to a list of dependencies" title="a name for the
>Alias</label>:&nbsp; [% terms.bug %] that can be used in place of its ID number,
[%%] e.g. when adding it to a list of dependencies"
>Alias</label>:</td><td>
[% ELSIF bug.alias %] [% ELSIF bug.alias %]
( <td colspan="2">(
[% ELSE %]
<td colspan="2">
[% END %] [% END %]
[% PROCESS input inputname => "alias" [% PROCESS input inputname => "alias"
size => "20" size => "20"
maxlength => "20" maxlength => "20"
no_td => 1 no_td => 1
%][% ") " IF NOT bug.check_can_change_field('alias', 0, 1) %][% ")" IF NOT bug.check_can_change_field('alias', 0, 1)
&& bug.alias %] && bug.alias %]
</td>
</tr>
[% END %] [% END %]
[%# *** Summary *** %] [%# *** Summary *** %]
<label accesskey="s" for="short_desc"><u>S</u>ummary</label>:&nbsp; <tr>
[% PROCESS input inputname => "short_desc" size => "60" colspan => 2 <td>
maxlength => 255 spellcheck => "true" no_td => 1 %] <label accesskey="s" for="short_desc"><u>S</u>ummary</label>:
</span> </td>
</span> <td>
[% PROCESS input inputname => "short_desc" size => "80" colspan => 2
maxlength => 255 spellcheck => "true" no_td => 1 %]
</td>
</tr>
</table>
</div>
</div> </div>
<script type="text/javascript"> <script type="text/javascript">
hideAliasAndSummary('[% bug.short_desc FILTER js %]', '[% bug.alias FILTER js %]'); hideAliasAndSummary('[% bug.short_desc FILTER js %]', '[% bug.alias FILTER js %]');
......
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