Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(250)

Side by Side Diff: pkg/polymer/lib/src/build/log_injector.css

Issue 513023002: Step one towards stable error messages with details: (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « pkg/polymer/lib/src/build/linter.dart ('k') | pkg/polymer/lib/src/build/log_injector.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « pkg/polymer/lib/src/build/linter.dart ('k') | pkg/polymer/lib/src/build/log_injector.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698