| 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 .screen-horizontal-splitter { | |
| 9 background: -webkit-linear-gradient(rgba(128,128,128,0), | |
| 10 rgba(128,128,128,0.3)); | |
| 11 height: 10px; | |
| 12 width: 100%; | |
| 13 } | |
| 14 | |
| 15 #managed-user-creation-flow { | 8 #managed-user-creation-flow { |
| 16 height: 488px; | 9 height: 488px; |
| 17 padding: 70px 17px 50px; | 10 padding: 70px 17px 50px; |
| 18 width: 704px; | 11 width: 704px; |
| 19 } | 12 } |
| 20 | 13 |
| 21 #managed-user-creation-flow-intro-title { | 14 #managed-user-creation-flow-intro-title { |
| 22 font-size: x-large; | 15 font-size: x-large; |
| 23 text-align: center; | 16 text-align: center; |
| 24 } | 17 } |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 | 135 |
| 143 .manager-pod .managed-user-creation-flow-manager-name { | 136 .manager-pod .managed-user-creation-flow-manager-name { |
| 144 color: #000; | 137 color: #000; |
| 145 font-size: small; | 138 font-size: small; |
| 146 } | 139 } |
| 147 .manager-pod .managed-user-creation-flow-manager-wrong-password { | 140 .manager-pod .managed-user-creation-flow-manager-wrong-password { |
| 148 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; | 141 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; |
| 149 color: red; | 142 color: red; |
| 150 padding-left: 28px; | 143 padding-left: 28px; |
| 151 } | 144 } |
| OLD | NEW |