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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits/auditsSidebarTree.css

Issue 2342193002: [DevTools] Migrate AuditsPanel away from SidebarTree. (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/audits/auditsSidebarTree.css
diff --git a/third_party/WebKit/Source/devtools/front_end/audits/auditsSidebarTree.css b/third_party/WebKit/Source/devtools/front_end/audits/auditsSidebarTree.css
new file mode 100644
index 0000000000000000000000000000000000000000..5bc08458d86ce63b402f65683cc04bf43f05c2c6
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/audits/auditsSidebarTree.css
@@ -0,0 +1,50 @@
+/*
+ * 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 {
+ padding: 0;
+}
+
+.tree-outline li::before {
+ display: none;
+}
+
+.tree-outline ol {
+ padding-left: 0;
+}
+
+.tree-outline li .tree-element-title {
+ margin-left: 4px;
+}
+
+li.audits-sidebar-header {
+ padding-left: 10px;
+ height: 36px;
+}
+
+.audits-sidebar-header .icon {
+ content: url(Images/resourcesTimeGraphIcon.png);
+}
+
+li.audits-sidebar-results {
+ height: 18px;
+ padding: 1px 10px;
+ margin-top: 1px;
+ color: rgb(92, 110, 129);
+ text-shadow: rgba(255, 255, 255, 0.75) 0 1px 0;
+}
+
+li.audit-result-sidebar-tree-item {
+ padding-left: 10px;
+ height: 36px;
+ margin-top: 1px;
+ line-height: 34px;
+ border-top: 1px solid transparent;
+}
+
+.audit-result-sidebar-tree-item .icon {
+ content: url(Images/resourceDocumentIcon.png);
+}

Powered by Google App Engine
This is Rietveld 408576698