| 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-user-set-passphrase-page { | 5 html { |
| 6 background-color: white; | 6 margin: 0; |
| 7 min-width: 400px; | 7 padding: 0; |
| 8 } | 8 } |
| 9 | 9 |
| 10 #passphrase-missmatch, | 10 body { |
| 11 .managed-user-passphrase-container { | 11 margin: 0; |
| 12 margin-top: 15px; | 12 padding: 0; |
| 13 } | 13 } |
| 14 | 14 |
| 15 #managed-user-passphrase:invalid, | 15 .titlebar { |
| 16 #passphrase-confirm:invalid { | 16 -webkit-app-region: drag; |
| 17 background-color: pink; | 17 background-color: white; |
| 18 border-bottom: 1px solid #e5e5e5; |
| 19 height: 26px; |
| 20 white-space: nowrap; |
| 21 width: 100%; |
| 18 } | 22 } |
| 19 | 23 |
| 20 #passphrase-mismatch { | 24 .titlebar-close-button { |
| 21 float: right; | 25 -webkit-app-region: no-drag; |
| 26 height: 14px; |
| 27 margin: 6px; |
| 28 position: absolute; |
| 29 right: 0; |
| 30 width: 14px; |
| 22 } | 31 } |
| 23 | 32 |
| 24 html[dir=rtl] #passphrase-mismatch { | 33 .content { |
| 25 float: left; | 34 height: auto; |
| 35 width: 100%; |
| 26 } | 36 } |
| OLD | NEW |