add fitting tabbrowser icons - leave original connection/loading APNGs as it's hard...
[themes.git] / LCARStrek / global / autocomplete.css
CommitLineData
351107c9 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
b1eaa419 38/* ===== autocomplete.css =================================================
39 == Styles used by the autocomplete widget.
40 ======================================================================= */
351107c9 41
c79d2bbe
RK
42@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
43@namespace html url("http://www.w3.org/1999/xhtml");
44
b1eaa419 45/* ::::: autocomplete ::::: */
351107c9 46
cfae8c74
RK
47/* .padded is used by autocomplete widgets that don't have an icon. Gross. -dwh */
48textbox:not(.padded) {
b1eaa419 49 cursor: default;
50 padding: 0px;
569543b3 51 border-radius: 3px;
b1eaa419 52}
351107c9 53
cfae8c74
RK
54textbox[nomatch="true"][highlightnonmatches="true"] {
55 color: red;
c79d2bbe
RK
56}
57
58.autocomplete-textbox-container {
59 -moz-box-align: center;
60}
61
cfae8c74
RK
62textbox:not(.padded) .textbox-input-box {
63 margin: 0 3px;
c79d2bbe
RK
64}
65
b1eaa419 66.textbox-input-box {
b1eaa419 67 -moz-box-align: center;
569543b3 68 border-radius: 3px;
b1eaa419 69}
351107c9 70
71/* ::::: history button ::::: */
72
b1eaa419 73.autocomplete-history-dropmarker {
b1eaa419 74 min-width: 15px;
242fc635 75 min-height: 15px;
569543b3 76 border-radius: 0px 3px 3px 0px;
b1eaa419 77}
38cfeb47
RK
78.autocomplete-history-dropmarker:-moz-locale-dir(rtl) {
79 border-radius: 3px 0px 0px 3px;
80}
b1eaa419 81
38cfeb47
RK
82.autocomplete-history-dropmarker:-moz-locale-dir(ltr),
83.autocomplete-history-dropmarker:-moz-locale-dir(ltr):hover,
84.autocomplete-history-dropmarker:-moz-locale-dir(ltr):hover:active,
85.autocomplete-history-dropmarker:-moz-locale-dir(ltr)[open="true"] {
a12570b9 86 border: none;
87 border-left: 1px solid #9C9CFF;
b1eaa419 88}
351107c9 89
38cfeb47
RK
90.autocomplete-history-dropmarker:-moz-locale-dir(rtl),
91.autocomplete-history-dropmarker:-moz-locale-dir(rtl):hover,
92.autocomplete-history-dropmarker:-moz-locale-dir(rtl):hover:active,
93.autocomplete-history-dropmarker:-moz-locale-dir(rtl)[open="true"] {
94 border: none;
95 border-right: 1px solid #9C9CFF;
96}
97
351107c9 98/* ::::: autocomplete popups ::::: */
99
c79d2bbe
RK
100panel[type="autocomplete"],
101panel[type="autocomplete-richlistbox"],
b1eaa419 102.autocomplete-history-popup {
103 border: 1px solid #FF9F00;
c79d2bbe 104 background-color: #000000;
b1eaa419 105 padding: 0;
106}
351107c9 107
b1eaa419 108.autocomplete-history-popup {
6046f027 109 max-height: 25em;
b1eaa419 110}
351107c9 111
7aa65558 112/* ::::: tree ::::: */
351107c9 113
7aa65558 114.autocomplete-tree {
b1eaa419 115 border: none;
116 background-color: transparent !important;
117}
118
7aa65558 119.autocomplete-treecol {
b1eaa419 120 margin: 0px !important;
121 border: none !important;
122 padding: 0px !important;
123}
124
c79d2bbe
RK
125/* GTK calculates space for a sort arrow */
126.autocomplete-treecol > .treecol-sortdirection {
127 -moz-appearance: none !important;
128}
129
01fc5c11 130.autocomplete-treebody::-moz-tree-cell-text {
8caa872d 131 -moz-padding-start: 8px;
b1eaa419 132}
133
c79d2bbe 134.autocomplete-treebody::-moz-tree-row(selected) {
b1eaa419 135 background-color: #FFCF00;
136}
137
c79d2bbe 138.autocomplete-treebody::-moz-tree-cell-text(selected) {
b1eaa419 139 color: #000000 !important;
2edfca93 140}
c79d2bbe
RK
141
142.autocomplete-treebody::-moz-tree-image(treecolAutoCompleteValue) {
143 max-width: 16px;
144 height: 16px;
145}
146
147/* ::::: richlistbox autocomplete ::::: */
148
149.autocomplete-richlistbox {
150 margin: 0;
151}
152
153.autocomplete-richlistbox > scrollbox {
154 overflow-x: hidden !important;
155}
156
157.autocomplete-richlistitem[selected="true"] {
158 background-color: #008484;
159 color: #000000;
160}
161
162.autocomplete-richlistitem {
163 padding: 1px 2px;
ca710c53
RK
164}
165
166.autocomplete-richlistitem:not(:first-child) {
167 border-top: 1px solid #E7ADE7;
c79d2bbe
RK
168}
169
170.ac-site-icon {
171 width: 16px;
172 height: 16px;
02920d2b
RK
173 margin-top: 0;
174 margin-bottom: -3px;
175 -moz-margin-start: 3px;
176 -moz-margin-end: 5px;
c79d2bbe
RK
177}
178
179.ac-type-icon {
180 width: 16px;
181 height: 16px;
182}
183
184.ac-extra > .ac-result-type-tag {
185 margin: 0 4px;
186}
187
188.ac-extra > .ac-comment {
8caa872d 189 -moz-padding-end: 4px;
c79d2bbe
RK
190}
191
192.ac-ellipsis-after {
02920d2b 193 margin: 2px 0px 0px !important;
c79d2bbe
RK
194 padding: 0;
195 min-width: 1em;
196}
197
198.ac-normal-text {
02920d2b 199 margin: 2px 0px 0px !important;
c79d2bbe
RK
200 padding: 0;
201}
202
203.ac-normal-text > html|span {
204 margin: 0 !important;
205 padding: 0;
206}
207
208html|span.ac-emphasize-text {
209 font-weight: bold;
210 text-decoration: underline;
211}
212
213html|span.ac-emphasize-alt {
214 text-decoration: underline;
215}
216
217.ac-title, .ac-url {
218 overflow: hidden;
219}
220
221/* ::::: textboxes inside toolbarpaletteitems ::::: */
222
223toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input {
224 visibility: hidden;
225}
226
227toolbarpaletteitem > toolbaritem > * > textbox > hbox > hbox > html|*.textbox-input {
228 visibility: hidden;
229}