Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(158)

Side by Side Diff: chrome/browser/resources/print_preview/search/destination_list_item.css

Issue 10450022: Print Preview Print Destination Search Widget (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Reduces size of search image. Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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-list-item {
7 -webkit-transition: background-color 150ms;
8 cursor: default;
9 padding: 3px 2px 3px 18px;
10 }
11
12 .destination-list-item:hover {
13 background-color: rgb(228, 236, 247);
14 }
15
16 .destination-list-item-icon {
17 -webkit-transition: opacity 150ms;
18 display: inline-block;
19 height: 24px;
20 margin-right: 8px;
21 opacity: .4;
22 vertical-align: middle;
23 width: 24px;
24 }
25
26 .destination-list-item:hover .destination-list-item-icon {
27 opacity: 1;
28 }
29
30 .destination-list-item-name {
31 vertical-align: middle;
32 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698