Title: [178620] trunk/Source/WebInspectorUI
- Revision
- 178620
- Author
- [email protected]
- Date
- 2015-01-16 18:26:28 -0800 (Fri, 16 Jan 2015)
Log Message
Web Inspector: Make message selection in the console more readable
https://bugs.webkit.org/show_bug.cgi?id=140385
Patch by Nikita Vasilyev <[email protected]> on 2015-01-16
Reviewed by Timothy Hatcher.
* UserInterface/Views/LogContentView.css:
(.console-item.selected):
(.console-messages:focus .console-item.selected):
(.console-item.selected .console-message::after):
(.console-messages:focus .console-item.selected .console-message::after):
(.console-messages:focus .console-item.selected .go-to-link):
* UserInterface/Views/Main.css:
(.go-to-link):
!important statements seem to be unnecessary, remove them.
Modified Paths
Diff
Modified: trunk/Source/WebInspectorUI/ChangeLog (178619 => 178620)
--- trunk/Source/WebInspectorUI/ChangeLog 2015-01-17 02:12:58 UTC (rev 178619)
+++ trunk/Source/WebInspectorUI/ChangeLog 2015-01-17 02:26:28 UTC (rev 178620)
@@ -1,3 +1,20 @@
+2015-01-16 Nikita Vasilyev <[email protected]>
+
+ Web Inspector: Make message selection in the console more readable
+ https://bugs.webkit.org/show_bug.cgi?id=140385
+
+ Reviewed by Timothy Hatcher.
+
+ * UserInterface/Views/LogContentView.css:
+ (.console-item.selected):
+ (.console-messages:focus .console-item.selected):
+ (.console-item.selected .console-message::after):
+ (.console-messages:focus .console-item.selected .console-message::after):
+ (.console-messages:focus .console-item.selected .go-to-link):
+ * UserInterface/Views/Main.css:
+ (.go-to-link):
+ !important statements seem to be unnecessary, remove them.
+
2015-01-16 Joseph Pecoraro <[email protected]>
Web Inspector: Remove unused WebInspector.LocalJSONObject
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css (178619 => 178620)
--- trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css 2015-01-17 02:12:58 UTC (rev 178619)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/LogContentView.css 2015-01-17 02:26:28 UTC (rev 178620)
@@ -53,13 +53,32 @@
}
.console-item.selected {
- background-color: rgb(212, 212, 212);
+ background-color: hsl(210, 0%, 96%);
}
.console-messages:focus .console-item.selected {
- background-color: highlight;
+ background-color: hsl(210, 98%, 96%);
}
+.console-item.selected .console-message::after {
+ position: absolute;
+ display: block;
+ content: "";
+ left: 0;
+ top: 0;
+ bottom: 0;
+ background: hsl(0, 0%, 60%);
+ width: 2px;
+}
+
+.console-messages:focus .console-item.selected .console-message::after {
+ background: hsl(210, 100%, 49%);
+}
+
+.console-messages:focus .console-item.selected .go-to-link {
+ color: hsl(210, 100%, 33%);
+}
+
.console-user-command-result.console-log-level::before {
background-image: url(../Images/UserInputResult.svg);
}
Modified: trunk/Source/WebInspectorUI/UserInterface/Views/Main.css (178619 => 178620)
--- trunk/Source/WebInspectorUI/UserInterface/Views/Main.css 2015-01-17 02:12:58 UTC (rev 178619)
+++ trunk/Source/WebInspectorUI/UserInterface/Views/Main.css 2015-01-17 02:26:28 UTC (rev 178620)
@@ -211,8 +211,8 @@
}
.go-to-link {
- color: rgb(85, 85, 85) !important;
- text-decoration: underline !important;
+ color: rgb(85, 85, 85);
+ text-decoration: underline;
cursor: pointer;
}
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes