| 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 136 | 129 |
| 137 .manager-pod .managed-user-creation-flow-manager-name { | 130 .manager-pod .managed-user-creation-flow-manager-name { |
| 138 color: #000; | 131 color: #000; |
| 139 font-size: small; | 132 font-size: small; |
| 140 } | 133 } |
| 141 .manager-pod .managed-user-creation-flow-manager-wrong-password { | 134 .manager-pod .managed-user-creation-flow-manager-wrong-password { |
| 142 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; | 135 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; |
| 143 color: red; | 136 color: red; |
| 144 padding-left: 28px; | 137 padding-left: 28px; |
| 145 } | 138 } |
| OLD | NEW |