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

Side by Side Diff: third_party/WebKit/Source/devtools/front_end/network/xmlTree.css

Issue 2328643002: [DevTools] Migrate XMLView to TreeOutlineInShadow. (Closed)
Patch Set: Created 4 years, 3 months 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
(Empty)
1 /*
2 * Copyright 2016 The Chromium Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7 .tree-outline ol {
8 list-style: none;
9 padding: 0;
10 margin: 0;
11 -webkit-padding-start: 16px;
12 }
13
14 ol.tree-outline {
15 -webkit-padding-start: 0;
16 }
17
18 .tree-outline li {
19 min-height: 12px;
20 }
21
22 .tree-outline li.shadow-xml-view-close-tag {
23 margin-left: -16px;
24 }
25
26 .shadow-xml-view-tag {
27 color: rgb(136, 18, 128);
28 }
29
30 .shadow-xml-view-comment {
31 color: rgb(35, 110, 37);
32 }
33
34 .shadow-xml-view-processing-instruction {
35 color: rgb(35, 110, 37);
36 }
37
38 .shadow-xml-view-attribute-name {
39 color: rgb(153, 69, 0);
40 }
41
42 .shadow-xml-view-attribute-value {
43 color: rgb(26, 26, 166);
44 }
45
46 .shadow-xml-view-text {
47 color: rgb(0, 0, 0);
48 white-space: pre;
49 }
50
51 .shadow-xml-view-cdata {
52 color: rgb(0, 0, 0);
53 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698