[Rt-commit] r15758 - in rt/3.8/trunk: share/html/Admin/Elements

elacour at bestpractical.com elacour at bestpractical.com
Thu Sep 4 10:53:04 EDT 2008


Author: elacour
Date: Thu Sep  4 10:53:01 2008
New Revision: 15758

Modified:
   rt/3.8/trunk/   (props changed)
   rt/3.8/trunk/share/html/Admin/Elements/AddCustomFieldValue
   rt/3.8/trunk/share/html/Admin/Elements/EditCustomFieldValues

Log:
 r10594 at datura:  manu | 2008-09-04 16:52:44 +0200
 Lower input width so on reasonable screens (1024x768), the add/edit
 customfields values tables don't overlap on the right (width of every td is now
 near the width of the largest input (CF Description = 80).


Modified: rt/3.8/trunk/share/html/Admin/Elements/AddCustomFieldValue
==============================================================================
--- rt/3.8/trunk/share/html/Admin/Elements/AddCustomFieldValue	(original)
+++ rt/3.8/trunk/share/html/Admin/Elements/AddCustomFieldValue	Thu Sep  4 10:53:01 2008
@@ -61,8 +61,8 @@
 % my $paramtag = "CustomField-". $CustomField->Id ."-Value-new";
 <tr>
 <td><input type="text" size="3"  name="<% $paramtag %>-SortOrder"   /></td>
-<td><input type="text" size="30" name="<% $paramtag %>-Name"        /></td>
-<td><input type="text" size="50" name="<% $paramtag %>-Description" /></td>
+<td><input type="text" size="25" name="<% $paramtag %>-Name"        /></td>
+<td><input type="text" size="45" name="<% $paramtag %>-Description" /></td>
 % if ( $CustomField->Type ne 'Combobox' ) {
 <td><input type="text" size="10" name="<% $paramtag %>-Category"    /></td>
 % }

Modified: rt/3.8/trunk/share/html/Admin/Elements/EditCustomFieldValues
==============================================================================
--- rt/3.8/trunk/share/html/Admin/Elements/EditCustomFieldValues	(original)
+++ rt/3.8/trunk/share/html/Admin/Elements/EditCustomFieldValues	Thu Sep  4 10:53:01 2008
@@ -67,8 +67,8 @@
 <tr>
 <td><input type="checkbox" class="checkbox" name="Delete-<% $paramtag %>" /></td>
 <td><input type="text" size="3" name="<% $paramtag %>-SortOrder" value="<% $value->SortOrder %>" /></td>
-<td><input type="text" size="30" name="<% $paramtag %>-Name" value="<% $value->Name %>" /></td>
-<td><input type="text" size="50" name="<% $paramtag %>-Description" value="<% $value->Description %>" /></td>
+<td><input type="text" size="25" name="<% $paramtag %>-Name" value="<% $value->Name %>" /></td>
+<td><input type="text" size="45" name="<% $paramtag %>-Description" value="<% $value->Description %>" /></td>
 % if ( $CustomField->Type ne 'Combobox' ) {
 <td><input type="text" size="10" name="<% $paramtag %>-Category" 
     value="<% $value->Category || '' %>" /></td>


More information about the Rt-commit mailing list