blob: 55fdfc4bd43777a814689af0c2ef6b68e532bacb (
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
|
/* 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/. */
.searchbar-textbox {
width: 6em;
min-width: 6em;
}
.autocomplete-textbox-container {
-moz-box-align: stretch;
}
.textbox-input-box {
margin: 0;
}
/* ::::: searchbar-engine-button ::::: */
.searchbar-engine-image {
height: 16px;
width: 16px;
list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
}
.searchbar-engine-button {
-moz-appearance: none;
min-width: 0;
margin: 0;
padding: 0;
-moz-padding-end: 2px;
-moz-box-align: center;
background: none;
border: none;
}
.searchbar-engine-button > .button-box {
-moz-appearance: none;
padding: 0;
border: 0;
}
.searchbar-dropmarker-image {
list-style-image: url("chrome://browser/skin/searchbar-dropdown-arrow.png");
-moz-image-region: rect(0, 13px, 11px, 0);
}
.searchbar-engine-button[open="true"] > .searchbar-dropmarker-image {
-moz-image-region: rect(0, 26px, 11px, 13px);
}
/* ::::: search-go-button ::::: */
.search-go-container {
-moz-box-align: center;
}
.search-go-button {
padding: 1px;
list-style-image: url("chrome://browser/skin/Search-glass.png");
-moz-image-region: rect(0px 16px 16px 0px);
}
.search-go-button:-moz-locale-dir(rtl) {
transform: scaleX(-1);
}
.search-go-button:hover {
-moz-image-region: rect(0px 32px 16px 16px);
}
.search-go-button:hover:active {
-moz-image-region: rect(0px, 48px, 16px, 32px);
}
.searchbar-engine-menuitem[selected="true"] > .menu-iconic-text {
font-weight: bold;
}
|