make networking pane work nicely in current nightlies (not completely sure if we...
[themes.git] / LCARStrek / global / autocomplete.css
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2  * License, v. 2.0. If a copy of the MPL was not distributed with this
3  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
4
5 /* ===== autocomplete.css =================================================
6   == Styles used by the autocomplete widget.
7   ======================================================================= */
8
9 @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10 @namespace html url("http://www.w3.org/1999/xhtml");
11
12 /* ::::: autocomplete ::::: */
13
14 /* .padded is used by autocomplete widgets that don't have an icon. Gross. -dwh */
15 textbox:not(.padded) {
16   cursor: default;
17   padding: 0px;
18   border-radius: 3px;
19 }
20
21 textbox[nomatch="true"][highlightnonmatches="true"] {
22   color: red;
23 }
24
25 .autocomplete-textbox-container {
26   -moz-box-align: center;
27 }
28
29 textbox:not(.padded) .textbox-input-box {
30   margin: 0 3px;
31 }
32
33 .textbox-input-box {
34   -moz-box-align: center;
35   border-radius: 3px;
36 }
37
38 /* ::::: history button ::::: */
39
40 .autocomplete-history-dropmarker {
41   min-width: 15px;
42   min-height: 15px;
43   border-radius: 0px 3px 3px 0px;
44 }
45 .autocomplete-history-dropmarker:-moz-locale-dir(rtl) {
46   border-radius: 3px 0px 0px 3px;
47 }
48
49 .autocomplete-history-dropmarker:-moz-locale-dir(ltr),
50 .autocomplete-history-dropmarker:-moz-locale-dir(ltr):hover,
51 .autocomplete-history-dropmarker:-moz-locale-dir(ltr):hover:active,
52 .autocomplete-history-dropmarker:-moz-locale-dir(ltr)[open="true"] {
53   border: none;
54   border-left: 1px solid #9C9CFF;
55 }
56
57 .autocomplete-history-dropmarker:-moz-locale-dir(rtl),
58 .autocomplete-history-dropmarker:-moz-locale-dir(rtl):hover,
59 .autocomplete-history-dropmarker:-moz-locale-dir(rtl):hover:active,
60 .autocomplete-history-dropmarker:-moz-locale-dir(rtl)[open="true"] {
61   border: none;
62   border-right: 1px solid #9C9CFF;
63 }
64
65 /* ::::: autocomplete popups ::::: */
66
67 panel[type="autocomplete"],
68 panel[type="autocomplete-richlistbox"],
69 .autocomplete-history-popup {
70   border: 1px solid #FF9F00;
71   background-color: #000000;
72   color: #FF9F00;
73   padding: 0;
74 }
75
76 .autocomplete-history-popup {
77   max-height: 25em;
78 }
79
80 /* ::::: tree ::::: */
81
82 .autocomplete-tree {
83   border: none;
84   background-color: transparent !important;
85 }
86
87 .autocomplete-treecol {
88   margin: 0px !important;
89   border: none !important;
90   padding: 0px !important;
91 }
92
93 /* GTK calculates space for a sort arrow */
94 .autocomplete-treecol > .treecol-sortdirection {
95   -moz-appearance: none !important;
96 }
97
98 .autocomplete-treebody::-moz-tree-cell-text {
99   padding-inline-start: 8px;
100 }
101
102 .autocomplete-treebody::-moz-tree-row(selected) {
103   background-color: #FFCF00;
104 }
105
106 .autocomplete-treebody::-moz-tree-cell-text(selected) {
107   color: #000000 !important;
108 }
109
110 .autocomplete-treebody::-moz-tree-image(treecolAutoCompleteValue) {
111   max-width: 16px;
112   height: 16px;
113 }
114
115 /* ::::: richlistbox autocomplete ::::: */
116
117 .autocomplete-richlistbox {
118   border: none;
119   margin: 0;
120 }
121
122 .autocomplete-richlistbox > scrollbox {
123   overflow-x: hidden !important;
124 }
125
126 .ac-type-icon {
127   width: 16px;
128   height: 16px;
129   max-width: 16px;
130   max-height: 16px;
131   margin-inline-start: 14px;
132   margin-inline-end: 6px;
133 }
134
135 .ac-site-icon {
136   width: 16px;
137   height: 16px;
138   max-width: 16px;
139   max-height: 16px;
140   margin-inline-start: 0px;
141   margin-inline-end: 11px;
142   list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png");
143 }
144
145 .ac-site-icon[selected] {
146   list-style-image: url("chrome://mozapps/skin/places/defaultFavicon-inverted.png");
147 }
148
149 @media (min-resolution: 1.1dppx) {
150   .ac-site-icon {
151     list-style-image: url("chrome://mozapps/skin/places/defaultFavicon@2x.png");
152   }
153   .ac-site-icon[selected] {
154     list-style-image: url("chrome://mozapps/skin/places/defaultFavicon-inverted@2x.png");
155   }
156 }
157
158 .ac-title {
159   margin-inline-start: 0;
160   margin-inline-end: 6px;
161 }
162
163 html|span.ac-tag {
164   margin-inline-start: 0;
165   margin-inline-end: 2px;
166 }
167
168 .ac-tags {
169   margin-inline-start: 0;
170   margin-inline-end: 4px;
171 }
172
173 .ac-separator {
174   margin-inline-start: 0;
175   margin-inline-end: 6px;
176 }
177
178 /* Better align the URL/action with the title. */
179 .ac-tags,
180 .ac-separator,
181 .ac-url,
182 .ac-action {
183   margin-bottom: -2px;
184 }
185
186 .ac-title-text,
187 .ac-tags-text,
188 .ac-separator-text,
189 .ac-url-text,
190 .ac-action-text,
191 .ac-text-overflow-container {
192   padding: 0 !important;
193   margin: 0 !important;
194 }
195
196 /* ::::: textboxes inside toolbarpaletteitems ::::: */
197
198 toolbarpaletteitem > toolbaritem > textbox > hbox > hbox > html|*.textbox-input {
199   visibility: hidden;
200 }
201
202 toolbarpaletteitem > toolbaritem > * > textbox > hbox > hbox > html|*.textbox-input {
203   visibility: hidden;
204 }