OLD | NEW |
(Empty) | |
| 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 |
| 3 * found in the LICENSE file. |
| 4 */ |
| 5 |
| 6 #connection-history-dialog { |
| 7 margin-top: -80px; |
| 8 height: 580px; |
| 9 width: 880px; |
| 10 } |
| 11 |
| 12 #connection-history-options { |
| 13 margin-top: 30px; |
| 14 display: -webkit-box; |
| 15 } |
| 16 |
| 17 #connection-history-scroller { |
| 18 margin-top: 30px; |
| 19 height: 370px; |
| 20 width: 100%; |
| 21 overflow: auto; |
| 22 } |
| 23 |
| 24 #connection-history-table { |
| 25 width: 100%; |
| 26 line-height: 2.1; |
| 27 border-bottom: 1px solid #ebebeb; |
| 28 } |
| 29 |
| 30 #connection-history-table td:last-child { |
| 31 text-align: right; |
| 32 } |
| 33 |
| 34 #connection-history-table thead td { |
| 35 font-weight: bold; |
| 36 } |
| 37 |
| 38 #close-connection-history { |
| 39 position: absolute; |
| 40 bottom: 0; |
| 41 __MSG_@@bidi_end_edge__: 0; |
| 42 } |
| 43 |
| 44 .internal-frame-of-reference { |
| 45 position: relative; |
| 46 width: 100%; |
| 47 height: 100%; |
| 48 } |
| 49 |
| 50 .link-list > a { |
| 51 margin-right: 16px; |
| 52 } |
| 53 |
| 54 a.no-link { |
| 55 color: inherit; |
| 56 cursor: inherit; |
| 57 } |
| 58 |
| 59 .no-expand { |
| 60 width: 1px; |
| 61 padding-right: 20px; |
| 62 } |
| 63 |
| 64 .connection-history-summary td { |
| 65 border-top: 1px solid #EBEBEB; |
| 66 } |
| 67 |
| 68 .connection-history-summary:hover, |
| 69 .connection-history-summary.expanded, |
| 70 .connection-history-summary.expanded + .connection-history-detail { |
| 71 background-color: #f8f8f8; |
| 72 } |
| 73 |
| 74 .connection-history-detail td div { |
| 75 height: 0; |
| 76 overflow: hidden; |
| 77 } |
| 78 |
| 79 .connection-history-summary.expanded + .connection-history-detail td div { |
| 80 height: auto; |
| 81 } |
| 82 |
| 83 .connection-history-summary.expanded .zippy { |
| 84 background-image: url('disclosure_arrow_down.png'); |
| 85 } |
| 86 |
| 87 .zippy { |
| 88 width: 30px; |
| 89 height: 11px; |
| 90 background-image: url('disclosure_arrow_right.png'); |
| 91 background-repeat: no-repeat; |
| 92 background-position: 10px 50%; |
| 93 } |
OLD | NEW |