Title: [132773] trunk/Source/WebCore
Revision
132773
Author
[email protected]
Date
2012-10-29 01:49:49 -0700 (Mon, 29 Oct 2012)

Log Message

Web Inspector: Error messages lines in console are 1px taller than regular messages
https://bugs.webkit.org/show_bug.cgi?id=100521

Reviewed by Pavel Feldman.

The inspector is adding a 1px bottom border to list elements inside
a disclosure list. This is unnecessary in the current layout; it's
causing console messages with stack traces to be one pixel taller than
other console messages, which this patch fixes.

As a drive-by, this patch also adjusts the disclosure triangle's
position to match.

* inspector/front-end/inspector.css:
(.outline-disclosure li):
(.outline-disclosure li.parent::before):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (132772 => 132773)


--- trunk/Source/WebCore/ChangeLog	2012-10-29 08:48:16 UTC (rev 132772)
+++ trunk/Source/WebCore/ChangeLog	2012-10-29 08:49:49 UTC (rev 132773)
@@ -1,5 +1,24 @@
 2012-10-29  Mike West  <[email protected]>
 
+        Web Inspector: Error messages lines in console are 1px taller than regular messages
+        https://bugs.webkit.org/show_bug.cgi?id=100521
+
+        Reviewed by Pavel Feldman.
+
+        The inspector is adding a 1px bottom border to list elements inside
+        a disclosure list. This is unnecessary in the current layout; it's
+        causing console messages with stack traces to be one pixel taller than
+        other console messages, which this patch fixes.
+
+        As a drive-by, this patch also adjusts the disclosure triangle's
+        position to match.
+
+        * inspector/front-end/inspector.css:
+        (.outline-disclosure li):
+        (.outline-disclosure li.parent::before):
+
+2012-10-29  Mike West  <[email protected]>
+
         Web Inspector: The bubble for repeated errors is misplaced.
         https://bugs.webkit.org/show_bug.cgi?id=100525
 

Modified: trunk/Source/WebCore/inspector/front-end/inspector.css (132772 => 132773)


--- trunk/Source/WebCore/inspector/front-end/inspector.css	2012-10-29 08:48:16 UTC (rev 132772)
+++ trunk/Source/WebCore/inspector/front-end/inspector.css	2012-10-29 08:49:49 UTC (rev 132773)
@@ -1273,7 +1273,6 @@
 .outline-disclosure li {
     padding: 0 0 0 14px;
     margin-top: 1px;
-    margin-bottom: 1px;
     margin-left: -2px;
     word-wrap: break-word;
 }
@@ -1311,7 +1310,6 @@
     float: left;
     width: 8px;
     height: 8px;
-    margin-top: 1px;
     padding-right: 2px;
 }
 
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to