| Index: chrome/browser/resources/print_preview/search/destination_list_item.css
|
| diff --git a/chrome/browser/resources/print_preview/search/destination_list_item.css b/chrome/browser/resources/print_preview/search/destination_list_item.css
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..25d2dc2b25043eddfeb927b2dbd52c828c56efff
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/print_preview/search/destination_list_item.css
|
| @@ -0,0 +1,34 @@
|
| +/* 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-list-item {
|
| + -webkit-padding-end: 2px;
|
| + -webkit-padding-start: 18px;
|
| + -webkit-transition: background-color 150ms;
|
| + cursor: default;
|
| + padding-bottom: 3px;
|
| + padding-top: 3px;
|
| +}
|
| +
|
| +.destination-list-item:hover {
|
| + background-color: rgb(228, 236, 247);
|
| +}
|
| +
|
| +.destination-list-item-icon {
|
| + -webkit-margin-end: 8px;
|
| + -webkit-transition: opacity 150ms;
|
| + display: inline-block;
|
| + height: 24px;
|
| + opacity: 0.4;
|
| + vertical-align: middle;
|
| + width: 24px;
|
| +}
|
| +
|
| +.destination-list-item:hover .destination-list-item-icon {
|
| + opacity: 1;
|
| +}
|
| +
|
| +.destination-list-item-name {
|
| + vertical-align: middle;
|
| +}
|
|
|