home *** CD-ROM | disk | FTP | other *** search
/ Chip 2003 January / 01_03.iso / software / ghostzilla_hit / files / ghostzilla-1.0-plus-install.exe / chrome / toolkit.jar / content / global / autocomplete.css < prev    next >
Encoding:
Cascading Style Sheet File  |  2002-04-30  |  894 b   |  31 lines

  1.  
  2. .autocomplete-result-popupset {
  3.   width: 0 !important;
  4. }
  5.  
  6. .autocomplete-result-popup {
  7.   display: -moz-popup !important;
  8. }
  9.  
  10. /* the C++ implementation of widgets is too eager to make popups visible.
  11.    this causes problems (bug 120155 and others), thus this workaround.
  12.    note that on the 1.0 branch, this file is Windows-only. it prevents
  13.    the autocomplete popup from showing at all on the Macintosh. */
  14. .autocomplete-result-popup[hidden="true"] {
  15.   visibility: hidden;
  16. }
  17.  
  18. /* The following rule is here to fix bug 96899 (and now 117952).  
  19.    Somehow trees create a situation
  20.    in which a popupset flows itself as if its popup child is directly within it
  21.    instead of the placeholder child that should actually be inside the popupset.
  22.    This is a stopgap measure, and it does not address the real bug.  */
  23. popupset {
  24.   max-width: 0px;
  25.   width: 0px;
  26. }
  27.  
  28. treecolpicker {
  29.   display: none;
  30. }
  31.