r1304: Fixing for good the IE <textarea> overflow issues for the comment reply boxes...
authorRobert Sesek <rsesek@bluestatic.org>
Thu, 23 Nov 2006 16:53:32 +0000 (16:53 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Thu, 23 Nov 2006 16:53:32 +0000 (16:53 +0000)
templates/global.css
templates/newreport.tpl
templates/showreport.tpl

index e74ab7b7c8d2b4e3f0db0dbb75cb91b8db4521f5..888cbd221d7c309f58b8144860520a9d0b4dee07 100644 (file)
@@ -146,10 +146,11 @@ a
 
 .textarea
 {
-       width: 99%;
+       width: 100%;
        
        margin: 0px;
        padding: 0px;
+       left: 0px;
        
        margin-top: 5px;
 }
index ae07d3502567748aa016add93e0a9179cfd2baf0..56007f547307e77958f6e515d2ecbe14b4af1f1a 100644 (file)
@@ -106,7 +106,7 @@ $header
 <div class="clearspill"></div>
 
 <!-- new reply -->
-<div>
+<div style="width: 100%">
        <fieldset>
                <legend>{@"Description/Initial Report"}</legend>
        
index 54c930e15d91a690bc9c08383c83ee769000f5a5..4cac53f973efd5bdc8f30a65c03af6b7ed1dd4ae 100644 (file)
@@ -192,11 +192,13 @@ $header
 
 <if condition="$show['newreply']">
 <!-- new reply -->
-<fieldset>
-       <legend>{@"New Reply"}<if condition="$show['automations']"> : <a href="explain.php?do=automations">{@"Automation"}</a> <select name="automation">$select[automation]</select></if> $help[newreply]</legend>
+<div style="width: 100%">
+       <fieldset>
+               <legend>{@"New Reply"}<if condition="$show['automations']"> : <a href="explain.php?do=automations">{@"Automation"}</a> <select name="automation">$select[automation]</select></if> $help[newreply]</legend>
        
-       <textarea name="comment" cols="50" rows="10" class="textarea"></textarea>
-</fieldset>
+               <textarea name="comment" cols="50" rows="10" class="textarea"></textarea>
+       </fieldset>
+</div>
 <!-- / new reply -->
 </if>