blob: a47f54c17bb21e52be7258ba1564e3b696fee9f0 (
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
|
/* 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/. */
/* ===== searchDialog.css ===============================================
== Styles for the Mail Search dialog.
======================================================================= */
@import url("chrome://messenger/skin/messenger.css");
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: Search Dialog adjustments ::::: */
#searchTermTree {
min-height: 50px;
}
#searchTermListBox {
height: 100px;
}
#searchResultListBox {
margin: 5px;
height: 100px;
}
#searchAddressBookWindow,
#searchMailWindow {
padding: 0px;
}
.search-menulist[unavailable="true"] {
color: #8C99AB;
}
menulist:not(#menuSearchLocalSystem) {
width: 12em;
}
menulist:not(#menuSearchLocalSystem) > menupopup > menuitem {
padding-inline-end: 2px;
}
.filler {
padding-inline-end: 22px;
}
.small-button {
min-width: 3em;
padding: 0px;
margin: 0px 1px;
}
textbox {
margin: 1px 4px;
}
|