| 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 |
| 17 .report-header { | 22 .report-header { |
| 18 border-bottom: 1px solid rgb(230, 230, 230); | 23 border-bottom: 1px solid rgb(230, 230, 230); |
| 19 padding: 12px 24px; | 24 padding: 12px 24px; |
| 20 } | 25 } |
| 21 | 26 |
| 22 .report-header .toolbar { | 27 .report-header .toolbar { |
| 23 margin-bottom: -8px; | 28 margin-bottom: -8px; |
| 24 } | 29 } |
| 25 | 30 |
| 26 .report-header .toolbar { | 31 .report-header .toolbar { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 padding: 0 6px; | 87 padding: 0 6px; |
| 83 text-overflow: ellipsis; | 88 text-overflow: ellipsis; |
| 84 overflow: hidden; | 89 overflow: hidden; |
| 85 white-space: pre; | 90 white-space: pre; |
| 86 } | 91 } |
| 87 | 92 |
| 88 .report-field-value-subtitle { | 93 .report-field-value-subtitle { |
| 89 color: #888; | 94 color: #888; |
| 90 line-height: 14px; | 95 line-height: 14px; |
| 91 } | 96 } |
| OLD | NEW |