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 max-width: 700px; |
7 } | 7 } |
8 | 8 |
9 .search-engine-list > div { | 9 .search-engine-list > div { |
10 display: -webkit-box; | 10 display: -webkit-box; |
11 } | 11 } |
12 | 12 |
13 .search-engine-list .favicon { | 13 .search-engine-list .favicon { |
| 14 height: 16px; |
14 padding: 1px 7px 0 7px; | 15 padding: 1px 7px 0 7px; |
15 height: 16px; | |
16 } | 16 } |
17 | 17 |
18 .search-engine-list .name-column { | 18 .search-engine-list .name-column { |
19 -webkit-box-align: center; | 19 -webkit-box-align: center; |
20 -webkit-padding-end: 1ex; | 20 -webkit-padding-end: 1ex; |
21 box-sizing: border-box; | 21 box-sizing: border-box; |
22 display: -webkit-box; | 22 display: -webkit-box; |
23 width: 37%; | 23 width: 37%; |
24 } | 24 } |
25 | 25 |
(...skipping 17 matching lines...) Expand all Loading... |
43 color: #666; | 43 color: #666; |
44 } | 44 } |
45 | 45 |
46 .search-engine-list .default .name-column, | 46 .search-engine-list .default .name-column, |
47 .search-engine-list .default .keyword-column { | 47 .search-engine-list .default .keyword-column { |
48 font-weight: bold; | 48 font-weight: bold; |
49 } | 49 } |
50 | 50 |
51 /* For temporary Make Default button */ | 51 /* For temporary Make Default button */ |
52 .search-engine-list .url-column { | 52 .search-engine-list .url-column { |
| 53 -webkit-box-align: center; |
53 display: -webkit-box; | 54 display: -webkit-box; |
54 -webkit-box-align: center; | |
55 } | 55 } |
56 | 56 |
57 .search-engine-list .url-column :first-child { | 57 .search-engine-list .url-column :first-child { |
58 -webkit-box-flex: 1; | 58 -webkit-box-flex: 1; |
59 } | 59 } |
60 | 60 |
61 .search-engine-list .url-column button { | 61 .search-engine-list .url-column button { |
62 -webkit-margin-start: 3px; | 62 -webkit-margin-start: 3px; |
63 background: rgb(138, 170, 237); | 63 background: rgb(138, 170, 237); |
64 color: #fff; | 64 color: #fff; |
65 margin-top: 0; | 65 margin-top: 0; |
66 } | 66 } |
67 | 67 |
68 .search-engine-list > :not(:hover):not([editing]) .url-column button { | 68 .search-engine-list > :not(:hover):not([editing]) .url-column button { |
69 display: none; | 69 display: none; |
70 } | 70 } |
71 | 71 |
72 /* End temporary Make Default button styling */ | 72 /* End temporary Make Default button styling */ |
OLD | NEW |