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

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

Issue 10108001: Refactor print preview web ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
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 cursor: default;
8 padding: 3px 2px 3px 18px;
9 -webkit-transition: background-color 150ms;
10 }
11
12 .destination-list-item:hover {
13 background-color: #E4ECF7;
14 }
15
16 .destination-list-item-icon {
17 display: inline-block;
18 width: 24px;
19 height: 24px;
20 vertical-align: middle;
21 margin-right: 8px;
22 opacity: .4;
23 }
24
25 .destination-list-item:hover .destination-list-item-icon {
26 opacity: 1;
27 }
28
29 .destination-list-item-icon-local {
30 background-image: url(images/classic_printer_24.png);
31 }
32
33 .destination-list-item-icon-cloud {
34 background-image: url(images/cloud_printer_24.png);
35 }
36
37 .destination-list-item-icon-google-sponsored {
38 background-image:
39 url(images/google_sponsored_printer_24.png);
40 }
41
42 .destination-list-item-name {
43 vertical-align: middle;
44 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698