OLD | NEW |
---|---|
(Empty) | |
1 .build-logs { | |
Siggi Cherem (dart-lang)
2014/08/04 20:38:37
oops I missed this one too: + /** copyright ... */
jakemac
2014/08/04 22:21:57
Done.
| |
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 #666; | |
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: #666; | |
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 } | |
OLD | NEW |