| OLD | NEW |
| 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 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 | 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 #password-manager > div.content-area { | 5 #password-manager > div.content-area { |
| 6 width: 600px; | 6 width: 600px; |
| 7 } | 7 } |
| 8 | 8 |
| 9 #password-search-column { | 9 #password-search-column { |
| 10 bottom: 10px; | 10 bottom: 10px; |
| 11 position: absolute; | 11 position: absolute; |
| 12 right: 0; | 12 right: 0; |
| 13 } | 13 } |
| 14 | 14 |
| 15 html[dir=rtl] #password-search-column { | 15 html[dir=rtl] #password-search-column { |
| 16 left: 0; | 16 left: 0; |
| 17 right: auto; | 17 right: auto; |
| 18 } | 18 } |
| 19 | 19 |
| 20 #password-list-headers { | 20 #password-list-headers { |
| 21 position: relative; | 21 position: relative; |
| 22 width: 100%; | 22 width: 100%; |
| 23 } | 23 } |
| 24 | 24 |
| 25 #passwords-title { | 25 #passwords-title { |
| 26 display: inline-block; | 26 display: inline-block; |
| 27 } | 27 } |
| 28 |
| 29 #saved-passwords-list, |
| 30 #password-exceptions-list { |
| 31 max-height: 192px; /* For performance (crbug.com/651049). */ |
| 32 min-height: 128px; /* Smallest value rendering enough initial list items. */ |
| 33 } |
| OLD | NEW |