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

Unified Diff: third_party/WebKit/Source/devtools/front_end/audits2/audits2Tree.css

Issue 2851213005: DevTools: brush up audits 2 launcher UI, allow multiple audit runs, introduce landing page. (Closed)
Patch Set: for landing Created 3 years, 8 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/audits2/audits2Tree.css
diff --git a/third_party/WebKit/Source/devtools/front_end/audits2/audits2Tree.css b/third_party/WebKit/Source/devtools/front_end/audits2/audits2Tree.css
new file mode 100644
index 0000000000000000000000000000000000000000..7250ad61224e98dd98cebab05cbfd2059a0da909
--- /dev/null
+++ b/third_party/WebKit/Source/devtools/front_end/audits2/audits2Tree.css
@@ -0,0 +1,37 @@
+/*
+ * Copyright 2017 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 .audits2-report-tree-item {
+ min-height: 36px;
+ padding: 2px 3px;
+ line-height: 16px;
+}
+
+.tree-outline li {
+ min-height: 25px;
+}
+
+.audits2-tree-subtitle-pass,
+.audits2-tree-subtitle-average,
+.audits2-tree-subtitle-fail {
+ flex: auto;
+ text-align: end;
+ margin-right: 10px;
+ font-size: inherit;
+ background: inherit;
+}
+
+.audits2-tree-subtitle-pass {
+ color: var(--pass-color);
+}
+
+.audits2-tree-subtitle-average {
+ color: var(--average-color);
+}
+
+.audits2-tree-subtitle-fail {
+ color: var(--fail-color);
+}

Powered by Google App Engine
This is Rietveld 408576698