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
90
91
92
93
94
95
96
97
98
99
100
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
.searchBarImage {
height: 36px;
width: 631px;
-moz-context-properties: fill, stroke;
fill: var(--in-content-box-background);
stroke: var(--in-content-box-border-color);
}
.searchBarImage,
#searchShowSearchTermCheckbox {
margin-inline-start: 33px;
}
.searchBarImage:-moz-locale-dir(rtl) {
transform: scaleX(-1);
}
.searchBarHiddenImage {
list-style-image: url("chrome://browser/skin/preferences/no-search-bar.svg");
}
#searchBarShownRadio {
/* Allow a little visual space to separate the radio from the image above it. */
margin-top: 10px;
}
.searchBarShownImage {
list-style-image: url("chrome://browser/skin/preferences/search-bar.svg");
}
#defaultEngine,
#defaultPrivateEngine {
margin-inline-start: 0;
}
#defaultEngine::part(icon),
#defaultPrivateEngine::part(icon) {
height: 16px;
width: 16px;
}
/* work around a display: none in Linux's menu.css, see bug 1112310 */
.searchengine-menuitem > .menu-iconic-left {
display: flex;
}
#engineList {
margin: .5em 0;
}
#engineList treechildren::-moz-tree-image(engineName) {
margin-inline: 1px 10px;
width: 16px;
height: 16px;
}
#engineList treechildren::-moz-tree-drop-feedback {
background-color: SelectedItem;
width: 10000px; /* 100% doesn't work; 10k is hopefully larger than any window
we may have, overflow isn't visible. */
height: 2px;
margin-inline-start: 0;
}
#engineList treechildren::-moz-tree-image(bookmarks),
#engineList treechildren::-moz-tree-image(tabs),
#engineList treechildren::-moz-tree-image(history) {
-moz-context-properties: fill;
}
/* Local search shortcut icon colors. These should match the values in
urlbarView.inc.css. */
#engineList treechildren::-moz-tree-image(bookmarks) {
fill: #0060df; /* Blue-60 */
}
#engineList treechildren::-moz-tree-image(tabs) {
fill: #008eaf; /* Teal-70 */
}
#engineList treechildren::-moz-tree-image(history),
#engineList treechildren::-moz-tree-image(bookmarks, selected),
#engineList treechildren::-moz-tree-image(tabs, selected) {
fill: currentColor;
}
#engineShown {
min-width: 26px;
}
#addEnginesBox {
margin-bottom: 1em;
}
#removeEngineButton,
#restoreDefaultSearchEngines {
margin-inline: 0;
}
|