| OLD | NEW |
| 1 /* Copyright 2017 The Chromium Authors. All rights reserved. | 1 /* Copyright 2017 The Chromium Authors. All rights reserved. |
| 2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
| 3 * found in the LICENSE file. */ | 3 * found in the LICENSE file. */ |
| 4 | 4 |
| 5 body { | 5 body { |
| 6 background-color: white; | 6 background-color: white; |
| 7 color: black; | 7 color: black; |
| 8 font-size: 100%; | 8 font-size: 100%; |
| 9 margin: 0; | 9 margin: 0; |
| 10 } | 10 } |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 margin-top: 20px; | 39 margin-top: 20px; |
| 40 white-space: nowrap; | 40 white-space: nowrap; |
| 41 } | 41 } |
| 42 | 42 |
| 43 .app-property-label { | 43 .app-property-label { |
| 44 -webkit-padding-end: 5px; | 44 -webkit-padding-end: 5px; |
| 45 font-weight: bold; | 45 font-weight: bold; |
| 46 text-align: start; | 46 text-align: start; |
| 47 white-space: nowrap; | 47 white-space: nowrap; |
| 48 } | 48 } |
| 49 |
| 50 .app-property-value { |
| 51 font-weight: normal; |
| 52 text-align: start; |
| 53 white-space: nowrap; |
| 54 } |
| OLD | NEW |