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

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

Issue 427623002: Polymer transformer logs now show on the frontend for pub serve. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: dont wrap the logger in release mode 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
(Empty)
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
3 BSD-style license that can be found in the LICENSE file. **/
4 .build-logs {
5 position: fixed;
6 bottom: 0;
7 right: 0;
8 }
9 .build-logs .log {
10 padding: 6px;
11 background: black;
12 color: white;
13 border: solid 1px #666;
14 margin-bottom: -1px;
15 }
16 .build-logs .fine {
17 color: green;
18 }
19 .build-logs .info {
20 color: yellow;
21 }
22 .build-logs .warning {
23 color: orange;
24 }
25 .build-logs .error {
26 color: red;
27 }
28 .build-logs .message {
29 font-size: 12px;
30 }
31 .build-logs .menu {
32 text-align: right;
33 }
34 .build-logs .menu div {
35 display: inline-block;
36 background: #666;
37 font-size: 16px;
38 font-weight: bold;
39 cursor: pointer;
40 border: solid 1px black;
41 padding: 6px 10px;
42 }
43 .build-logs .menu div.active {
44 background: black;
45 }
46 .build-logs .menu div .num {
47 color: white;
48 }
49 .build-logs .content {
50 max-height: 500px;
51 max-width: 500px;
52 font-size: 10px;
53 }
54 .build-logs .content > div {
55 display: none;
56 }
57 .build-logs .content > div.active {
58 display: block;
59 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698