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 #managed-mode-passphrase-page { | 5 #managed-mode-passphrase-page { |
6 min-width: 350px; | 6 min-width: 350px; |
| 7 padding: 5px 15px; |
7 } | 8 } |
8 | 9 |
9 #managed-user-logo { | 10 #managed-user-logo { |
10 background-image: url('options/managed_user.png'); | 11 background-image: url('options/managed_user.png'); |
11 height: 68px; | 12 height: 68px; |
12 width: 65px; | 13 width: 65px; |
13 } | 14 } |
14 | 15 |
15 #instructions, | 16 #entry { |
16 #entry, | 17 margin: 15px 0; |
17 #incorrect-passphrase-warning { | 18 } |
18 padding: 5px 15px; | 19 |
| 20 #passphrase-entry { |
| 21 width: 100%; |
19 } | 22 } |
20 | 23 |
21 #buttons { | 24 #buttons { |
22 float: right; | 25 float: right; |
23 } | 26 } |
24 | 27 |
25 html[dir=rtl] #buttons { | 28 html[dir=rtl] #buttons { |
26 float: left; | 29 float: left; |
27 } | 30 } |
28 | 31 |
29 #buttons { | |
30 padding: 15px 15px; | |
31 } | |
32 | |
33 #incorrect-passphrase-warning { | 32 #incorrect-passphrase-warning { |
34 color: red; | 33 color: red; |
35 font-weight: bold; | 34 font-weight: bold; |
36 } | 35 } |
OLD | NEW |