Title: [193028] branches/safari-601-branch/Source/WebInspectorUI
- Revision
- 193028
- Author
- [email protected]
- Date
- 2015-12-03 10:33:00 -0800 (Thu, 03 Dec 2015)
Log Message
Merge r187480. rdar://problem/23221163
Modified Paths
Diff
Modified: branches/safari-601-branch/Source/WebInspectorUI/ChangeLog (193027 => 193028)
--- branches/safari-601-branch/Source/WebInspectorUI/ChangeLog 2015-12-03 18:32:55 UTC (rev 193027)
+++ branches/safari-601-branch/Source/WebInspectorUI/ChangeLog 2015-12-03 18:33:00 UTC (rev 193028)
@@ -1,5 +1,23 @@
2015-12-01 Timothy Hatcher <[email protected]>
+ Merge r187480. rdar://problem/23221163
+
+ 2015-07-27 Matt Baker <[email protected]>
+
+ Web Inspector: Record button in Timelines view is clipped on non-retina. Hovering over the dot draws it correctly.
+ https://bugs.webkit.org/show_bug.cgi?id=147346
+
+ Reviewed by Joseph Pecoraro.
+
+ Since the hovered button isn't clipped (-webkit-filter is applied in that case), add a filter that
+ doesn't alter the button's appearance to the non-hovered selector.
+
+ * UserInterface/Views/TimelineSidebarPanel.css:
+ (.sidebar > .panel.navigation.timeline > .status-bar > .record-glyph):
+ Added brightness 100% filter to non-hovered selector.
+
+2015-12-01 Timothy Hatcher <[email protected]>
+
Merge r187468. rdar://problem/23221163
2015-07-27 Matt Baker <[email protected]>
Modified: branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css (193027 => 193028)
--- branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css 2015-12-03 18:32:55 UTC (rev 193027)
+++ branches/safari-601-branch/Source/WebInspectorUI/UserInterface/Views/TimelineSidebarPanel.css 2015-12-03 18:33:00 UTC (rev 193028)
@@ -57,6 +57,11 @@
background-position: center;
}
+.sidebar > .panel.navigation.timeline > .status-bar > .record-glyph {
+ /* Workaround for background image clipping issue on non-retina machines. See http://webkit.org/b/147346. */
+ -webkit-filter: brightness(100%);
+}
+
.sidebar > .panel.navigation.timeline > .status-bar > .record-glyph:hover {
-webkit-filter: brightness(95%);
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes