1/* Copyright (c) 2012 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#info-view {
6  -webkit-box-flex: 1;
7  overflow: auto;
8  padding: 10px;
9}
10
11#info-view * {
12  -webkit-user-select: text;
13}
14
15#info-view[selected] {
16  -webkit-box-orient: vertical;
17  display: -webkit-box;
18}
19
20#info-view h3,
21#info-view ul {
22  -webkit-margin-after: 0;
23  -webkit-margin-before: 0;
24}
25
26#info-view > div {
27  -webkit-margin-after: 1em;
28}
29
30#info-view .row-title {
31  font-weight: bold;
32}
33
34#info-view table {
35  border-collapse: collapse;
36  cursor: text;
37  table-layout: fixed;
38  width: 100%;
39}
40
41#info-view table,
42#info-view th,
43#info-view td {
44  border: 1px solid #777;
45  padding-left: 4px;
46  padding-right: 4px;
47  text-align: top;
48}
49
50#info-view td {
51  overflow-x: auto;
52}
53
54#info-view .feature-green {
55  color: rgb(0, 128, 0);
56}
57
58#info-view .feature-yellow {
59  color: rgb(128, 128, 0);
60}
61
62#info-view .feature-red {
63  color: rgb(255, 0, 0);
64}
65