Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Unified Diff: third_party/WebKit/Source/devtools/front_end/components/domUtils.css

Issue 1418453009: Devtools UI: Colorize node links and make pseudo links clearer (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/components/domUtils.css
diff --git a/third_party/WebKit/Source/devtools/front_end/components/domUtils.css b/third_party/WebKit/Source/devtools/front_end/components/domUtils.css
index 1286b4378898c4accfcb3654feecb79fd345b162..79e25449afacee9f6482b6ed0bb1dfde1da0db5c 100644
--- a/third_party/WebKit/Source/devtools/front_end/components/domUtils.css
+++ b/third_party/WebKit/Source/devtools/front_end/components/domUtils.css
@@ -9,7 +9,6 @@
}
.node-link {
- text-decoration: underline;
cursor: pointer;
display: inline;
}
@@ -30,3 +29,15 @@
.stack-preview-container td {
white-space: nowrap;
}
+
+.node-label-name {
+ color: rgb(136, 18, 128);
+}
+
+.node-label-id {
+ color: rgb(26, 26, 166);
+}
+
+.node-label-class, .node-label-pseudo {
+ color: rgb(153, 69, 0);
+}

Powered by Google App Engine
This is Rietveld 408576698