|
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 |
|
6 .autocomplete-result-popupset { |
|
7 width: 0 !important; |
|
8 } |
|
9 |
|
10 .autocomplete-result-popup { |
|
11 display: -moz-popup !important; |
|
12 } |
|
13 |
|
14 /* the C++ implementation of widgets is too eager to make popups visible. |
|
15 this causes problems (bug 120155 and others), thus this workaround: */ |
|
16 .autocomplete-result-popup[hidden="true"] { |
|
17 visibility: hidden; |
|
18 } |
|
19 |
|
20 .autocomplete-tree { |
|
21 -moz-user-focus: ignore; |
|
22 } |
|
23 |
|
24 .autocomplete-history-dropmarker { |
|
25 display: none; |
|
26 } |
|
27 |
|
28 .autocomplete-history-dropmarker[enablehistory="true"] { |
|
29 display: -moz-box; |
|
30 } |
|
31 |
|
32 /* The following rule is here to fix bug 96899 (and now 117952). |
|
33 Somehow trees create a situation |
|
34 in which a popupset flows itself as if its popup child is directly within it |
|
35 instead of the placeholder child that should actually be inside the popupset. |
|
36 This is a stopgap measure, and it does not address the real bug. */ |
|
37 popupset { |
|
38 max-width: 0px; |
|
39 width: 0px; |
|
40 min-width: 0%; |
|
41 min-height: 0%; |
|
42 } |
|
43 |
|
44 treecolpicker { |
|
45 display: none; |
|
46 } |