Home | History | Annotate | Download | only in login
      1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved.
      2  * Use of this source code is governed by a BSD-style license that can be
      3  * found in the LICENSE file.
      4  */
      5 
      6 #password-changed {
      7   height: 570px;
      8   /* Screen has no controls but has padding at the last text message */
      9   padding: 70px 17px 50px;
     10   width: 485px;
     11 }
     12 
     13 #password-changed-contents {
     14   color: #606060;
     15   margin: 20px 60px;
     16 }
     17 
     18 #oobe.password-changed .step-controls {
     19   -webkit-margin-start: 60px;
     20   justify-content: flex-start;
     21 }
     22 
     23 #password-changed-title {
     24   font-weight: bold;
     25 }
     26 
     27 #password-changed-description,
     28 #password-changed-more-info {
     29   margin-top: 25px;
     30 }
     31 
     32 #old-password-block {
     33   margin-top: 45px;
     34 }
     35 
     36 #old-password {
     37   padding: 4px 6px;
     38 }
     39 
     40 #password-changed-link-block {
     41   margin-top: 10px;
     42 }
     43 
     44 #password-changed-contents a {
     45   color: rgb(49, 106, 197);
     46   font-size: 12px;
     47   text-decoration: none;
     48 }
     49 
     50 #password-changed-contents a.disabled {
     51   color: gray;
     52 }
     53 
     54 #password-changed-contents a:focus {
     55   -webkit-transition: outline-color 200ms;
     56   /* Note: May use 1px solid here. */
     57   outline-color: rgb(77, 144, 254);
     58 }
     59 
     60 #password-changed input[type='password']:disabled {
     61   outline-color: rgb(77, 144, 254);
     62 }
     63 
     64 #password-changed-proceed-anyway-warning {
     65   -webkit-padding-start: 30px;
     66   background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat;
     67   margin-top: 50px;
     68 }
     69 
     70 #password-changed.migrate #password-changed-proceed-anyway-warning,
     71 #password-changed.migrate #password-changed-proceed-button {
     72   display: none;
     73 }
     74 
     75 #password-changed.resync #old-password-block,
     76 #password-changed.resync #password-changed-link-block,
     77 #password-changed.resync #password-changed-ok-button {
     78   display: none;
     79 }
     80 
     81 #old-password-error {
     82   color: red;
     83   display: none;
     84   font-size: 12px;
     85   margin-top: 10px;
     86 }
     87 
     88 #password-changed.migrate.password-error #old-password-error {
     89   display: block;
     90 }
     91