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

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: Addresses CSS and style comments. 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 .destination-list-item {
6 -webkit-transition: background-color 150ms;
7 cursor: default;
8 padding: 3px 2px 3px 18px;
9 }
10
11 .destination-list-item:hover {
12 background-color: rgb(228, 236, 247);
13 }
14
15 .destination-list-item-icon {
16 -webkit-transition: opacity 150ms;
17 display: inline-block;
18 height: 24px;
19 margin-right: 8px;
20 opacity: .4;
21 vertical-align: middle;
22 width: 24px;
23 }
24
25 .destination-list-item:hover .destination-list-item-icon {
26 opacity: 1;
27 }
28
29 .destination-list-item-name {
30 vertical-align: middle;
31 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698