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 #search-engine-manager-page { | 5 #search-engine-manager-page { |
6 max-width: 700px; | 6 width: 700px; |
| 7 } |
| 8 |
| 9 .search-engine-list input { |
| 10 display: -webkit-box; |
| 11 -webkit-box-flex: 1; |
7 } | 12 } |
8 | 13 |
9 .search-engine-list > div { | 14 .search-engine-list > div { |
10 display: -webkit-box; | 15 display: -webkit-box; |
11 } | 16 } |
12 | 17 |
13 .search-engine-list .favicon { | 18 .search-engine-list .favicon { |
14 height: 16px; | 19 height: 16px; |
15 padding: 1px 7px 0 7px; | 20 padding: 1px 7px 0 7px; |
16 } | 21 } |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 background: rgb(138, 170, 237); | 68 background: rgb(138, 170, 237); |
64 color: #fff; | 69 color: #fff; |
65 margin-top: 0; | 70 margin-top: 0; |
66 } | 71 } |
67 | 72 |
68 .search-engine-list > :not(:hover):not([editing]) .url-column button { | 73 .search-engine-list > :not(:hover):not([editing]) .url-column button { |
69 display: none; | 74 display: none; |
70 } | 75 } |
71 | 76 |
72 /* End temporary Make Default button styling */ | 77 /* End temporary Make Default button styling */ |
OLD | NEW |