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