Title: [171869] trunk/Source/WebInspectorUI
Revision
171869
Author
[email protected]
Date
2014-07-31 10:42:59 -0700 (Thu, 31 Jul 2014)

Log Message

Web Inspector: Right edge of Timeline Record button does not work
https://bugs.webkit.org/show_bug.cgi?id=135444

Patch by Joseph Pecoraro <[email protected]> on 2014-07-31
Reviewed by Timothy Hatcher.

When hovering the record button we would show the status text, however
because the left edge of the status text box would overlap the right
edge of the record button causing completely unexpected behavior.

Position the status text correctly so that it never overlaps the record
button. 5px to match the left margin of the record button, and another
2px for some padding between the button and text.

* UserInterface/Views/TimelineSidebarPanel.css:
(.sidebar > .panel.navigation.timeline > .status-bar > .record-status):

Modified Paths

Diff

Modified: trunk/Source/WebInspectorUI/ChangeLog (171868 => 171869)


--- trunk/Source/WebInspectorUI/ChangeLog	2014-07-31 17:40:49 UTC (rev 171868)
+++ trunk/Source/WebInspectorUI/ChangeLog	2014-07-31 17:42:59 UTC (rev 171869)
@@ -1,5 +1,23 @@
 2014-07-31  Joseph Pecoraro  <[email protected]>
 
+        Web Inspector: Right edge of Timeline Record button does not work
+        https://bugs.webkit.org/show_bug.cgi?id=135444
+
+        Reviewed by Timothy Hatcher.
+
+        When hovering the record button we would show the status text, however
+        because the left edge of the status text box would overlap the right
+        edge of the record button causing completely unexpected behavior.
+
+        Position the status text correctly so that it never overlaps the record
+        button. 5px to match the left margin of the record button, and another
+        2px for some padding between the button and text.
+
+        * UserInterface/Views/TimelineSidebarPanel.css:
+        (.sidebar > .panel.navigation.timeline > .status-bar > .record-status):
+
+2014-07-31  Joseph Pecoraro  <[email protected]>
+
         Web Inspector: console.profile missing profile information
         https://bugs.webkit.org/show_bug.cgi?id=135432
 

Modified: trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css (171868 => 171869)


--- trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css	2014-07-31 17:40:49 UTC (rev 171868)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css	2014-07-31 17:42:59 UTC (rev 171869)
@@ -76,7 +76,7 @@
     position: absolute;
     top: 0;
     right: 21px;
-    left: 21px;
+    left: 27px;
 
     text-align: center;
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to