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

Side by Side Diff: chrome/browser/resources/chromeos/login/oobe.css

Issue 10692069: HiDPI assets for product_logo_16 / _32 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 5 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
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 * This is the stylesheet used by the Out of the box experience (OOBE) flow, 5 * This is the stylesheet used by the Out of the box experience (OOBE) flow,
6 * sign in and lock screens. 6 * sign in and lock screens.
7 */ 7 */
8 8
9 html, 9 html,
10 body { 10 body {
(...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after
125 rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0)); 125 rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
126 border-bottom: 1px solid rgba(0, 0, 0, 0.5); 126 border-bottom: 1px solid rgba(0, 0, 0, 0.5);
127 height: 4px; 127 height: 4px;
128 z-index: 0; 128 z-index: 0;
129 } 129 }
130 130
131 #header { 131 #header {
132 -webkit-padding-start: 45px; 132 -webkit-padding-start: 45px;
133 background-image: -webkit-image-set( 133 background-image: -webkit-image-set(
134 url('chrome://theme/IDR_PRODUCT_LOGO_32') 1x, 134 url('chrome://theme/IDR_PRODUCT_LOGO_32') 1x,
135 url('chrome://theme/IDR_PRODUCT_LOGO_64') 2x); 135 url('chrome://theme/IDR_PRODUCT_LOGO_32@2x') 2x);
flackr 2012/07/04 12:09:46 This conversion should be automatic, does it not w
Nico 2012/07/04 16:12:42 It would probably work, but for that I'd have to m
flackr 2012/07/04 16:36:21 Can you add a TODO for that? Thanks!
Nico 2012/07/04 16:41:14 Done.
136 background-position: left center; 136 background-position: left center;
137 background-repeat: no-repeat; 137 background-repeat: no-repeat;
138 background-size: 32px; 138 background-size: 32px;
139 color: #666; 139 color: #666;
140 display: -webkit-box; 140 display: -webkit-box;
141 font-size: 23px; 141 font-size: 23px;
142 height: 47px; 142 height: 47px;
143 line-height: 45px; 143 line-height: 45px;
144 padding-top: 1px; 144 padding-top: 1px;
145 } 145 }
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1256 width: 100%; 1256 width: 100%;
1257 } 1257 }
1258 1258
1259 #background-transition { 1259 #background-transition {
1260 height: 100%; 1260 height: 100%;
1261 left: 0; 1261 left: 0;
1262 position: absolute; 1262 position: absolute;
1263 top: 0; 1263 top: 0;
1264 width: 100%; 1264 width: 100%;
1265 } 1265 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698