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

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: . 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 .custom-gaia-button {
554 background: transparent none;
555 background-position: center;
556 background-repeat: no-repeat;
557 border-radius: 50%;
558 height: 24px;
559 position: absolute;
560 top: 10px;
561 width: 24px;
562 z-index: 1;
563 }
564
565 .custom-gaia-button:hover {
566 cursor: pointer;
567 }
568
569 .custom-gaia-button:focus {
570 background: rgba(0,0,0,.16);
571 background-position: center;
572 background-repeat: no-repeat;
573 opacity: 0.75;
574 }
575
576 /* Even more specificity than button.custom-appearance:focus:focus */
577 .custom-gaia-button:focus:focus:focus {
578 border-color: transparent;
579 }
580
581 .custom-gaia-button:active {
582 background: rgba(0,0,0,.12);
583 background-position: center;
584 background-repeat: no-repeat;
585 opacity: 1.0;
586 }
587
588 #supervised-user-creation-close-button-item {
589 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_ON_WHITE);
590 right: 10px;
591 }
592
593 html[dir=rtl] #supervised-user-creation-close-button-item {
594 left: 10px;
595 right: auto;
596 }
597
598 #supervised-user-creation-close-button-item:disabled {
599 background-image: url(chrome://theme/IDR_LOGIN_CLOSE_BUTTTON_MASKED);
600 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698