| 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 .destination-settings-box { |
| 6 display: -webkit-box; |
| 7 } |
| 8 |
| 9 .destination-settings-icon { |
| 10 -webkit-margin-end: 8px; |
| 11 height: 32px; |
| 12 opacity: 0.4; |
| 13 width: 32px; |
| 14 } |
| 15 |
| 16 .destination-settings-icon-local { |
| 17 background-image: url(images/classic_printer_32.png); |
| 18 } |
| 19 |
| 20 .destination-settings-icon-cloud { |
| 21 background-image: url(images/cloud_printer_32.png); |
| 22 } |
| 23 |
| 24 .destination-settings-icon-cloud-shared { |
| 25 background-image: url(images/cloud_printer_shared_32.png); |
| 26 } |
| 27 |
| 28 .destination-settings-icon-google-promoted { |
| 29 background-image: url(images/google_promoted_printer_32.png); |
| 30 } |
| 31 |
| 32 .destination-settings-icon-mobile { |
| 33 background-image: url(images/mobile_32.png); |
| 34 } |
| 35 |
| 36 .destination-settings-icon-mobile-shared { |
| 37 background-image: url(images/mobile_shared_32.png); |
| 38 } |
| 39 |
| 40 .destination-settings-info { |
| 41 -webkit-box-flex: 1; |
| 42 position: relative; |
| 43 white-space: nowrap; |
| 44 } |
| 45 |
| 46 .destination-settings-name { |
| 47 font-size: 110%; |
| 48 overflow: hidden; |
| 49 position: absolute; |
| 50 text-overflow: ellipsis; |
| 51 width: 100%; |
| 52 } |
| 53 |
| 54 .destination-settings-location { |
| 55 color: gray; |
| 56 overflow: hidden; |
| 57 position: absolute; |
| 58 text-overflow: ellipsis; |
| 59 top: 1.5em; |
| 60 width: 100%; |
| 61 } |
| OLD | NEW |