OLD | NEW |
---|---|
(Empty) | |
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 | |
3 * found in the LICENSE file. | |
4 */ | |
5 | |
6 #debug-log { | |
7 background-color: white; | |
8 bottom: 0; | |
9 border-top: 1px solid black; | |
10 display: none; | |
11 height: 150px; | |
12 margin: 0; | |
13 opacity: 0.85; | |
14 overflow: auto; | |
15 padding: 0; | |
16 position: fixed; | |
17 width: 100%; | |
18 z-index: 100; | |
19 -webkit-user-select: text; | |
20 } | |
21 | |
22 #debug-log > p { | |
23 font-family: monospace; | |
24 font-weight: bold; | |
25 font-size: small; | |
26 margin: 0.35em; | |
27 padding: 0; | |
28 } | |
29 | |
30 #debug-log-toggle { | |
31 float: right; | |
32 } | |
OLD | NEW |