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