| 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 |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 .report-header .toolbar { | 22 .report-header .toolbar { |
| 23 margin-top: 5px; | 23 margin-top: 5px; |
| 24 margin-left: -8px; | 24 margin-left: -8px; |
| 25 } | 25 } |
| 26 | 26 |
| 27 .report-title { | 27 .report-title { |
| 28 font-size: 15px; | 28 font-size: 15px; |
| 29 } | 29 } |
| 30 | 30 |
| 31 .report-url { | 31 .report-url, .report-subtitle { |
| 32 font-size: 12px; | 32 font-size: 12px; |
| 33 margin-top: 10px; | 33 margin-top: 10px; |
| 34 } | 34 } |
| 35 | 35 |
| 36 .report-section { | 36 .report-section { |
| 37 display: flex; | 37 display: flex; |
| 38 padding: 12px 6px; | 38 padding: 12px; |
| 39 border-bottom: 1px solid rgb(230, 230, 230); | 39 border-bottom: 1px solid rgb(230, 230, 230); |
| 40 flex-direction: column; | 40 flex-direction: column; |
| 41 } | 41 } |
| 42 | 42 |
| 43 .report-section-header { | 43 .report-section-header { |
| 44 margin-left: 18px; | 44 margin-left: 18px; |
| 45 display: flex; | 45 display: flex; |
| 46 flex-direction: row; | 46 flex-direction: row; |
| 47 align-items: center; | 47 align-items: center; |
| 48 } | 48 } |
| 49 | 49 |
| 50 .report-section-title { | 50 .report-section-title { |
| 51 flex: auto; | 51 flex: auto; |
| 52 text-overflow: ellipsis; | 52 text-overflow: ellipsis; |
| 53 overflow: hidden; | 53 overflow: hidden; |
| 54 font-weight: bold; | 54 font-weight: bold; |
| 55 color: #555; | 55 color: #555; |
| 56 } | 56 } |
| 57 | 57 |
| 58 .report-field { | 58 .report-field { |
| 59 margin-top: 8px; | 59 margin-top: 8px; |
| 60 display: flex; | 60 display: flex; |
| 61 line-height: 20px; | 61 line-height: 20px; |
| 62 } | 62 } |
| 63 | 63 |
| 64 .report-row { | 64 .report-row { |
| 65 padding: 0 0 2px 18px; | 65 margin: 10px 0 2px 18px; |
| 66 } | 66 } |
| 67 | 67 |
| 68 .report-field-name { | 68 .report-field-name { |
| 69 color: #888; | 69 color: #888; |
| 70 flex: 0 0 128px; | 70 flex: 0 0 128px; |
| 71 text-align: right; | 71 text-align: right; |
| 72 padding: 0 6px; | 72 padding: 0 6px; |
| 73 white-space: pre; | 73 white-space: pre; |
| 74 } | 74 } |
| 75 | 75 |
| 76 .report-field-value { | 76 .report-field-value { |
| 77 flex: auto; | 77 flex: auto; |
| 78 padding: 0 6px; | 78 padding: 0 6px; |
| 79 text-overflow: ellipsis; | 79 text-overflow: ellipsis; |
| 80 overflow: hidden; | 80 overflow: hidden; |
| 81 white-space: pre; | 81 white-space: pre; |
| 82 } | 82 } |
| 83 | 83 |
| 84 .report-field-value-subtitle { | 84 .report-field-value-subtitle { |
| 85 color: #888; | 85 color: #888; |
| 86 line-height: 14px; | 86 line-height: 14px; |
| 87 } | 87 } |
| OLD | NEW |