OLD | NEW |
1 /* | 1 /* |
2 * Copyright (c) 2011 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 | 6 |
7 button.password-button { | 7 button.password-button { |
8 background: #8aaaed; | 8 background: #8aaaed; |
9 color: #fff; | 9 color: #fff; |
10 display: inline; | 10 display: inline; |
11 font-size: 90%; | 11 font-size: 90%; |
12 font-weight: bold; | 12 font-weight: bold; |
13 height: 18px; | 13 height: 18px; |
14 padding: 0 2px; | 14 padding: 0 2px; |
15 position: absolute; | 15 position: absolute; |
16 top: 5px; | 16 top: 5px; |
17 width: 50px; | 17 width: 50px; |
18 } | 18 } |
19 | 19 |
20 html[dir='ltr'] button.password-button { | 20 html[dir='ltr'] button.password-button { |
21 right: 50px; | 21 right: 50px; |
22 } | 22 } |
23 | 23 |
24 html[dir='rtl'] button.password-button { | 24 html[dir='rtl'] button.password-button { |
25 left: 50px; | 25 left: 50px; |
26 } | 26 } |
27 | 27 |
28 .inactive-password { | 28 input[type="password"].inactive-password { |
29 background: transparent; | 29 background: transparent; |
30 border: none; | 30 border: none; |
31 } | 31 } |
32 | 32 |
33 #saved-passwords-list .url { | 33 #saved-passwords-list .url { |
34 box-sizing: border-box; | 34 box-sizing: border-box; |
35 width: 40%; | 35 width: 40%; |
36 } | 36 } |
37 | 37 |
38 #saved-passwords-list .name { | 38 #saved-passwords-list .name { |
39 -webkit-box-flex: 1; | 39 -webkit-box-flex: 1; |
40 width: 20%; | 40 width: 20%; |
41 } | 41 } |
42 | 42 |
43 #saved-passwords-list .password { | 43 #saved-passwords-list .password { |
44 -webkit-box-flex: 1; | 44 -webkit-box-flex: 1; |
45 position: relative; | 45 position: relative; |
46 } | 46 } |
47 | 47 |
48 #saved-passwords-list .url, | 48 #saved-passwords-list .url, |
49 #saved-passwords-list .name, | 49 #saved-passwords-list .name, |
50 #password-exceptions-list .url { | 50 #password-exceptions-list .url { |
51 overflow: hidden; | 51 overflow: hidden; |
52 text-overflow: ellipsis; | 52 text-overflow: ellipsis; |
53 } | 53 } |
OLD | NEW |