OLD | NEW |
---|---|
(Empty) | |
1 /* Copyright 2014 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 body { | |
6 font-size: 10pt; | |
Dan Beam
2014/12/09 05:33:38
nit: please match the rest of webui unless there's
Charlie
2014/12/17 23:39:55
Done. This was a holdover from not using chrome_sh
| |
7 margin: 10px 20px; | |
8 } | |
9 | |
10 section { | |
11 margin-top: 40px; | |
12 } | |
13 | |
14 table { | |
15 border: 1px solid gray; | |
16 border-spacing: 0; | |
17 margin-top: 15px; | |
18 width: 600px; | |
19 } | |
20 | |
21 thead { | |
22 background-color: rgb(220, 240, 255); | |
23 font-weight: bold; | |
24 } | |
25 | |
26 tbody { | |
27 border-top: 1px solid gray; | |
28 height: 200px; | |
29 overflow-x: hidden; | |
30 overflow-y: scroll; | |
31 } | |
32 | |
33 td { | |
34 padding: 5px; | |
35 text-align: left; | |
36 } | |
37 | |
38 td::first-letter { | |
39 text-transform: capitalize; | |
40 } | |
41 | |
42 .confirmed, | |
43 .valid { | |
44 color: green; | |
45 } | |
46 | |
47 .done { | |
48 color: darkGray; | |
49 } | |
50 | |
51 .invalid { | |
52 color: red; | |
53 } | |
54 | |
55 .directives td { | |
56 width: 190px; | |
57 } | |
58 | |
59 .tokens td { | |
60 width: 140px; | |
61 } | |
62 | |
63 table td.spacer { | |
64 width: 5px; | |
65 } | |
66 | |
67 tbody, | |
68 thead > tr { | |
69 display: block; | |
70 } | |
OLD | NEW |