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