| OLD | NEW |
| 1 /** Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 /** Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 for details. All rights reserved. Use of this source code is governed by a | 2 for details. All rights reserved. Use of this source code is governed by a |
| 3 BSD-style license that can be found in the LICENSE file. **/ | 3 BSD-style license that can be found in the LICENSE file. **/ |
| 4 .build-logs { | 4 .build-logs { |
| 5 position: fixed; | 5 position: fixed; |
| 6 bottom: 0; | 6 bottom: 0; |
| 7 right: 0; | 7 right: 0; |
| 8 max-width: 50%; | 8 max-width: 50%; |
| 9 z-index: 10000; | 9 z-index: 10000; |
| 10 font-family: sans-serif !important; |
| 10 } | 11 } |
| 11 .build-logs .log { | 12 .build-logs .log { |
| 12 padding: 0.6em; | 13 padding: 0.6em; |
| 13 background: black; | 14 background: black; |
| 14 color: white; | 15 color: white; |
| 15 border: solid 1px #666; | 16 border: solid 1px #666; |
| 16 border-bottom: 0px; | 17 border-bottom: 0px; |
| 17 } | 18 } |
| 18 .build-logs .fine { | 19 .build-logs .fine { |
| 19 color: green; | 20 color: green; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 display: none; | 67 display: none; |
| 67 } | 68 } |
| 68 .build-logs .content > div.active { | 69 .build-logs .content > div.active { |
| 69 display: block; | 70 display: block; |
| 70 } | 71 } |
| 71 | 72 |
| 72 .build-logs .content span.text { | 73 .build-logs .content span.text { |
| 73 padding: 0.4em 0.2em 0.2em 2em; | 74 padding: 0.4em 0.2em 0.2em 2em; |
| 74 white-space: pre; | 75 white-space: pre; |
| 75 display: block; | 76 display: block; |
| 76 font-family: monospace; | 77 font-family: monospace !important; |
| 77 } | 78 } |
| OLD | NEW |