Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |