OLD | NEW |
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 * 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 #supervised-user-creation { | 8 #supervised-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 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
542 margin-left: -22px; | 542 margin-left: -22px; |
543 margin-top: -22px; | 543 margin-top: -22px; |
544 position: absolute; | 544 position: absolute; |
545 top: 50%; | 545 top: 50%; |
546 width: 44px; | 546 width: 44px; |
547 } | 547 } |
548 | 548 |
549 .camera.live:not(.online) .supervised-user-creation-image-stream-area .spinner { | 549 .camera.live:not(.online) .supervised-user-creation-image-stream-area .spinner { |
550 display: block; | 550 display: block; |
551 } | 551 } |
| 552 |
| 553 #supervised-user-creation-close-button-item { |
| 554 color: rgba(0, 0, 0, .54); |
| 555 position: absolute; |
| 556 right: 10px; |
| 557 top: 10px; |
| 558 z-index: 1; |
| 559 } |
| 560 |
| 561 html[dir=rtl] #supervised-user-creation-close-button-item { |
| 562 left: 10px; |
| 563 right: auto; |
| 564 } |
OLD | NEW |