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

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: Moved some logic to the isPrimary function 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 .build-logs {
2 position: fixed;
3 bottom: 0;
4 right: 0;
5 }
6 .build-logs .log {
7 padding: 6px;
8 background: black;
9 color: white;
10 border: solid 1px grey;
11 margin-bottom: -1px;
12 }
13 .build-logs .fine {
14 color: green;
15 }
16 .build-logs .info {
17 color: yellow;
18 }
19 .build-logs .warning {
20 color: orange;
21 }
22 .build-logs .error {
23 color: red;
24 }
25 .build-logs .message {
26 font-size: 12px;
27 }
28 .build-logs .menu {
29 text-align: right;
30 }
31 .build-logs .menu div {
32 display: inline-block;
33 background: grey;
34 font-size: 16px;
35 font-weight: bold;
36 cursor: pointer;
37 border: solid 1px black;
38 padding: 6px 10px;
39 }
40 .build-logs .menu div.active {
41 background: black;
42 }
43 .build-logs .menu div .num {
44 color: white;
45 }
46 .build-logs .content {
47 max-height: 500px;
48 max-width: 500px;
49 font-size: 10px;
50 }
51 .build-logs .content > div {
52 display: none;
53 }
54 .build-logs .content > div.active {
55 display: block;
56 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698