summaryrefslogtreecommitdiffstats
path: root/chrome/browser/resources/options/search_engine_manager.css
blob: 3235031b0355d8d7c10ddd512f8ff1db9903c271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/* Copyright (c) 2012 The Chromium Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file. */

#search-engine-manager-page {
  width: 700px;
}

.search-engine-list input {
  width: 100%;
}

.search-engine-list > div {
  display: -webkit-box;
}

.search-engine-list .favicon {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 16px;
  height: 16px;
  line-height: 16px;
  padding: 0 7px;
  width: 16px;
}

.search-engine-list .name-column {
  -webkit-box-align: center;
  -webkit-padding-end: 1ex;
  box-sizing: border-box;
  display: -webkit-box;
  width: 30%;
}

.search-engine-list .name-column :last-child {
  -webkit-box-flex: 1;
}

.search-engine-list .keyword-column {
  -webkit-padding-end: 1ex;
  box-sizing: border-box;
  width: 26%;
}

.search-engine-list .url-column {
  box-sizing: border-box;
  width: 44%;
}

.search-engine-list .keyword-column,
.search-engine-list .url-column {
  color: #666;
}

.search-engine-list .default .name-column,
.search-engine-list .default .keyword-column {
  font-weight: bold;
}

/* For temporary Make Default button */
.search-engine-list .url-column {
  -webkit-box-align: center;
  display: -webkit-box;
}

.search-engine-list .url-column :first-child {
  -webkit-box-flex: 1;
}

.search-engine-list .url-column .list-inline-button {
  -webkit-margin-start: 1ex;
  margin-top: 0;
  padding: 1px 6px 2px 6px;
}

.search-engine-list > :not(:hover):not([editing]) .url-column
    .list-inline-button {
  display: none;
}

#default-search-engine-list {
  z-index: 2;
}

#other-search-engine-list {
  z-index: 1;
}

/* End temporary Make Default button styling */