OLD | NEW |
| (Empty) |
1 /* | |
2 * Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 body { | |
8 margin: 20px; | |
9 } | |
10 | |
11 #countBanner { | |
12 background-color: rgb(235, 239, 250); | |
13 border: 1px solid rgb(187, 187, 187); | |
14 border-radius: 2px; | |
15 font-size: 100%; | |
16 padding: 4px; | |
17 } | |
18 | |
19 #databaseTable { | |
20 background-color: white; | |
21 } | |
22 | |
23 #databaseTable thead tr { | |
24 background-color: rgb(235, 250, 239); | |
25 } | |
26 | |
27 #databaseTable th { | |
28 border-color: gray; | |
29 border-style: solid; | |
30 border-width: 1px; | |
31 padding: 3px; | |
32 white-space: nowrap; | |
33 } | |
34 | |
35 #databaseTable td { | |
36 border-color: lightgray; | |
37 border-style: solid; | |
38 border-width: 1px; | |
39 padding: 3px; | |
40 } | |
41 | |
42 #databaseTable tbody > td:first-child { | |
43 white-space: nowrap; | |
44 } | |
45 | |
46 #disabledMode h2 { | |
47 color: rgb(141, 51, 42); | |
48 font-size: 125%; | |
49 } | |
50 | |
51 tr.action-prerender td { | |
52 background-color: rgb(0, 215, 0); | |
53 } | |
54 | |
55 tr.action-preconnect td { | |
56 background-color: rgb(255, 215, 0); | |
57 } | |
58 | |
59 tr.action-none td { | |
60 background-color: rgb(215, 215, 215); | |
61 } | |
OLD | NEW |