| 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 .destination-list-item { |
| 7 -webkit-transition: background-color 150ms; |
| 8 cursor: default; |
| 9 padding: 3px 2px 3px 18px; |
| 10 } |
| 11 |
| 12 .destination-list-item:hover { |
| 13 background-color: rgb(228, 236, 247); |
| 14 } |
| 15 |
| 16 .destination-list-item-icon { |
| 17 -webkit-transition: opacity 150ms; |
| 18 display: inline-block; |
| 19 height: 24px; |
| 20 margin-right: 8px; |
| 21 opacity: .4; |
| 22 vertical-align: middle; |
| 23 width: 24px; |
| 24 } |
| 25 |
| 26 .destination-list-item:hover .destination-list-item-icon { |
| 27 opacity: 1; |
| 28 } |
| 29 |
| 30 .destination-list-item-name { |
| 31 vertical-align: middle; |
| 32 } |
| OLD | NEW |