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 #saved-passwords-list .list-inline-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 font-size: 0.9em; | 8 font-size: 0.9em; |
9 height: 18px; | 9 height: 18px; |
10 margin-left: 2px; | 10 margin-left: 2px; |
(...skipping 16 matching lines...) Expand all Loading... |
27 border: none; | 27 border: none; |
28 } | 28 } |
29 | 29 |
30 #saved-passwords-list .url { | 30 #saved-passwords-list .url { |
31 box-sizing: border-box; | 31 box-sizing: border-box; |
32 width: 40%; | 32 width: 40%; |
33 } | 33 } |
34 | 34 |
35 #saved-passwords-list .name { | 35 #saved-passwords-list .name { |
36 -webkit-box-flex: 1; | 36 -webkit-box-flex: 1; |
37 width: 20%; | 37 width: 30%; |
38 } | 38 } |
39 | 39 |
40 #saved-passwords-list .password { | 40 #saved-passwords-list .password, |
| 41 #saved-passwords-list .federation { |
41 -webkit-box-flex: 1; | 42 -webkit-box-flex: 1; |
42 position: relative; | 43 position: relative; |
| 44 width: 30%; |
43 } | 45 } |
44 | 46 |
45 #saved-passwords-list .password input[type='password'], | 47 #saved-passwords-list .password input[type='password'], |
46 #saved-passwords-list .password input[type='text'] { | 48 #saved-passwords-list .password input[type='text'] { |
47 box-sizing: border-box; | 49 box-sizing: border-box; |
48 width: 100%; | 50 width: 100%; |
49 } | 51 } |
50 | 52 |
51 #password-exceptions-list .url { | 53 #password-exceptions-list .url { |
52 -webkit-box-flex: 1; | 54 -webkit-box-flex: 1; |
53 } | 55 } |
54 | 56 |
55 #saved-passwords-list .url, | 57 #saved-passwords-list .url, |
56 #saved-passwords-list .name, | 58 #saved-passwords-list .name, |
| 59 #saved-passwords-list .federation, |
57 #password-exceptions-list .url { | 60 #password-exceptions-list .url { |
58 overflow: hidden; | 61 overflow: hidden; |
59 text-overflow: ellipsis; | 62 text-overflow: ellipsis; |
60 } | 63 } |
OLD | NEW |