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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/devtools/front_end/network/xmlTree.css
diff --git a/third_party/WebKit/Source/devtools/front_end/network/xmlTree.css b/third_party/WebKit/Source/devtools/front_end/network/xmlTree.css
new file mode 100644
index 0000000000000000000000000000000000000000..cd810c2e0636c800982d8e53724512ee50f25cc1
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/network/xmlTree.css
@@ -0,0 +1,53 @@
+/*
+ * Copyright 2016 The Chromium Authors. All rights reserved.
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+.tree-outline ol {
+ list-style: none;
+ padding: 0;
+ margin: 0;
+ -webkit-padding-start: 16px;
+}
+
+ol.tree-outline {
+ -webkit-padding-start: 0;
+}
+
+.tree-outline li {
+ min-height: 12px;
+}
+
+.tree-outline li.shadow-xml-view-close-tag {
+ margin-left: -16px;
+}
+
+.shadow-xml-view-tag {
+ color: rgb(136, 18, 128);
+}
+
+.shadow-xml-view-comment {
+ color: rgb(35, 110, 37);
+}
+
+.shadow-xml-view-processing-instruction {
+ color: rgb(35, 110, 37);
+}
+
+.shadow-xml-view-attribute-name {
+ color: rgb(153, 69, 0);
+}
+
+.shadow-xml-view-attribute-value {
+ color: rgb(26, 26, 166);
+}
+
+.shadow-xml-view-text {
+ color: rgb(0, 0, 0);
+ white-space: pre;
+}
+
+.shadow-xml-view-cdata {
+ color: rgb(0, 0, 0);
+}

Powered by Google App Engine
This is Rietveld 408576698