r1275: Try to fix a weird scrolling and overflow bug in IE7 with the <textarea>s
authorRobert Sesek <rsesek@bluestatic.org>
Wed, 8 Nov 2006 04:54:58 +0000 (04:54 +0000)
committerRobert Sesek <rsesek@bluestatic.org>
Wed, 8 Nov 2006 04:54:58 +0000 (04:54 +0000)
docs/changes.txt
templates/editcomment.tpl
templates/global.css
templates/newattach.tpl
templates/newreport.tpl
templates/showreport.tpl

index 2cb72cd21ee421c7abf3e547c31ac4f5032d313f..a00816b91f8afc174161c53e1dd850934daecfe0 100644 (file)
@@ -8,6 +8,7 @@
 - Foreign langauge users cannot use the product/component editing system beacause localized strings are used to create the do actions instead of english variable ones (http://www.bluestatic.org/bugs/showreport.php?bugid=42)
 - Fixed a SQL error that would occur when editing a report with no emails linked to it (http://www.bluestatic.org/bugs/showreport.php?bugid=46)
 - Added the ability to delete attachments from the database (http://www.bluestatic.org/bugs/showreport.php?bugid=47)
+- Fixed a scrollpane bug in IE7 (http://www.bluestatic.org/bugs/showreport.php?bugid=48)
 
 1.1.3
 ===============================
index 7b2e20c30e456dfac43c14597c254f9ae40ee066..4accfcc93a02b6bbfd72eb69cb4bd0e104540354 100644 (file)
@@ -30,7 +30,7 @@ $header
        
        <div class="box-mid" style="text-align: $stylevar[left]">
                <if condition="$show['hide']"><div><strong<if condition="$comment['hidden']"> style="color: red"</if>>{@"Hidden"}:</strong> <input type="checkbox" name="hidden" value="1"<if condition="$comment['hidden']"> checked="checked"</if> /></div></if>
-               <textarea name="comment" cols="50" rows="15" style="width: 100%">$comment[comment]</textarea>
+               <textarea name="comment" cols="50" rows="15" class="textarea">$comment[comment]</textarea>
        </div>
 </div>
 
index 9901ade2a5db918126304eabf4f3e6059d4cccf9..e74ab7b7c8d2b4e3f0db0dbb75cb91b8db4521f5 100644 (file)
@@ -144,6 +144,16 @@ a
        display: inline;
 }
 
+.textarea
+{
+       width: 99%;
+       
+       margin: 0px;
+       padding: 0px;
+       
+       margin-top: 5px;
+}
+
 #copyright
 {
        text-align: center;
index 5a200b30d2de10486f13c2704ef0eb961e6a1cd8..73e59f9f30ab52f2e612729d99ecce69d744a63e 100644 (file)
@@ -43,7 +43,7 @@ $header
        <div class="box-mid" style="text-align: $stylevar[left]">
                <div><strong>{@"Add Comment"}:</strong>
                        <div>
-                               <textarea name="comment" rows="10" cols="50" style="width: 100%">{$bugsys->in['comment']}</textarea>
+                               <textarea name="comment" rows="10" cols="50" class="textarea">{$bugsys->in['comment']}</textarea>
                        </div>
                </div>
        </div>
index ae41b4dc6d3b41b11511dee42256bc8c885d4d77..910e16f420b6f321b8025e92499660021b16dc92 100644 (file)
@@ -110,7 +110,7 @@ $header
        <fieldset>
                <legend>{@"Description/Initial Report"}</legend>
        
-               <textarea name="comment" cols="50" rows="10" style="width: 100%"><if condition="$bugsys->in['comment']">{$bugsys->in['comment']}<else />{$bugsys->options['defaultcomment']}</if></textarea>
+               <textarea name="comment" cols="50" rows="10" class="textarea"><if condition="$bugsys->in['comment']">{$bugsys->in['comment']}<else />{$bugsys->options['defaultcomment']}</if></textarea>
        </fieldset>
 </div>
 <!-- / new reply -->
index 46e5fc89bb17ecdf95fbeaf8e6178bb28e7bcb54..f760e4989532c5c1f7aafaef8e4fbc10567ea670 100644 (file)
@@ -194,8 +194,8 @@ $header
 <!-- 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>
-
-       <textarea name="comment" cols="50" rows="10" style="width: 100%"></textarea>
+       
+       <textarea name="comment" cols="50" rows="10" class="textarea"></textarea>
 </fieldset>
 <!-- / new reply -->
 </if>