blob: c92cffc1497bef8f06eed94032437687b5cebaa2 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
/* Copyright (c) 2012 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. */
#info-view {
-webkit-box-flex: 1;
overflow: auto;
padding: 10px;
}
#info-view * {
-webkit-user-select: text;
}
#info-view[selected] {
-webkit-box-orient: vertical;
display: -webkit-box;
}
#info-view h3,
#info-view ul {
margin-bottom: 0;
margin-top: 0;
}
#info-view > div {
margin-bottom: 1em;
}
#info-view .row-title {
font-weight: bold;
}
#info-view table {
border-collapse: collapse;
cursor: auto;
table-layout: fixed;
width: 100%;
}
#info-view table,
#info-view th,
#info-view td {
border: 1px solid #777;
padding-left: 4px;
padding-right: 4px;
text-align: top;
}
#info-view td {
overflow-x: auto;
}
#info-view .feature-green {
color: rgb(0, 128, 0);
}
#info-view .feature-yellow {
color: rgb(128, 128, 0);
}
#info-view .feature-red {
color: rgb(255, 0, 0);
}
|