| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2014 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2014 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 display: block; | 8 display: block; |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 | 37 |
| 38 .text, | 38 .text, |
| 39 .row cr-action { | 39 .row cr-action { |
| 40 padding: 0 16px; | 40 padding: 0 16px; |
| 41 } | 41 } |
| 42 | 42 |
| 43 .line-number, | 43 .line-number, |
| 44 .text { | 44 .text { |
| 45 white-space: pre-wrap; | 45 white-space: pre-wrap; |
| 46 word-wrap: break-word; | 46 word-wrap: break-word; |
| 47 font-family: Monaco, monospace; | 47 font-family: Menlo, Monaco, monospace; |
| 48 flex-shrink: 0; | 48 flex-shrink: 0; |
| 49 } | 49 } |
| 50 | 50 |
| 51 .line-number { | 51 .line-number { |
| 52 min-width: 3em; | 52 min-width: 3em; |
| 53 text-align: right; | 53 text-align: right; |
| 54 color: #444; | 54 color: #444; |
| 55 padding-right: 16px; | 55 padding-right: 16px; |
| 56 cursor: default; | 56 cursor: default; |
| 57 } | 57 } |
| (...skipping 15 matching lines...) Expand all Loading... |
| 73 border-color: #dcdcdc; | 73 border-color: #dcdcdc; |
| 74 border-style: solid; | 74 border-style: solid; |
| 75 border-width: 1px 0 1px 1px; | 75 border-width: 1px 0 1px 1px; |
| 76 margin-left: calc(6em + 32px); | 76 margin-left: calc(6em + 32px); |
| 77 } | 77 } |
| 78 | 78 |
| 79 .spinner { | 79 .spinner { |
| 80 margin: 0.5em auto; | 80 margin: 0.5em auto; |
| 81 display: block; | 81 display: block; |
| 82 } | 82 } |
| OLD | NEW |