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

Side by Side Diff: chrome/browser/resources/managed_user_passphrase_dialog.css

Issue 11783008: Add a lock to the managed user settings page and require authentication for unlocking. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Several fixes Created 7 years, 11 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
(Empty)
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 #managed-mode-passphrase-page {
6 min-width: 350px;
7 }
8
9 #chrome-kid-logo {
10 background-image: url('chrome_kid.png');
11 height: 68px;
12 width: 65px;
13 }
14
15 #instructions,
16 #entry {
17 padding: 5px 15px;
18 }
19
20 #unlock {
21 float: right;
22 }
23
24 #buttons {
25 padding: 15px 15px;
26 }
27
28 #passphrase-entry:invalid {
29 background-color: pink;
30 }
31
32 #incorrect-passphrase-warning {
33 color: red;
34 font-weight: bold;
35 padding: 5px 15px;
Bernhard Bauer 2013/01/08 17:43:14 Can you move this into the selector above as well?
Adrian Kuegel 2013/01/09 12:10:05 Done.
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698