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-help { | |
10 bottom: 18px; | |
11 position: absolute; | |
12 } | |
13 | |
14 #autofill-options list { | 9 #autofill-options list { |
15 min-height: 172px; | 10 min-height: 172px; |
16 } | 11 } |
17 | 12 |
18 .autofill-list-item { | 13 .autofill-list-item { |
19 -webkit-box-flex: 1; | 14 -webkit-box-flex: 1; |
20 -webkit-padding-start: 8px; | 15 -webkit-padding-start: 8px; |
21 overflow: hidden; | 16 overflow: hidden; |
22 text-overflow: ellipsis; | 17 text-overflow: ellipsis; |
23 } | 18 } |
(...skipping 19 matching lines...) Expand all Loading... | |
43 | 38 |
44 #autofill-options .list-inline-button { | 39 #autofill-options .list-inline-button { |
45 margin-top: 0; | 40 margin-top: 0; |
46 vertical-align: top; | 41 vertical-align: top; |
47 } | 42 } |
48 | 43 |
49 #autofill-options div[role='listitem']:not(:hover):not([selected]) | 44 #autofill-options div[role='listitem']:not(:hover):not([selected]) |
50 .list-inline-button { | 45 .list-inline-button { |
51 display: none; | 46 display: none; |
52 } | 47 } |
48 | |
49 #autofill-options .spacer-div { | |
Evan Stade
2014/10/29 23:51:57
why two rules for the same thing?
Garrett Casto
2014/10/30 00:14:44
Wasn't sure what the right place to put a shared r
Evan Stade
2014/10/31 18:23:31
seems legit
| |
50 -webkit-box-flex: 1; | |
51 } | |
OLD | NEW |