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

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

Issue 1144983002: Introduce concept of provisional destinations to print preview (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 5 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
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 * Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. */ 3 * found in the LICENSE file. */
4 4
5 #destination-search { 5 #destination-search {
6 z-index: 3; 6 z-index: 3;
7 } 7 }
8 8
9 #destination-search.transparent { 9 #destination-search.transparent {
10 opacity: 0; 10 opacity: 0;
11 overflow: hidden; 11 overflow: hidden;
12 pointer-events: none; 12 pointer-events: none;
13 } 13 }
14 14
15 #destination-search .page { 15 #destination-search > .page {
16 width: 640px; 16 width: 640px;
17 } 17 }
18 18
19 #destination-search .user-info { 19 #destination-search .user-info {
20 display: flex; 20 display: flex;
21 position: absolute; 21 position: absolute;
22 right: 40px; 22 right: 40px;
23 text-align: right; 23 text-align: right;
24 top: 14px; 24 top: 14px;
25 width: 350px; 25 width: 350px;
(...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 background-image: -webkit-image-set( 136 background-image: -webkit-image-set(
137 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x, 137 url(chrome://theme/IDR_CLOSE_DIALOG_H) 1x,
138 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x); 138 url(chrome://theme/IDR_CLOSE_DIALOG_H@2x) 2x);
139 } 139 }
140 140
141 #destination-search .cloudprint-promo .close-button:active { 141 #destination-search .cloudprint-promo .close-button:active {
142 background-image: -webkit-image-set( 142 background-image: -webkit-image-set(
143 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x, 143 url(chrome://theme/IDR_CLOSE_DIALOG_P) 1x,
144 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x); 144 url(chrome://theme/IDR_CLOSE_DIALOG_P@2x) 2x);
145 } 145 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698