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

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

Issue 451933002: Tweaks to the injector UI (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 4 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
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: 50%;
9 z-index: 10000;
8 } 10 }
9 .build-logs .log { 11 .build-logs .log {
10 padding: 6px; 12 padding: 0.6em;
11 background: black; 13 background: black;
12 color: white; 14 color: white;
13 border: solid 1px #666; 15 border: solid 1px #666;
14 margin-bottom: -1px; 16 border-bottom: 0px;
15 } 17 }
16 .build-logs .fine { 18 .build-logs .fine {
17 color: green; 19 color: green;
18 } 20 }
19 .build-logs .info { 21 .build-logs .info {
20 color: yellow; 22 color: yellow;
21 } 23 }
22 .build-logs .warning { 24 .build-logs .warning {
23 color: orange; 25 color: orange;
24 } 26 }
25 .build-logs .error { 27 .build-logs .error {
26 color: red; 28 color: red;
27 } 29 }
28 .build-logs .message { 30 .build-logs .message {
29 font-size: 12px; 31 white-space: nowrap;
32 text-overflow: ellipsis;
33 overflow-x: hidden;
34 cursor: pointer;
35 }
36 .build-logs .message.expanded {
37 white-space: normal;
38 }
39 .build-logs .message a {
40 color: #CCF;
41 text-decoration: bold;
30 } 42 }
31 .build-logs .menu { 43 .build-logs .menu {
32 text-align: right; 44 text-align: right;
33 } 45 }
34 .build-logs .menu div { 46 .build-logs .menu div {
35 display: inline-block; 47 display: inline-block;
36 background: #666; 48 background: #666;
37 font-size: 16px;
38 font-weight: bold; 49 font-weight: bold;
39 cursor: pointer; 50 cursor: pointer;
40 border: solid 1px black; 51 border: solid 1px black;
41 padding: 6px 10px; 52 padding: 0.6em 1em;
42 } 53 }
43 .build-logs .menu div.active { 54 .build-logs .menu div.active {
44 background: black; 55 background: black;
45 } 56 }
46 .build-logs .menu div .num { 57 .build-logs .menu div .num {
47 color: white; 58 color: white;
48 } 59 }
49 .build-logs .content { 60 .build-logs .content {
50 max-height: 500px; 61 max-height: 500px;
51 max-width: 500px; 62 font-size: 1em;
52 font-size: 10px; 63 overflow-y: auto;
53 } 64 }
54 .build-logs .content > div { 65 .build-logs .content > div {
55 display: none; 66 display: none;
56 } 67 }
57 .build-logs .content > div.active { 68 .build-logs .content > div.active {
58 display: block; 69 display: block;
59 } 70 }
71
72 .build-logs .content span.text {
73 padding: 0.4em 0.2em 0.2em 2em;
74 white-space: pre;
75 display: block;
76 font-family: monospace;
77 }
OLDNEW
« no previous file with comments | « no previous file | pkg/polymer/lib/src/build/log_injector.dart » ('j') | pkg/polymer/lib/src/build/log_injector.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698