| OLD | NEW |
| 1 /* Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2013 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 Locally managed user creation flow screen. | 5 * This is the stylesheet used by the Locally managed user creation flow screen. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #managed-user-creation { | 8 #managed-user-creation { |
| 9 height: 609px; /* Same size as GAIA sign in screen.*/ | 9 height: 609px; /* Same size as GAIA sign in screen.*/ |
| 10 padding: 0 0; /* Some screens have elements right next to borders. */ | 10 padding: 0 0; /* Some screens have elements right next to borders. */ |
| (...skipping 485 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 } | 496 } |
| 497 | 497 |
| 498 .camera.live.online #managed-user-creation-take-photo { | 498 .camera.live.online #managed-user-creation-take-photo { |
| 499 background: url('chrome://theme/IDR_USER_IMAGE_CAPTURE') | 499 background: url('chrome://theme/IDR_USER_IMAGE_CAPTURE') |
| 500 no-repeat center -1px; | 500 no-repeat center -1px; |
| 501 display: block; | 501 display: block; |
| 502 } | 502 } |
| 503 | 503 |
| 504 #managed-user-creation-image-preview .perspective-box { | 504 #managed-user-creation-image-preview .perspective-box { |
| 505 -webkit-perspective: 600px; | 505 -webkit-perspective: 600px; |
| 506 border: solid 1px #cacaca; |
| 507 border-radius: 4px; |
| 508 padding: 2px; |
| 509 width: 220px; |
| 506 } | 510 } |
| 507 | 511 |
| 508 .managed-user-creation-image-stream-area .spinner { | 512 .managed-user-creation-image-stream-area .spinner { |
| 509 display: none; | 513 display: none; |
| 510 height: 44px; | 514 height: 44px; |
| 511 left: 50%; | 515 left: 50%; |
| 512 margin-left: -22px; | 516 margin-left: -22px; |
| 513 margin-top: -22px; | 517 margin-top: -22px; |
| 514 position: absolute; | 518 position: absolute; |
| 515 top: 50%; | 519 top: 50%; |
| 516 width: 44px; | 520 width: 44px; |
| 517 } | 521 } |
| 518 | 522 |
| 519 .camera.live:not(.online) .managed-user-creation-image-stream-area .spinner { | 523 .camera.live:not(.online) .managed-user-creation-image-stream-area .spinner { |
| 520 display: block; | 524 display: block; |
| 521 } | 525 } |
| OLD | NEW |