OLD | NEW |
(Empty) | |
| 1 /* |
| 2 * Copyright (c) 2011 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 #handlers-column-headers { |
| 8 display: -webkit-box; |
| 9 } |
| 10 |
| 11 .handlers-type-column { |
| 12 width: 100px; |
| 13 -webkit-margin-end: 10px; |
| 14 -webkit-margin-start: 14px; |
| 15 } |
| 16 |
| 17 .handlers-site-column { |
| 18 color: #555; |
| 19 max-width: 180px; |
| 20 } |
| 21 |
| 22 .handlers-site-column select { |
| 23 max-width: 170px; |
| 24 } |
| 25 |
| 26 .handlers-remove-column { |
| 27 -webkit-box-flex: 1; |
| 28 } |
| 29 |
| 30 .handlers-remove-link { |
| 31 color: #555; |
| 32 cursor: pointer; |
| 33 opacity: 0; |
| 34 padding-left: 14px; |
| 35 text-decoration: underline; |
| 36 -webkit-transition: 0.15s opacity; |
| 37 } |
| 38 |
| 39 div > .handlers-remove-column { |
| 40 opacity: 0; |
| 41 } |
| 42 |
| 43 div:hover > .handlers-remove-column { |
| 44 opacity: 1; |
| 45 } |
| 46 |
| 47 #handlers { |
| 48 min-height: 250px; |
| 49 } |
| 50 |
| 51 #handlers-list { |
| 52 border-radius: 2px; |
| 53 border: solid 1px #D9D9D9; |
| 54 margin-bottom: 10px; |
| 55 margin-top: 4px; |
| 56 } |
OLD | NEW |