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

Side by Side Diff: chrome/browser/resources/login/screen_container.css

Issue 252503002: Base version of HID detection OOBE screen. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Logic bug-fix. Progress dots hidden. Style improved. BT names support. Created 6 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
1 /* Copyright 2014 The Chromium Authors. All rights reserved. 1 /* Copyright 2014 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 5
6 #outer-container { 6 #outer-container {
7 -webkit-box-align: center; 7 -webkit-box-align: center;
8 -webkit-box-pack: center; 8 -webkit-box-pack: center;
9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */ 9 -webkit-perspective: 1px; /* Workaround, see http://crbug.com/360567 */
10 bottom: 51px; /* Leave space for the header bar */ 10 bottom: 51px; /* Leave space for the header bar */
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
154 #oobe.eula #eula-dot, 154 #oobe.eula #eula-dot,
155 #oobe.gaia-signin #gaia-signin-dot, 155 #oobe.gaia-signin #gaia-signin-dot,
156 #oobe.oauth-enrollment #gaia-signin-dot, 156 #oobe.oauth-enrollment #gaia-signin-dot,
157 #oobe.oauth-enrollment #signin-dot, 157 #oobe.oauth-enrollment #signin-dot,
158 #oobe.signin #signin-dot, 158 #oobe.signin #signin-dot,
159 #oobe.update #update-dot, 159 #oobe.update #update-dot,
160 #oobe.user-image #user-image-dot { 160 #oobe.user-image #user-image-dot {
161 opacity: 1; 161 opacity: 1;
162 } 162 }
163 163
164 #oobe.reset #progress-dots { 164 #oobe.reset #progress-dots,
165 #oobe.hid-detection #progress-dots {
165 visibility: hidden; 166 visibility: hidden;
166 } 167 }
167 168
168 body:not(.oobe-display) #inner-container { 169 body:not(.oobe-display) #inner-container {
169 height: 262px; 170 height: 262px;
170 padding: 0; 171 padding: 0;
171 width: 1100px; 172 width: 1100px;
172 } 173 }
173 174
174 body:not(.oobe-display) #progress-dots { 175 body:not(.oobe-display) #progress-dots {
(...skipping 24 matching lines...) Expand all
199 line-height: 31px; 200 line-height: 31px;
200 text-transform: lowercase; 201 text-transform: lowercase;
201 width: 23em; 202 width: 23em;
202 } 203 }
203 204
204 .header-section::before { 205 .header-section::before {
205 /* Divider in header between product name and title, 206 /* Divider in header between product name and title,
206 * like "[Product name] > [step header]". */ 207 * like "[Product name] > [step header]". */
207 content: '\00A0\203A\00A0\00A0'; 208 content: '\00A0\203A\00A0\00A0';
208 } 209 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698