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 { | 8 .screen-horizontal-splitter { |
9 background: -webkit-linear-gradient(rgba(128,128,128,0), | 9 background: -webkit-linear-gradient(rgba(128,128,128,0), |
10 rgba(128,128,128,0.3)); | 10 rgba(128,128,128,0.3)); |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 } | 58 } |
59 | 59 |
60 #managed-user-creation-flow-password { | 60 #managed-user-creation-flow-password { |
61 padding: 4px 6px; | 61 padding: 4px 6px; |
62 } | 62 } |
63 #managed-user-creation-flow-password-confirm { | 63 #managed-user-creation-flow-password-confirm { |
64 margin-top: 12px; | 64 margin-top: 12px; |
65 padding: 4px 6px; | 65 padding: 4px 6px; |
66 } | 66 } |
67 | 67 |
68 #managed-user-creation-flow-password-error { | |
69 height: 16px; | |
70 margin-top: 10px; | |
71 } | |
72 | |
73 #managed-user-creation-flow-name-error, | 68 #managed-user-creation-flow-name-error, |
74 #managed-user-creation-flow-password-error { | 69 #managed-user-creation-flow-password-error { |
75 visibility: hidden; | 70 visibility: hidden; |
76 } | 71 } |
77 | 72 |
78 #managed-user-creation-flow-name-error.error, | 73 #managed-user-creation-flow-name-error.error, |
79 #managed-user-creation-flow-password-error.error { | 74 #managed-user-creation-flow-password-error.error { |
80 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; | 75 color: rgb(207, 93, 70); |
81 color: red; | |
82 padding-left: 28px; | 76 padding-left: 28px; |
83 visibility: visible; | 77 visibility: visible; |
84 } | 78 } |
85 | 79 |
86 #managed-user-creation-flow-managers-pane { | 80 #managed-user-creation-flow-managers-pane { |
87 border: 1px solid #f0f0f0; | 81 border: 1px solid #f0f0f0; |
88 height: 140px; | 82 height: 140px; |
89 margin-top: 6px; | 83 margin-top: 6px; |
90 overflow-y: auto; | 84 overflow-y: auto; |
91 width: 645px; | 85 width: 645px; |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
142 | 136 |
143 .manager-pod .managed-user-creation-flow-manager-name { | 137 .manager-pod .managed-user-creation-flow-manager-name { |
144 color: #000; | 138 color: #000; |
145 font-size: small; | 139 font-size: small; |
146 } | 140 } |
147 .manager-pod .managed-user-creation-flow-manager-wrong-password { | 141 .manager-pod .managed-user-creation-flow-manager-wrong-password { |
148 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; | 142 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat; |
149 color: red; | 143 color: red; |
150 padding-left: 28px; | 144 padding-left: 28px; |
151 } | 145 } |
OLD | NEW |