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 #autofill-options { | 5 #autofill-options { |
6 width: 550px; | 6 width: 550px; |
7 } | 7 } |
8 | 8 |
9 #autofill-options list { | 9 #autofill-options list { |
10 min-height: 172px; | 10 min-height: 172px; |
11 } | 11 } |
12 | 12 |
13 .autofill-list-item { | 13 .autofill-list-item { |
14 -webkit-box-flex: 1; | 14 -webkit-box-flex: 1; |
15 -webkit-padding-start: 8px; | 15 -webkit-padding-start: 8px; |
16 overflow: hidden; | 16 overflow: hidden; |
17 text-overflow: ellipsis; | 17 text-overflow: ellipsis; |
18 } | 18 } |
19 | 19 |
20 .autofill-list-item + img { | |
21 -webkit-padding-end: 20px; | |
22 vertical-align: top; | |
23 } | |
24 | |
25 #autofill-options > div:last-child { | 20 #autofill-options > div:last-child { |
26 margin-top: 15px; | 21 margin-top: 15px; |
27 } | 22 } |
28 | 23 |
| 24 #autofill-options .deletable-item > span { |
| 25 color: #777; |
| 26 } |
| 27 |
29 #autofill-options > div.settings-list > div:last-child { | 28 #autofill-options > div.settings-list > div:last-child { |
30 border-top: 1px solid #d9d9d9; | 29 border-top: 1px solid #d9d9d9; |
31 padding: 5px 10px; | 30 padding: 5px 10px; |
32 } | 31 } |
33 | 32 |
34 #autofill-add-address, | 33 #autofill-add-address, |
35 #autofill-add-creditcard { | 34 #autofill-add-creditcard { |
36 margin: 5px 5px; | 35 margin: 5px 5px; |
37 } | 36 } |
38 | 37 |
39 #autofill-options .list-inline-button { | 38 #autofill-options .list-inline-button { |
| 39 -webkit-margin-start: 12px; |
40 margin-top: 0; | 40 margin-top: 0; |
41 vertical-align: top; | 41 vertical-align: top; |
42 } | 42 } |
43 | 43 |
44 #autofill-options div[role='listitem']:not(:hover):not([selected]) | 44 #autofill-options div[role='listitem']:not(:hover):not([selected]) |
45 .list-inline-button { | 45 .list-inline-button { |
46 display: none; | 46 display: none; |
47 } | 47 } |
OLD | NEW |