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

Side by Side 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright 2015 The Chromium Authors. All rights reserved. 2 * Copyright 2015 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 :host { 7 :host {
8 display: inline; 8 display: inline;
9 } 9 }
10 10
11 .node-link { 11 .node-link {
12 text-decoration: underline;
13 cursor: pointer; 12 cursor: pointer;
14 display: inline; 13 display: inline;
15 } 14 }
16 15
17 .stack-preview-async-description { 16 .stack-preview-async-description {
18 padding: 3px 0 1px; 17 padding: 3px 0 1px;
19 font-style: italic; 18 font-style: italic;
20 } 19 }
21 20
22 .stack-preview-container .webkit-html-blackbox-link { 21 .stack-preview-container .webkit-html-blackbox-link {
23 opacity: 0.6; 22 opacity: 0.6;
24 } 23 }
25 24
26 .stack-preview-container > tr { 25 .stack-preview-container > tr {
27 height: 17px; 26 height: 17px;
28 } 27 }
29 28
30 .stack-preview-container td { 29 .stack-preview-container td {
31 white-space: nowrap; 30 white-space: nowrap;
32 } 31 }
32
33 .node-label-name {
34 color: rgb(136, 18, 128);
35 }
36
37 .node-label-id {
38 color: rgb(26, 26, 166);
39 }
40
41 .node-label-class, .node-label-pseudo {
42 color: rgb(153, 69, 0);
43 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698