LCARStrek support of new toolbar iconsize/mode controls, no small icons yet
[themes.git] / LCARStrek / global / autocomplete.css
... / ...
CommitLineData
1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is "Classic" theme of mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * the Mozilla Organization.
18 * Portions created by the Initial Developer are Copyright (C) 1998-2001
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * Robert Kaiser <KaiRo@KaiRo.at>
23 *
24 * Alternatively, the contents of this file may be used under the terms of
25 * either the GNU General Public License Version 2 or later (the "GPL"), or
26 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 * in which case the provisions of the GPL or the LGPL are applicable instead
28 * of those above. If you wish to allow use of your version of this file only
29 * under the terms of either the GPL or the LGPL, and not to allow others to
30 * use your version of this file under the terms of the MPL, indicate your
31 * decision by deleting the provisions above and replace them with the notice
32 * and other provisions required by the GPL or the LGPL. If you do not delete
33 * the provisions above, a recipient may use your version of this file under
34 * the terms of any one of the MPL, the GPL or the LGPL.
35 *
36 * ***** END LICENSE BLOCK ***** */
37
38/* ===== autocomplete.css =================================================
39 == Styles used by the autocomplete widget.
40 ======================================================================= */
41
42@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
43@namespace html url("http://www.w3.org/1999/xhtml");
44
45/* ::::: autocomplete ::::: */
46
47textbox {
48 cursor: default;
49 padding: 0px;
50 -moz-border-radius: 3px;
51}
52
53/* Used by autocomplete widgets that don't have an icon. Gross. -dwh */
54textbox.padded {
55 padding-top: 1px;
56 padding-bottom: 1px;
57 -moz-padding-start: 2px;
58 -moz-padding-end: 0px;
59}
60
61.autocomplete-textbox-container {
62 -moz-box-align: center;
63}
64
65textbox[nomatch="true"][highlightnonmatches="true"] {
66 color: red;
67}
68
69.textbox-input-box {
70 margin: 0 3px;
71 -moz-box-align: center;
72 -moz-border-radius: 3px;
73}
74
75/* ::::: history button ::::: */
76
77.autocomplete-history-dropmarker {
78 min-width: 15px;
79 min-height: 15px;
80 background-color: #000000;
81 -moz-border-radius: 0px 3px 3px 0px;
82}
83
84.autocomplete-history-dropmarker,
85.autocomplete-history-dropmarker:hover,
86.autocomplete-history-dropmarker:hover:active,
87.autocomplete-history-dropmarker[open="true"] {
88 border: none;
89 border-left: 1px solid #9C9CFF;
90}
91
92/* ::::: autocomplete popups ::::: */
93
94panel[type="autocomplete"],
95panel[type="autocomplete-richlistbox"],
96.autocomplete-history-popup {
97 border: 1px solid #FF9F00;
98 background-color: #000000;
99 padding: 0;
100}
101
102.autocomplete-history-popup {
103 max-height: 25em;
104}
105
106/* ::::: tree ::::: */
107
108.autocomplete-tree {
109 border: none;
110 background-color: transparent !important;
111}
112
113.autocomplete-treecol {
114 margin: 0px !important;
115 border: none !important;
116 padding: 0px !important;
117}
118
119/* GTK calculates space for a sort arrow */
120.autocomplete-treecol > .treecol-sortdirection {
121 -moz-appearance: none !important;
122}
123
124.autocomplete-treebody::-moz-tree-cell-text {
125 padding-left: 8px;
126}
127
128.autocomplete-treebody::-moz-tree-row(selected) {
129 background-color: #FFCF00;
130}
131
132.autocomplete-treebody::-moz-tree-cell-text(selected) {
133 color: #000000 !important;
134}
135
136.autocomplete-treebody::-moz-tree-image(treecolAutoCompleteValue) {
137 max-width: 16px;
138 height: 16px;
139}
140
141/* ::::: richlistbox autocomplete ::::: */
142
143.autocomplete-richlistbox {
144 margin: 0;
145}
146
147.autocomplete-richlistbox > scrollbox {
148 overflow-x: hidden !important;
149}
150
151.autocomplete-richlistitem[selected="true"] {
152 background-color: #008484;
153 color: #000000;
154}
155
156.autocomplete-richlistitem {
157 padding: 1px 2px;
158 border-bottom: 1px solid #E7ADE7;
159}
160
161.ac-site-icon {
162 width: 16px;
163 height: 16px;
164 margin: 0 5px -3px 3px;
165}
166
167.ac-type-icon {
168 width: 16px;
169 height: 16px;
170}
171
172.ac-extra > .ac-result-type-tag {
173 margin: 0 4px;
174}
175
176.ac-extra > .ac-comment {
177 padding-right: 4px;
178}
179
180.ac-ellipsis-after {
181 margin: 2px 0px 0px 0px !important;
182 padding: 0;
183 min-width: 1em;
184}
185
186.ac-normal-text {
187 margin: 2px 0px 0px 0px !important;
188 padding: 0;
189}
190
191.ac-normal-text > html|span {
192 margin: 0 !important;
193 padding: 0;
194}
195
196html|span.ac-emphasize-text {
197 font-weight: bold;
198 text-decoration: underline;
199}
200
201html|span.ac-emphasize-alt {
202 text-decoration: underline;
203}
204
205.ac-title, .ac-url {
206 overflow: hidden;
207}
208
209/* ::::: textboxes inside toolbarpaletteitems ::::: */
210
211toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input {
212 visibility: hidden;
213}
214
215toolbarpaletteitem > toolbaritem > * > textbox > hbox > hbox > html|*.textbox-input {
216 visibility: hidden;
217}