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

Side by Side Diff: chrome/browser/resources/print_preview/search/destination_search.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-search {
6 z-index: 3;
7 }
8
9 .destination-search.transparent {
10 opacity: 0;
11 pointer-events: none;
12 }
13
14 .destination-search-page {
15 height: 640px;
16 width: 700px;
17 }
18
19 .destination-search-user-info {
20 -webkit-user-select: none;
21 position: absolute;
22 right: 80px;
23 top: 16px;
24 white-space: nowrap;
25 }
26
27 .destination-search-search-box-container {
28 -webkit-user-select: none;
29 margin: 14px;
30 }
31
32 .destination-search-lists {
33 -webkit-box-flex: 1;
34 overflow-y: auto;
35 }
36
37 .destination-search-recent-list,
38 .destination-search-local-list,
39 .destination-search-cloud-list {
40 -webkit-user-select: none;
41 padding: 0 14px 18px;
42 }
43
44 .destination-search-cloudprint-promo {
45 -webkit-user-select: none;
46 background-color: rgb(249, 237, 190);
47 padding: 12px 44px 12px 12px;
48 position: relative;
49 }
50
51 .destination-search-cloudprint-promo > * {
52 vertical-align: middle;
53 }
54
55 .destination-search-sign-in.link-button {
56 padding: inherit;
57 }
58
59 .destination-search-cloud-icon {
60 display: inline-block;
61 height: 24px;
62 margin-right: 4px;
63 width: 24px;
64 }
65
66 .destination-search-cloudprint-promo-close-button {
67 background-image: url(chrome://resources/images/x.png);
68 height: 24px;
69 margin-top: -9px;
70 position: absolute;
71 right: 10px;
72 top: 50%;
73 width: 24px;
74 }
75
76 .destination-search-cloudprint-promo-close-button:hover {
77 background-image: url(chrome://resources/images/x-hover.png);
78 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698