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

Side by Side 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, 7 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 2017 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 .audits2-report-tree-item {
8 min-height: 36px;
9 padding: 2px 3px;
10 line-height: 16px;
11 }
12
13 .tree-outline li {
14 min-height: 25px;
15 }
16
17 .audits2-tree-subtitle-pass,
18 .audits2-tree-subtitle-average,
19 .audits2-tree-subtitle-fail {
20 flex: auto;
21 text-align: end;
22 margin-right: 10px;
23 font-size: inherit;
24 background: inherit;
25 }
26
27 .audits2-tree-subtitle-pass {
28 color: var(--pass-color);
29 }
30
31 .audits2-tree-subtitle-average {
32 color: var(--average-color);
33 }
34
35 .audits2-tree-subtitle-fail {
36 color: var(--fail-color);
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698