| OLD | NEW |
| (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 } |
| OLD | NEW |