Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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/. */
6 .autocomplete-result-popupset {
7 width: 0 !important;
8 }
10 .autocomplete-result-popup {
11 display: -moz-popup !important;
12 }
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 }
20 .autocomplete-tree {
21 -moz-user-focus: ignore;
22 }
24 .autocomplete-history-dropmarker {
25 display: none;
26 }
28 .autocomplete-history-dropmarker[enablehistory="true"] {
29 display: -moz-box;
30 }
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 }
44 treecolpicker {
45 display: none;
46 }