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 button.password-button { | 5 #saved-passwords-list .list-inline-button { |
6 -webkit-transition: opacity 150ms; | 6 -webkit-transition: opacity 150ms; |
7 background: rgb(138, 170, 237); | 7 background: rgb(138, 170, 237); |
8 border: 0; | |
9 border-radius: 2px; | |
10 color: #fff; | |
11 display: inline; | |
12 font-size: 0.9em; | 8 font-size: 0.9em; |
13 font-weight: bold; | |
14 height: 18px; | 9 height: 18px; |
15 opacity: 0.7; | |
16 padding: 0 2px; | 10 padding: 0 2px; |
17 position: absolute; | 11 position: absolute; |
18 top: 3px; | 12 top: 3px; |
19 } | 13 } |
20 | 14 |
21 button.password-button:hover { | 15 html[dir='ltr'] #saved-passwords-list .list-inline-button { |
22 -webkit-transition: opacity 150ms; | |
23 opacity: 1; | |
24 } | |
25 | |
26 html[dir='ltr'] button.password-button { | |
27 right: 2px; | 16 right: 2px; |
28 } | 17 } |
29 | 18 |
30 html[dir='rtl'] button.password-button { | 19 html[dir='rtl'] #saved-passwords-list .list-inline-button { |
31 left: 2px; | 20 left: 2px; |
32 } | 21 } |
33 | 22 |
34 input[type='password'].inactive-password { | 23 input[type='password'].inactive-password { |
35 background: transparent; | 24 background: transparent; |
36 border: none; | 25 border: none; |
37 } | 26 } |
38 | 27 |
39 #saved-passwords-list .url { | 28 #saved-passwords-list .url { |
40 box-sizing: border-box; | 29 box-sizing: border-box; |
(...skipping 19 matching lines...) Expand all Loading... |
60 #password-exceptions-list .url { | 49 #password-exceptions-list .url { |
61 -webkit-box-flex: 1; | 50 -webkit-box-flex: 1; |
62 } | 51 } |
63 | 52 |
64 #saved-passwords-list .url, | 53 #saved-passwords-list .url, |
65 #saved-passwords-list .name, | 54 #saved-passwords-list .name, |
66 #password-exceptions-list .url { | 55 #password-exceptions-list .url { |
67 overflow: hidden; | 56 overflow: hidden; |
68 text-overflow: ellipsis; | 57 text-overflow: ellipsis; |
69 } | 58 } |
OLD | NEW |