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

Side by Side Diff: chrome/browser/resources/chromeos/login/screen_locally_managed_user_creation.css

Issue 17302003: Use bubbles for error reporting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
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 #managed-user-creation { 8 #managed-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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 } 140 }
141 141
142 #managed-user-creation-password { 142 #managed-user-creation-password {
143 padding: 4px 6px; 143 padding: 4px 6px;
144 } 144 }
145 #managed-user-creation-password-confirm { 145 #managed-user-creation-password-confirm {
146 margin-top: 12px; 146 margin-top: 12px;
147 padding: 4px 6px; 147 padding: 4px 6px;
148 } 148 }
149 149
150 #managed-user-creation-name-error, 150 #managed-user-creation-name-error {
151 #managed-user-creation-password-error {
152 visibility: hidden; 151 visibility: hidden;
153 } 152 }
154 153
155 #managed-user-creation-name-error.error, 154 #managed-user-creation-name-error.error {
156 #managed-user-creation-password-error.error {
157 color: rgb(207, 93, 70); 155 color: rgb(207, 93, 70);
158 padding-left: 28px; 156 padding-left: 28px;
159 visibility: visible; 157 visibility: visible;
160 } 158 }
161 159
162 #managed-user-creation-managers-block { 160 #managed-user-creation-managers-block {
163 -webkit-flex-direction: column; 161 -webkit-flex-direction: column;
164 display: -webkit-flex; 162 display: -webkit-flex;
165 height: 100%; 163 height: 100%;
166 } 164 }
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 216
219 .manager-pod .managed-user-creation-manager-email { 217 .manager-pod .managed-user-creation-manager-email {
220 color: #666; 218 color: #666;
221 font-size: small; 219 font-size: small;
222 } 220 }
223 221
224 .manager-pod .managed-user-creation-manager-name { 222 .manager-pod .managed-user-creation-manager-name {
225 color: #000; 223 color: #000;
226 font-size: small; 224 font-size: small;
227 } 225 }
228 .manager-pod .managed-user-creation-manager-wrong-password {
229 background: url('chrome://theme/IDR_WARNING') left top /24px no-repeat;
230 color: red;
231 padding-left: 28px;
232 }
233 226
234 #managed-user-creation-status { 227 #managed-user-creation-status {
235 margin: 4px 10px; 228 margin: 4px 10px;
236 } 229 }
237 230
238 #managed-user-creation-status .error { 231 #managed-user-creation-status .error {
239 color: rgb(207, 93, 70); 232 color: rgb(207, 93, 70);
240 } 233 }
241 234
242 #managed-user-creation-status .id-text { 235 #managed-user-creation-status .id-text {
243 margin-top: 2px; 236 margin-top: 2px;
244 } 237 }
245 238
246 .manager-pod.focused { 239 .manager-pod.focused {
247 background-color: rgb(66, 129, 244); 240 background-color: rgb(66, 129, 244);
248 opacity: 1; 241 opacity: 1;
249 } 242 }
250 243
251 .manager-pod.focused .managed-user-creation-manager-email { 244 .manager-pod.focused .managed-user-creation-manager-email {
252 color: #fff; 245 color: #fff;
253 } 246 }
254 247
255 .manager-pod.focused .managed-user-creation-manager-name { 248 .manager-pod.focused .managed-user-creation-manager-name {
256 color: #fff; 249 color: #fff;
257 } 250 }
258 251
252 .manager-pod .password-error,
253 #managed-user-creation .password-error {
254 border: 1px solid red !important;
255 }
OLDNEW
« no previous file with comments | « chrome/app/chromeos_strings.grdp ('k') | chrome/browser/resources/chromeos/login/screen_locally_managed_user_creation.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698