| 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..9d732d8c216d7daf606422f183e3b2622dfbbb80
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/print_preview/settings/destination_settings.css
|
| @@ -0,0 +1,61 @@
|
| +/* 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 {
|
| + -webkit-margin-end: 8px;
|
| + height: 32px;
|
| + opacity: 0.4;
|
| + 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%;
|
| +}
|
|
|