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

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

Issue 7562008: Add new version of enrollment screen supporting OAuth. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase, fix nit. Created 9 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
OLDNEW
1 /* Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 /* Copyright (c) 2011 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 */ 6 */
7 7
8 html, 8 html,
9 body { 9 body {
10 height: 100%; 10 height: 100%;
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 221
222 #footer button { 222 #footer button {
223 display: none; 223 display: none;
224 height: 29px; 224 height: 29px;
225 } 225 }
226 226
227 #oobe.connect #continue-button, 227 #oobe.connect #continue-button,
228 #oobe.eula #back-button, 228 #oobe.eula #back-button,
229 #oobe.eula #accept-button, 229 #oobe.eula #accept-button,
230 #oobe.signin #signin-button, 230 #oobe.signin #signin-button,
231 #oobe.user-image #ok-button { 231 #oobe.user-image #ok-button,
232 #oobe.oauth-enrollment #oauth-enroll-cancel-button,
233 #oobe.oauth-enrollment #oauth-enroll-done-button {
232 display: inline-block; 234 display: inline-block;
233 } 235 }
234 236
235 #oobe.connect #connect-dot, 237 #oobe.connect #connect-dot,
236 #oobe.eula #eula-dot, 238 #oobe.eula #eula-dot,
237 #oobe.signin #signin-dot, 239 #oobe.signin #signin-dot,
240 #oobe.gaia-signin #gaia-signin-dot,
238 #oobe.enrollment #signin-dot, 241 #oobe.enrollment #signin-dot,
242 #oobe.enrollment #gaia-signin-dot,
243 #oobe.oauth-enrollment #signin-dot,
244 #oobe.oauth-enrollment #gaia-signin-dot,
239 #oobe.user-image #user-image-dot { 245 #oobe.user-image #user-image-dot {
240 opacity: 0.4; 246 opacity: 0.4;
241 } 247 }
242 248
243 #enrollment-dot { 249 #enrollment-dot,
250 #oauth-enrollment-dot {
244 display: none; 251 display: none;
245 } 252 }
246 253
247 #connect table { 254 #connect table {
248 margin: 7em auto; 255 margin: 7em auto;
249 } 256 }
250 257
251 #security-info { 258 #security-info {
252 bottom: 10px; 259 bottom: 10px;
253 position: absolute; 260 position: absolute;
(...skipping 181 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 #enroll-confirmation-image { 442 #enroll-confirmation-image {
436 vertical-align: middle; 443 vertical-align: middle;
437 } 444 }
438 445
439 #enroll-confirmation-footer { 446 #enroll-confirmation-footer {
440 bottom: 0; 447 bottom: 0;
441 text-align: end; 448 text-align: end;
442 width: 100%; 449 width: 100%;
443 } 450 }
444 451
452 /* Styling for OAuth enrollment screen. */
453
454 #oauth-enroll-container {
455 bottom: 0;
456 display: -webkit-box;
457 left: 0;
458 position: absolute;
459 right: 0;
460 top: 0;
461 }
462
463 #oauth-enroll-signin-frame {
464 bottom: 0;
465 display: -webkit-box;
466 height: 100%;
467 left: 0;
468 position: absolute;
469 right: 0;
470 top: 0;
471 width: 100%;
472 }
473
474 .oauth-enroll-step-center {
475 display: table;
476 height: 100%;
477 margin: 0 auto;
478 }
479
480 .oauth-enroll-step-content {
481 display: table-cell;
482 vertical-align: middle;
483 }
484
485 .oauth-enroll-step-icon {
486 display: inline-block;
487 position: relative;
488 top: 0.5em;
489 vertical-align: top;
490 }
491
492 .oauth-enroll-step-icon > * {
493 display: inline-block;
494 height: 22px;
495 margin-right: .4em;
496 position: relative;
497 top: -11px;
498 width: 22px;
499 }
500
501 .oauth-enroll-step-message {
502 display: inline-block;
503 max-width: 400px;
504 text-align: left;
505 vertical-align: top;
506 }
507
508 #oauth-enroll-error-retry {
509 color: -webkit-link;
510 cursor: pointer;
511 text-decoration: underline;
512 }
513
514 @-webkit-keyframes oauth-enroll-spinner {
515 /* There are 13 animation steps, the numbers below space them evenly. Note
516 * that a steps(13) declaration produces off-by-one offsets for some frames,
517 * so for best results we specify positions explicity and use step-end. */
518 0% { background-position: 286px 0px; }
519 7.6923076% { background-position: 264px 0px; }
520 15.3846153% { background-position: 242px 0px; }
521 23.0769230% { background-position: 220px 0px; }
522 30.7692307% { background-position: 198px 0px; }
523 38.4615384% { background-position: 176px 0px; }
524 46.1538461% { background-position: 154px 0px; }
525 53.8461538% { background-position: 132px 0px; }
526 61.5384615% { background-position: 110px 0px; }
527 69.2307692% { background-position: 88px 0px; }
528 76.9230769% { background-position: 66px 0px; }
529 84.6153846% { background-position: 44px 0px; }
530 92.3076923% { background-position: 22px 0px; }
531 100.0000000% { background-position: 0px 0px; }
532 }
533
534 .oauth-enroll-spinner {
535 -webkit-animation: oauth-enroll-spinner 1s step-end infinite;
536 background-image: url('chrome://theme/IDR_SPINNER');
537 height: 22px;
538 width: 22px;
539 }
540
445 #close-button.visible { 541 #close-button.visible {
446 display: inline-block; 542 display: inline-block;
447 } 543 }
448 544
449 #bubble { 545 #bubble {
450 -webkit-transition: 0.25s opacity; 546 -webkit-transition: 0.25s opacity;
451 } 547 }
452 548
453 #login-header-bar { 549 #login-header-bar {
454 padding: 8px; 550 padding: 8px;
(...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after
663 } 759 }
664 760
665 .dropdown-overlay { 761 .dropdown-overlay {
666 bottom: 0; 762 bottom: 0;
667 left: 0; 763 left: 0;
668 position: fixed; 764 position: fixed;
669 right: 0; 765 right: 0;
670 top: 0; 766 top: 0;
671 z-index: 5; 767 z-index: 5;
672 } 768 }
OLDNEW
« no previous file with comments | « chrome/browser/policy/browser_policy_connector.cc ('k') | chrome/browser/resources/chromeos/login/oobe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698