| 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: 50vw; | 8 max-width: 80vw; |
| 9 z-index: 10000; | 9 z-index: 10000; |
| 10 font-family: sans-serif !important; | 10 font-family: sans-serif !important; |
| 11 } | 11 } |
| 12 .build-logs .log { | 12 .build-logs .log { |
| 13 padding: 0.6em; | 13 padding: 0.6em; |
| 14 background: black; | 14 background: black; |
| 15 color: white; | 15 color: white; |
| 16 border: solid 1px #666; | 16 border: solid 1px #666; |
| 17 border-bottom: 0px; | 17 border-bottom: 0px; |
| 18 text-overflow: ellipsis; |
| 19 overflow-x: hidden; |
| 18 } | 20 } |
| 19 .build-logs .fine { | 21 .build-logs .fine { |
| 20 color: green; | 22 color: green; |
| 21 } | 23 } |
| 22 .build-logs .info { | 24 .build-logs .info { |
| 23 color: yellow; | 25 color: yellow; |
| 24 } | 26 } |
| 25 .build-logs .warning { | 27 .build-logs .warning { |
| 26 color: orange; | 28 color: orange; |
| 27 } | 29 } |
| 28 .build-logs .error { | 30 .build-logs .error { |
| 29 color: red; | 31 color: red; |
| 30 } | 32 } |
| 31 .build-logs .message { | 33 .build-logs .message { |
| 32 white-space: nowrap; | 34 white-space: nowrap; |
| 33 text-overflow: ellipsis; | |
| 34 overflow-x: hidden; | |
| 35 cursor: pointer; | 35 cursor: pointer; |
| 36 } | 36 } |
| 37 .build-logs .message.expanded { | 37 .build-logs .message.expanded { |
| 38 white-space: normal; | 38 white-space: normal; |
| 39 } | 39 } |
| 40 .build-logs .message a { | 40 .build-logs .message a { |
| 41 color: #CCF; | 41 color: #CCF; |
| 42 text-decoration: bold; | 42 text-decoration: bold; |
| 43 } | 43 } |
| 44 .build-logs .menu { | 44 .build-logs .menu { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 69 .build-logs .content > div.active { | 69 .build-logs .content > div.active { |
| 70 display: block; | 70 display: block; |
| 71 } | 71 } |
| 72 | 72 |
| 73 .build-logs .content span.text { | 73 .build-logs .content span.text { |
| 74 padding: 0.4em 0.2em 0.2em 2em; | 74 padding: 0.4em 0.2em 0.2em 2em; |
| 75 white-space: pre; | 75 white-space: pre; |
| 76 display: block; | 76 display: block; |
| 77 font-family: monospace !important; | 77 font-family: monospace !important; |
| 78 } | 78 } |
| OLD | NEW |