| 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..56d2c3e11a96cf4f85108efeeb74e8f917b66cb0
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/print_preview/search/destination_list_item.css
|
| @@ -0,0 +1,32 @@
|
| +/* 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-transition: background-color 150ms;
|
| + cursor: default;
|
| + padding: 3px 2px 3px 18px;
|
| +}
|
| +
|
| +.destination-list-item:hover {
|
| + background-color: rgb(228, 236, 247);
|
| +}
|
| +
|
| +.destination-list-item-icon {
|
| + -webkit-transition: opacity 150ms;
|
| + display: inline-block;
|
| + height: 24px;
|
| + margin-right: 8px;
|
| + opacity: .4;
|
| + vertical-align: middle;
|
| + width: 24px;
|
| +}
|
| +
|
| +.destination-list-item:hover .destination-list-item-icon {
|
| + opacity: 1;
|
| +}
|
| +
|
| +.destination-list-item-name {
|
| + vertical-align: middle;
|
| +}
|
|
|