OLD | NEW |
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 #debug-log { | 6 #debug-log { |
7 background-color: white; | 7 background-color: white; |
8 bottom: 0; | 8 bottom: 0; |
9 border-top: 1px solid black; | 9 border-top: 1px solid black; |
10 display: none; | |
11 height: 150px; | 10 height: 150px; |
12 margin: 0; | 11 margin: 0; |
13 opacity: 0.85; | 12 opacity: 0.85; |
14 overflow: auto; | |
15 padding: 0; | 13 padding: 0; |
16 position: fixed; | 14 position: fixed; |
17 width: 100%; | 15 width: 100%; |
18 z-index: 100; | 16 z-index: 100; |
19 -webkit-user-select: text; | 17 -webkit-user-select: text; |
20 } | 18 } |
21 | 19 |
22 #debug-log > p { | 20 #debug-messages { |
| 21 border-top: 1px solid black; |
| 22 overflow: auto; |
| 23 height: inherit; |
| 24 } |
| 25 |
| 26 #debug-messages > p { |
23 font-family: monospace; | 27 font-family: monospace; |
24 font-weight: bold; | 28 font-weight: bold; |
25 font-size: small; | 29 font-size: small; |
26 margin: 0.35em; | 30 margin: 0.35em; |
27 padding: 0; | 31 padding: 0; |
28 } | 32 } |
29 | 33 |
30 #debug-log-toggle { | 34 #debug-log-toggle { |
31 float: right; | 35 float: right; |
32 } | 36 } |
OLD | NEW |