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 cursor: default; |
| 8 padding: 3px 2px 3px 18px; |
| 9 -webkit-transition: background-color 150ms; |
| 10 } |
| 11 |
| 12 .destination-list-item:hover { |
| 13 background-color: #E4ECF7; |
| 14 } |
| 15 |
| 16 .destination-list-item-icon { |
| 17 display: inline-block; |
| 18 width: 24px; |
| 19 height: 24px; |
| 20 vertical-align: middle; |
| 21 margin-right: 8px; |
| 22 opacity: .4; |
| 23 } |
| 24 |
| 25 .destination-list-item:hover .destination-list-item-icon { |
| 26 opacity: 1; |
| 27 } |
| 28 |
| 29 .destination-list-item-icon-local { |
| 30 background-image: url(images/classic_printer_24.png); |
| 31 } |
| 32 |
| 33 .destination-list-item-icon-cloud { |
| 34 background-image: url(images/cloud_printer_24.png); |
| 35 } |
| 36 |
| 37 .destination-list-item-icon-google-sponsored { |
| 38 background-image: |
| 39 url(images/google_sponsored_printer_24.png); |
| 40 } |
| 41 |
| 42 .destination-list-item-name { |
| 43 vertical-align: middle; |
| 44 } |
OLD | NEW |