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

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

Issue 10836286: [cros] Fix error bubble fading on new OOBE. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 } 329 }
330 330
331 /* Have to add attribute selector here otherwise style html[oobe=old] .step 331 /* Have to add attribute selector here otherwise style html[oobe=old] .step
332 has more points. */ 332 has more points. */
333 html[oobe=old] .faded, 333 html[oobe=old] .faded,
334 html[oobe=old] .left, 334 html[oobe=old] .left,
335 html[oobe=old] .right { 335 html[oobe=old] .right {
336 opacity: 0; 336 opacity: 0;
337 } 337 }
338 338
339 html[oobe=new] .step.faded, 339 html[oobe=new] .faded,
340 html[oobe=new] .step.left, 340 html[oobe=new] .left,
341 html[oobe=new] .step.right { 341 html[oobe=new] .right {
342 opacity: 0; 342 opacity: 0;
343 } 343 }
344 344
345 html[oobe=new] .step.right { 345 html[oobe=new] .step.right {
346 -webkit-transform: translateX(50px); 346 -webkit-transform: translateX(50px);
347 } 347 }
348 348
349 html[oobe=new] .step.left { 349 html[oobe=new] .step.left {
350 -webkit-transform: translateX(-50px) 350 -webkit-transform: translateX(-50px)
351 } 351 }
(...skipping 970 matching lines...) Expand 10 before | Expand all | Expand 10 after
1322 width: 100%; 1322 width: 100%;
1323 } 1323 }
1324 1324
1325 .background-initial { 1325 .background-initial {
1326 opacity: 0; 1326 opacity: 0;
1327 } 1327 }
1328 1328
1329 .background-final { 1329 .background-final {
1330 opacity: 1; 1330 opacity: 1;
1331 } 1331 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698