Title: [100349] trunk/Websites/bugs.webkit.org
Revision
100349
Author
[email protected]
Date
2011-11-15 15:40:57 -0800 (Tue, 15 Nov 2011)

Log Message

set a max-width on the codereview overall comments textarea
https://bugs.webkit.org/show_bug.cgi?id=72415

Reviewed by Ojan Vafai.

Otherwise, when resizing the textarea you can end up making wider, but
are no longer able to click the resize gripper to make it smaller
(it's under another div).

* PrettyPatch/PrettyPatch.rb:

Modified Paths

Diff

Modified: trunk/Websites/bugs.webkit.org/ChangeLog (100348 => 100349)


--- trunk/Websites/bugs.webkit.org/ChangeLog	2011-11-15 23:36:52 UTC (rev 100348)
+++ trunk/Websites/bugs.webkit.org/ChangeLog	2011-11-15 23:40:57 UTC (rev 100349)
@@ -1,3 +1,16 @@
+2011-11-15  Tony Chang  <[email protected]>
+
+        set a max-width on the codereview overall comments textarea
+        https://bugs.webkit.org/show_bug.cgi?id=72415
+
+        Reviewed by Ojan Vafai.
+
+        Otherwise, when resizing the textarea you can end up making wider, but
+        are no longer able to click the resize gripper to make it smaller
+        (it's under another div).
+
+        * PrettyPatch/PrettyPatch.rb:
+
 2011-10-13  Adam Barth  <[email protected]>
 
         Would be nice if the review-tool offered to show the corresponding header

Modified: trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb (100348 => 100349)


--- trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb	2011-11-15 23:36:52 UTC (rev 100348)
+++ trunk/Websites/bugs.webkit.org/PrettyPatch/PrettyPatch.rb	2011-11-15 23:40:57 UTC (rev 100349)
@@ -272,6 +272,7 @@
 
 .overallComments textarea {
   height: 2em;
+  max-width: 100%;
 }
 
 .comment textarea, .overallComments textarea {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to