OLD | NEW |
| (Empty) |
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 | |
3 * found in the LICENSE file. */ | |
4 | |
5 #search-engine-manager-page { | |
6 width: 700px; | |
7 } | |
8 | |
9 .search-engine-list input { | |
10 -webkit-box-flex: 1; | |
11 display: -webkit-box; | |
12 } | |
13 | |
14 .search-engine-list > div { | |
15 display: -webkit-box; | |
16 } | |
17 | |
18 .search-engine-list .favicon { | |
19 height: 16px; | |
20 line-height: 16px; | |
21 padding: 0 7px; | |
22 width: 16px; | |
23 } | |
24 | |
25 .search-engine-list .name-column { | |
26 -webkit-box-align: center; | |
27 -webkit-padding-end: 1ex; | |
28 box-sizing: border-box; | |
29 display: -webkit-box; | |
30 width: 30%; | |
31 } | |
32 | |
33 .search-engine-list .name-column :last-child { | |
34 -webkit-box-flex: 1; | |
35 } | |
36 | |
37 .search-engine-list .keyword-column { | |
38 -webkit-padding-end: 1ex; | |
39 box-sizing: border-box; | |
40 width: 26%; | |
41 } | |
42 | |
43 .search-engine-list .url-column { | |
44 box-sizing: border-box; | |
45 width: 44%; | |
46 } | |
47 | |
48 .search-engine-list .keyword-column, | |
49 .search-engine-list .url-column { | |
50 color: #666; | |
51 } | |
52 | |
53 .search-engine-list .default .name-column, | |
54 .search-engine-list .default .keyword-column { | |
55 font-weight: bold; | |
56 } | |
57 | |
58 /* For temporary Make Default button */ | |
59 .search-engine-list .url-column { | |
60 -webkit-box-align: center; | |
61 display: -webkit-box; | |
62 } | |
63 | |
64 .search-engine-list .url-column :first-child { | |
65 -webkit-box-flex: 1; | |
66 } | |
67 | |
68 .search-engine-list .url-column .list-inline-button { | |
69 margin-top: 0; | |
70 padding: 1px 6px 2px 6px; | |
71 } | |
72 | |
73 .search-engine-list > :not(:hover):not([editing]) .url-column | |
74 .list-inline-button { | |
75 display: none; | |
76 } | |
77 | |
78 /* End temporary Make Default button styling */ | |
OLD | NEW |