xpfe/components/autocomplete/resources/content/autocomplete.css

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4
michael@0 5
michael@0 6 .autocomplete-result-popupset {
michael@0 7 width: 0 !important;
michael@0 8 }
michael@0 9
michael@0 10 .autocomplete-result-popup {
michael@0 11 display: -moz-popup !important;
michael@0 12 }
michael@0 13
michael@0 14 /* the C++ implementation of widgets is too eager to make popups visible.
michael@0 15 this causes problems (bug 120155 and others), thus this workaround: */
michael@0 16 .autocomplete-result-popup[hidden="true"] {
michael@0 17 visibility: hidden;
michael@0 18 }
michael@0 19
michael@0 20 .autocomplete-tree {
michael@0 21 -moz-user-focus: ignore;
michael@0 22 }
michael@0 23
michael@0 24 .autocomplete-history-dropmarker {
michael@0 25 display: none;
michael@0 26 }
michael@0 27
michael@0 28 .autocomplete-history-dropmarker[enablehistory="true"] {
michael@0 29 display: -moz-box;
michael@0 30 }
michael@0 31
michael@0 32 /* The following rule is here to fix bug 96899 (and now 117952).
michael@0 33 Somehow trees create a situation
michael@0 34 in which a popupset flows itself as if its popup child is directly within it
michael@0 35 instead of the placeholder child that should actually be inside the popupset.
michael@0 36 This is a stopgap measure, and it does not address the real bug. */
michael@0 37 popupset {
michael@0 38 max-width: 0px;
michael@0 39 width: 0px;
michael@0 40 min-width: 0%;
michael@0 41 min-height: 0%;
michael@0 42 }
michael@0 43
michael@0 44 treecolpicker {
michael@0 45 display: none;
michael@0 46 }

mercurial