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 #address-list, | 5 #autofill-options { |
6 #creditcard-list { | 6 min-width: 550px; |
Evan Stade
2012/03/15 01:00:58
why is this min-width? when can the autofill optio
James Hawkins
2012/03/15 01:18:16
When a list item grows larger than the width of th
| |
7 min-width: 500px; | |
8 } | 7 } |
9 | 8 |
10 #autofill-help { | 9 #autofill-help { |
11 bottom: 18px; | 10 bottom: 18px; |
12 position: absolute; | 11 position: absolute; |
13 } | 12 } |
14 | 13 |
15 .autofill-list-item { | 14 .autofill-list-item { |
16 -webkit-box-flex: 1; | 15 -webkit-box-flex: 1; |
17 -webkit-padding-start: 8px; | 16 -webkit-padding-start: 8px; |
(...skipping 25 matching lines...) Expand all Loading... | |
43 /* Gets overwritten by raw-button:hover */ | 42 /* Gets overwritten by raw-button:hover */ |
44 background: rgb(138, 170, 237) !important; | 43 background: rgb(138, 170, 237) !important; |
45 color: #fff; | 44 color: #fff; |
46 margin-top: 0; | 45 margin-top: 0; |
47 } | 46 } |
48 | 47 |
49 #address-list > div:not(:hover) * button, | 48 #address-list > div:not(:hover) * button, |
50 #creditcard-list > div:not(:hover) * button { | 49 #creditcard-list > div:not(:hover) * button { |
51 display: none; | 50 display: none; |
52 } | 51 } |
OLD | NEW |