| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2016 The Chromium Authors. All rights reserved. | 2 * Copyright 2016 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 :host { | 7 :host { |
| 8 background-color: #f9f9f9; | 8 background-color: #f9f9f9; |
| 9 } | 9 } |
| 10 | 10 |
| 11 .report-content-box { | 11 .report-content-box { |
| 12 background-color: white; | 12 background-color: white; |
| 13 white-space: nowrap; | 13 white-space: nowrap; |
| 14 overflow: auto; | 14 overflow: auto; |
| 15 } | 15 } |
| 16 | 16 |
| 17 .report-content-box p { | |
| 18 white-space: initial; | |
| 19 line-height: 18px; | |
| 20 } | |
| 21 | |
| 22 .report-header { | 17 .report-header { |
| 23 border-bottom: 1px solid rgb(230, 230, 230); | 18 border-bottom: 1px solid rgb(230, 230, 230); |
| 24 padding: 12px 24px; | 19 padding: 12px 24px; |
| 25 } | 20 } |
| 26 | 21 |
| 27 .report-header .toolbar { | 22 .report-header .toolbar { |
| 28 margin-bottom: -8px; | 23 margin-bottom: -8px; |
| 29 } | 24 } |
| 30 | 25 |
| 31 .report-header .toolbar { | 26 .report-header .toolbar { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 padding: 0 6px; | 82 padding: 0 6px; |
| 88 text-overflow: ellipsis; | 83 text-overflow: ellipsis; |
| 89 overflow: hidden; | 84 overflow: hidden; |
| 90 white-space: pre; | 85 white-space: pre; |
| 91 } | 86 } |
| 92 | 87 |
| 93 .report-field-value-subtitle { | 88 .report-field-value-subtitle { |
| 94 color: #888; | 89 color: #888; |
| 95 line-height: 14px; | 90 line-height: 14px; |
| 96 } | 91 } |
| OLD | NEW |