Title: [187577] trunk/Source/WebInspectorUI
- Revision
- 187577
- Author
- [email protected]
- Date
- 2015-07-29 21:59:48 -0700 (Wed, 29 Jul 2015)
Log Message
Web Inspector: Border line in the debug popover should be semi-transparent black, not dark yellow
https://bugs.webkit.org/show_bug.cgi?id=147435
Reviewed by Timothy Hatcher.
* UserInterface/Views/SourceCodeTextEditor.css:
(.popover .debugger-popover-content > .body):
(@media (-webkit-min-device-pixel-ratio: 2)): Use hairline borders on retina.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (187576 => 187577)
--- trunk/Source/WebInspectorUI/ChangeLog 2015-07-30 04:40:34 UTC (rev 187576)
+++ trunk/Source/WebInspectorUI/ChangeLog 2015-07-30 04:59:48 UTC (rev 187577)
@@ -1,5 +1,16 @@
2015-07-29 Nikita Vasilyev <[email protected]>
+ Web Inspector: Border line in the debug popover should be semi-transparent black, not dark yellow
+ https://bugs.webkit.org/show_bug.cgi?id=147435
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/SourceCodeTextEditor.css:
+ (.popover .debugger-popover-content > .body):
+ (@media (-webkit-min-device-pixel-ratio: 2)): Use hairline borders on retina.
+
+2015-07-29 Nikita Vasilyev <[email protected]>
+
Web Inspector: " = $0" text in the Elements panel should anti-aliased
https://bugs.webkit.org/show_bug.cgi?id=147432
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.css (187576 => 187577)
--- trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.css 2015-07-30 04:40:34 UTC (rev 187576)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/SourceCodeTextEditor.css 2015-07-30 04:59:48 UTC (rev 187577)
@@ -159,7 +159,7 @@
}
.popover .debugger-popover-content > .body {
- border-top: 1px solid hsl(60, 27%, 66%);
+ border-top: 1px solid hsla(0, 0%, 0%, 0.3);
overflow: auto;
margin-top: 5px;
padding-top: 5px;
@@ -183,3 +183,9 @@
-webkit-transform: translateY(1px);
}
+
+@media (-webkit-min-device-pixel-ratio: 2) {
+ .popover .debugger-popover-content > .body {
+ border-width: 0.5px;
+ }
+}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes