Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 * found in the LICENSE file. */ | |
| 4 | |
| 5 #managed-mode-passphrase-page { | |
| 6 min-width: 350px; | |
| 7 } | |
| 8 | |
| 9 #managed-user-logo { | |
| 10 background-image: url('managed_user.png'); | |
| 11 height: 68px; | |
| 12 width: 65px; | |
| 13 } | |
| 14 | |
| 15 #instructions, | |
| 16 #entry, | |
| 17 #incorrect-passphrase-warning { | |
| 18 padding: 5px 15px; | |
| 19 } | |
| 20 | |
| 21 #unlock { | |
| 22 float: right; | |
|
James Hawkins
2013/02/13 21:46:48
Need to handle RTL.
Adrian Kuegel
2013/02/14 10:36:12
I added rtl handling for that button and tested it
James Hawkins
2013/02/15 17:35:55
This isn't a polish issue :-) Please fix it.
Adrian Kuegel
2013/02/16 08:10:50
But I did! That is what I meant with "I added rtl
| |
| 23 } | |
| 24 | |
| 25 #buttons { | |
| 26 padding: 15px 15px; | |
| 27 } | |
| 28 | |
| 29 #incorrect-passphrase-warning { | |
| 30 color: red; | |
| 31 font-weight: bold; | |
| 32 } | |
| OLD | NEW |