blob: 3e2ad0b6445965f192355d2d1c8987d6d6c3b51e (
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
|
/*
Copyright (c) 2010 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 {
padding: 10px;
overflow: auto;
-webkit-box-flex: 1;
}
#info-view * {
-webkit-user-select: text;
}
#info-view[selected] {
display: -webkit-box;
-webkit-box-orient: vertical;
}
#info-view h3,
#info-view ul {
-webkit-margin-before: 0;
-webkit-margin-after: 0;
}
#info-view > div {
-webkit-margin-after: 1em;
}
#info-view .row-title {
font-weight: bold;
}
#info-view table {
cursor: text;
border-collapse: collapse;
}
#info-view table,
#info-view th,
#info-view td {
border: 1px solid #777;
padding-right: 4px;
padding-left: 4px;
text-align: top;
}
#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);
}
|