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

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

Issue 1131683004: Add close button to the supervised user pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: linebreak closing tag Created 5 years, 7 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
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 * 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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698