Title: [196689] trunk/Source/WebInspectorUI
Revision
196689
Author
[email protected]
Date
2016-02-16 23:18:34 -0800 (Tue, 16 Feb 2016)

Log Message

REGRESSION (r196620): Web Inspector: Selecting last message in the console makes the scrollbar visible
https://bugs.webkit.org/show_bug.cgi?id=154326
<rdar://problem/24692717>

Reviewed by Timothy Hatcher.

* UserInterface/Views/LogContentView.css:
(.console-item.selected::after):
Make sure the selected message marker (blue vertical line) doesn't
go over the content view.

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (196688 => 196689)


--- trunk/Source/WebInspectorUI/ChangeLog	2016-02-17 07:16:40 UTC (rev 196688)
+++ trunk/Source/WebInspectorUI/ChangeLog	2016-02-17 07:18:34 UTC (rev 196689)
@@ -1,3 +1,16 @@
+2016-02-16  Nikita Vasilyev  <[email protected]>
+
+        REGRESSION (r196620): Web Inspector: Selecting last message in the console makes the scrollbar visible
+        https://bugs.webkit.org/show_bug.cgi?id=154326
+        <rdar://problem/24692717>
+
+        Reviewed by Timothy Hatcher.
+
+        * UserInterface/Views/LogContentView.css:
+        (.console-item.selected::after):
+        Make sure the selected message marker (blue vertical line) doesn't
+        go over the content view.
+
 2016-02-16  Joseph Pecoraro  <[email protected]>
 
         JSContext Inspector: Support for inline source maps

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css (196688 => 196689)


--- trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css	2016-02-17 07:16:40 UTC (rev 196688)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css	2016-02-17 07:18:34 UTC (rev 196689)
@@ -107,7 +107,7 @@
     content: "";
     left: 0;
     top: -1px;
-    bottom: -1px;
+    bottom: 0;
     background: hsl(0, 0%, 60%);
     width: 2px;
     z-index: 10;
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to