blob: a75c9a386dc2826a6d4ecf5c71326121c30c9af6 (
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
|
/* 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/. */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
@namespace html url("http://www.w3.org/1999/xhtml");
:host {
appearance: auto;
-moz-default-appearance: searchfield;
font-size: 12px;
cursor: text;
margin: 4px; /* matches <input> global.css margin */
padding: 1px;
background-color: Field;
color: FieldText;
}
html|input {
border: none;
padding: 0 1px;
background-color: transparent;
outline: none;
color: inherit;
font: inherit;
text-shadow: inherit;
box-sizing: border-box;
-moz-box-flex: 1;
min-width: 0;
text-align: inherit;
}
:host([readonly="true"]) {
background-color: -moz-Dialog;
color: -moz-DialogText;
}
:host([disabled="true"]) {
cursor: default;
background-color: -moz-Dialog;
color: GrayText;
}
/* ::::: icons ::::: */
.textbox-search-clear {
list-style-image: url(resource://content-accessible/searchfield-cancel.svg);
margin-bottom: 1px;
}
.textbox-search-clear:not([disabled]) {
cursor: default;
}
/* Don't leave extra blank space with long placeholders (see bug 1385902) */
.textbox-search-icons:not([selectedIndex="1"]) {
display: none;
}
|