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-settings-icon { |
| 7 width: 32px; |
| 8 height: 32px; |
| 9 display: inline-block; |
| 10 vertical-align: middle; |
| 11 margin-right: 8px; |
| 12 opacity: .4; |
| 13 } |
| 14 |
| 15 .destination-settings-icon-local { |
| 16 background-image: url(images/classic_printer_32.png); |
| 17 } |
| 18 |
| 19 .destination-settings-icon-cloud { |
| 20 background-image: url(images/cloud_printer_32.png); |
| 21 } |
| 22 |
| 23 .destination-settings-icon-google-sponsored { |
| 24 background-image: url(images/google_sponsored_printer_32.png); |
| 25 } |
| 26 |
| 27 .destination-settings-info { |
| 28 display: inline-block; |
| 29 vertical-align: middle; |
| 30 } |
| 31 |
| 32 .destination-settings-name { |
| 33 font-size: 110%; |
| 34 margin-bottom: 4px; |
| 35 } |
OLD | NEW |