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 color: black; | |
7 font-family: Helvetica,Arial,sans-serif; | |
Dan Beam
2014/12/08 22:41:59
you should include chrome_shared.css instead
Charlie
2014/12/08 23:10:45
Done.
| |
8 font-size: 10pt; | |
9 margin: 10px 20px; | |
10 } | |
11 | |
12 section { | |
13 margin-top: 50px; | |
14 } | |
15 | |
16 table { | |
17 border: 1px solid gray; | |
18 border-spacing: 0; | |
19 width: 600px; | |
20 } | |
21 | |
22 thead { | |
23 background-color: rgb(220, 240, 255); | |
24 font-weight: bold; | |
25 } | |
26 | |
27 tbody { | |
28 border-top: 1px solid gray; | |
29 height: 200px; | |
30 overflow-x: hidden; | |
31 overflow-y: scroll; | |
32 } | |
33 | |
34 td { | |
35 padding: 5px; | |
36 text-align: left; | |
37 } | |
38 | |
39 td::first-letter { | |
40 text-transform: capitalize; | |
41 } | |
42 | |
43 .confirmed, | |
44 .valid { | |
45 color: green; | |
46 } | |
47 | |
48 .done { | |
49 color: darkGray; | |
50 } | |
51 | |
52 .invalid { | |
53 color: red; | |
54 } | |
55 | |
56 .directive-table td { | |
57 width: 190px; | |
58 } | |
59 | |
60 .token-table td { | |
61 width: 140px; | |
62 } | |
63 | |
64 table td.spacer { | |
Dan Beam
2014/12/08 22:41:59
td:last-of-type instead?
Charlie
2014/12/08 23:10:45
I'm not sure this will work. The HTML includes onl
| |
65 width: 5px; | |
66 } | |
67 | |
68 tbody, | |
69 thead > tr { | |
70 display: block; | |
71 } | |
OLD | NEW |