blob: c4cd6ca1130a82db2d5f7e3b2797ed1df6cfa5cd (
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
|
/*
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;
}
#info-view h3 {
margin-bottom: 5px;
}
#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;
}
|