Chromium Code Reviews| Index: chrome/browser/resources/print_preview/settings/destination_settings.css |
| diff --git a/chrome/browser/resources/print_preview/settings/destination_settings.css b/chrome/browser/resources/print_preview/settings/destination_settings.css |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..70e4bfa208f77a5fdb3b305dac0cc0c1fdc1fd9b |
| --- /dev/null |
| +++ b/chrome/browser/resources/print_preview/settings/destination_settings.css |
| @@ -0,0 +1,62 @@ |
| +/* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| + * Use of this source code is governed by a BSD-style license that can be |
| + * found in the LICENSE file. |
| + */ |
| + |
| +.destination-settings-box { |
| + display: -webkit-box; |
| +} |
| + |
| +.destination-settings-icon { |
| + height: 32px; |
| + margin-right: 8px; |
|
Dan Beam
2012/05/29 21:25:50
same question about RTL
Robert Toscano
2012/05/30 21:08:00
Done.
|
| + 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.
|
| + width: 32px; |
| +} |
| + |
| +.destination-settings-icon-local { |
| + background-image: url(images/classic_printer_32.png); |
| +} |
| + |
| +.destination-settings-icon-cloud { |
| + background-image: url(images/cloud_printer_32.png); |
| +} |
| + |
| +.destination-settings-icon-cloud-shared { |
| + background-image: url(images/cloud_printer_shared_32.png); |
| +} |
| + |
| +.destination-settings-icon-google-promoted { |
| + background-image: url(images/google_promoted_printer_32.png); |
| +} |
| + |
| +.destination-settings-icon-mobile { |
| + background-image: url(images/mobile_32.png); |
| +} |
| + |
| +.destination-settings-icon-mobile-shared { |
| + background-image: url(images/mobile_shared_32.png); |
| +} |
| + |
| +.destination-settings-info { |
| + -webkit-box-flex: 1; |
| + position: relative; |
| + white-space: nowrap; |
| +} |
| + |
| +.destination-settings-name { |
| + font-size: 110%; |
| + overflow: hidden; |
| + position: absolute; |
| + text-overflow: ellipsis; |
| + width: 100%; |
| +} |
| + |
| +.destination-settings-location { |
| + color: gray; |
| + overflow: hidden; |
| + position: absolute; |
| + text-overflow: ellipsis; |
| + top: 1.5em; |
| + width: 100%; |
| +} |