OLD | NEW |
---|---|
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 | 5 |
6 #connection-history-dialog { | 6 #connection-history-dialog { |
7 margin-top: -80px; | 7 margin-top: -80px; |
8 height: 580px; | 8 height: 580px; |
9 width: 880px; | 9 width: 880px; |
10 } | 10 } |
11 | 11 |
12 #connection-history-options { | 12 #connection-history-options { |
13 margin-top: 30px; | 13 margin-top: 30px; |
14 display: -webkit-box; | 14 display: -webkit-box; |
15 } | 15 } |
16 | 16 |
17 #connection-history-scroller { | 17 #connection-history-scroller { |
18 margin-top: 30px; | 18 margin-top: 30px; |
19 height: 370px; | 19 height: 370px; |
20 width: 100%; | 20 width: 100%; |
21 overflow: auto; | 21 overflow: auto; |
22 } | 22 } |
23 | 23 |
24 #connection-history-table { | 24 #connection-history-table { |
25 width: 100%; | 25 width: 100%; |
26 line-height: 2.1; | 26 line-height: 2.1; |
27 border-bottom: 1px solid #ebebeb; | 27 border-bottom: 1px solid #ebebeb; |
28 border-collapse: separate; | |
29 border-spacing: 0; | |
Jamie
2012/03/03 01:38:08
Moved from main.css:<table> rule.
| |
28 } | 30 } |
29 | 31 |
30 #connection-history-table td:last-child { | 32 #connection-history-table td:last-child { |
31 text-align: right; | 33 text-align: right; |
32 } | 34 } |
33 | 35 |
34 #connection-history-table thead td { | 36 #connection-history-table thead td { |
35 font-weight: bold; | 37 font-weight: bold; |
36 } | 38 } |
37 | 39 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
79 background-image: url('disclosure_arrow_down.png'); | 81 background-image: url('disclosure_arrow_down.png'); |
80 } | 82 } |
81 | 83 |
82 .zippy { | 84 .zippy { |
83 width: 30px; | 85 width: 30px; |
84 height: 11px; | 86 height: 11px; |
85 background-image: url('disclosure_arrow_right.png'); | 87 background-image: url('disclosure_arrow_right.png'); |
86 background-repeat: no-repeat; | 88 background-repeat: no-repeat; |
87 background-position: 10px 50%; | 89 background-position: 10px 50%; |
88 } | 90 } |
OLD | NEW |