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

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: Set --bary flag 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 [dir='rtl'] .destination-search-user-info {
28 left: 80px;
29 right: auto;
30 }
31
32 .destination-search-search-box-container {
33 -webkit-user-select: none;
34 margin: 14px;
35 }
36
37 .destination-search-lists {
38 -webkit-box-flex: 1;
39 overflow-y: auto;
40 }
41
42 .destination-search-recent-list,
43 .destination-search-local-list,
44 .destination-search-cloud-list {
45 -webkit-user-select: none;
46 padding: 0 14px 18px;
47 }
48
49 .destination-search-cloudprint-promo {
50 -webkit-padding-end: 44px;
51 -webkit-padding-start: 12px;
52 -webkit-user-select: none;
53 background-color: rgb(249, 237, 190);
54 padding-bottom: 12px;
55 padding-top: 12px;
56 position: relative;
57 }
58
59 .destination-search-cloudprint-promo > * {
60 vertical-align: middle;
61 }
62
63 .destination-search-sign-in.link-button {
64 padding: inherit;
65 }
66
67 .destination-search-cloud-icon {
68 -webkit-margin-end: 4px;
69 display: inline-block;
70 height: 24px;
71 width: 24px;
72 }
73
74 .destination-search-cloudprint-promo-close-button {
75 background-image: url(chrome://resources/images/x.png);
76 height: 24px;
77 margin-top: -9px;
78 position: absolute;
79 right: 10px;
80 top: 50%;
81 width: 24px;
82 }
83
84 [dir='rtl'] .destination-search-cloudprint-promo-close-button {
85 left: 10px;
86 right: auto;
87 }
88
89 .destination-search-cloudprint-promo-close-button:hover {
90 background-image: url(chrome://resources/images/x-hover.png);
91 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698