| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2017 The Chromium Authors. All rights reserved. | 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 | 3 * Use of this source code is governed by a BSD-style license that can be |
| 4 * found in the LICENSE file. | 4 * found in the LICENSE file. |
| 5 */ | 5 */ |
| 6 | 6 |
| 7 .tree-outline .audits2-report-tree-item { | 7 .tree-outline .audits2-report-tree-item { |
| 8 min-height: 36px; | 8 min-height: 36px; |
| 9 padding: 2px 3px; | 9 padding: 2px 3px; |
| 10 line-height: 16px; | 10 line-height: 16px; |
| 11 } | 11 } |
| 12 | 12 |
| 13 .tree-outline li { | 13 .tree-outline li { |
| 14 min-height: 25px; | 14 min-height: 25px; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .audits2-tree-subtitle-pass, | 17 .audits2-tree-subtitle-pass, |
| 18 .audits2-tree-subtitle-average, | 18 .audits2-tree-subtitle-average, |
| 19 .audits2-tree-subtitle-fail { | 19 .audits2-tree-subtitle-fail { |
| 20 flex: auto; | 20 flex: auto; |
| 21 text-align: end; | 21 text-align: end; |
| 22 margin-right: 10px; | 22 margin-right: 10px; |
| 23 font-size: inherit; | |
| 24 background: inherit; | |
| 25 } | 23 } |
| 26 | 24 |
| 27 .audits2-tree-subtitle-pass { | 25 .audits2-tree-subtitle-pass { |
| 28 color: var(--pass-color); | 26 color: var(--pass-color); |
| 29 } | 27 } |
| 30 | 28 |
| 31 .audits2-tree-subtitle-average { | 29 .audits2-tree-subtitle-average { |
| 32 color: var(--average-color); | 30 color: var(--average-color); |
| 33 } | 31 } |
| 34 | 32 |
| 35 .audits2-tree-subtitle-fail { | 33 .audits2-tree-subtitle-fail { |
| 36 color: var(--fail-color); | 34 color: var(--fail-color); |
| 37 } | 35 } |
| OLD | NEW |