blob: a184564b936c274947cfb4f489fb97e7ca588a43 (
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
90
91
92
93
94
|
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
#minibuffer {
color: white;
background: #333333;
border-top: 1px solid #285577;
-moz-box-align: baseline;
}
#minibuffer-input {
background-color: -moz-field !important;
}
#minibuffer-input .textbox-input-box {
width: 5em;
}
#minibuffer-input [anonid="annotation"] {
font-style: oblique;
}
#minibuffer-input [anonid="strut"] {
padding-right: 1em !important;
}
/* mode text widgets */
#minibuffer .mode-text-widget {
display: none;
}
#minibuffer[minibuffermode="message"] .mode-text-widget {
display: block;
border-left: 1px solid threedshadow;
padding-left: 4px !important;
padding-right: 4px !important;
margin-left: 0px !important;
margin-right: 0px !important;
}
#minibuffer[minibuffermode="message"] .mode-text-widget[value=""] {
display: none;
}
/* minibuffer highlighting */
#minibuffer.highlight {
background-color: Highlight;
color: HighlightText;
}
#minibuffer.highlight[minibuffermode="message"] .mode-text-widget {
border-left: 1px solid highlighttext;
}
/* Completions display */
tree.completions { margin: 0px !important; }
tree.completions treechildren { border: none !important; }
tree.completions treecol { -moz-binding: none !important; }
tree.completions {
-moz-appearance: none !important;
border: 0px none !important;
border-top: 1px solid -moz-Dialog !important;
-moz-border-top-colors: -moz-initial !important;
}
tree.completions treechildren::-moz-tree-row {
border: none;
}
tree.completions treechildren::-moz-tree-row(current) {
background-color: Highlight !important;
color: HighlightText !important;
}
tree.completions treechildren::-moz-tree-cell-text(completion-description) {
font-weight: bold !important;
}
tree.completions treechildren::-moz-tree-cell-text(current) {
color: HighlightText !important;
}
tree.completions[hasicons="true"] treechildren::-moz-tree-image {
width: 16px;
height: 16px;
margin-right: 6px;
}
|