OLD | NEW |
1 /* | 1 /* |
2 Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 * Copyright (c) 2011 The Chromium Authors. All rights reserved. |
3 Use of this source code is governed by a BSD-style license that can be | 3 * Use of this source code is governed by a BSD-style license that can be |
4 found in the LICENSE file. | 4 * found in the LICENSE file. |
5 */ | 5 */ |
| 6 |
| 7 button.password-button { |
| 8 background: #8aaaed; |
| 9 color: #fff; |
| 10 display: inline; |
| 11 font-size: 90%; |
| 12 font-weight: bold; |
| 13 height: 18px; |
| 14 padding: 0 2px; |
| 15 position: absolute; |
| 16 top: 5px; |
| 17 width: 50px; |
| 18 } |
| 19 |
| 20 html[dir='ltr'] button.password-button { |
| 21 right: 50px; |
| 22 } |
| 23 |
| 24 html[dir='rtl'] button.password-button { |
| 25 left: 50px; |
| 26 } |
6 | 27 |
7 .inactive-password { | 28 .inactive-password { |
8 background: transparent; | 29 background: transparent; |
9 border: none; | 30 border: none; |
10 } | 31 } |
| 32 |
| 33 #saved-passwords-list .url { |
| 34 box-sizing: border-box; |
| 35 width: 40%; |
| 36 } |
| 37 |
| 38 #saved-passwords-list .name { |
| 39 -webkit-box-flex: 1; |
| 40 width: 20%; |
| 41 } |
| 42 |
| 43 #saved-passwords-list .password { |
| 44 -webkit-box-flex: 1; |
| 45 position: relative; |
| 46 } |
| 47 |
| 48 #saved-passwords-list .url, |
| 49 #saved-passwords-list .name, |
| 50 #password-exceptions-list .url { |
| 51 overflow: hidden; |
| 52 text-overflow: ellipsis; |
| 53 } |
OLD | NEW |