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

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

Issue 487813002: add font rules to log widget (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
« no previous file with comments | « no previous file | no next file » | 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: 50%; 8 max-width: 50%;
9 z-index: 10000; 9 z-index: 10000;
10 font-family: sans-serif !important;
10 } 11 }
11 .build-logs .log { 12 .build-logs .log {
12 padding: 0.6em; 13 padding: 0.6em;
13 background: black; 14 background: black;
14 color: white; 15 color: white;
15 border: solid 1px #666; 16 border: solid 1px #666;
16 border-bottom: 0px; 17 border-bottom: 0px;
17 } 18 }
18 .build-logs .fine { 19 .build-logs .fine {
19 color: green; 20 color: green;
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 display: none; 67 display: none;
67 } 68 }
68 .build-logs .content > div.active { 69 .build-logs .content > div.active {
69 display: block; 70 display: block;
70 } 71 }
71 72
72 .build-logs .content span.text { 73 .build-logs .content span.text {
73 padding: 0.4em 0.2em 0.2em 2em; 74 padding: 0.4em 0.2em 0.2em 2em;
74 white-space: pre; 75 white-space: pre;
75 display: block; 76 display: block;
76 font-family: monospace; 77 font-family: monospace !important;
77 } 78 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698