home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 May / PCWorld_2003-05_cd.bin / Komunik / phoenix / chrome / toolkit.jar / content / global / autocomplete.css < prev    next >
Cascading Style Sheet File  |  2002-04-24  |  759b  |  29 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. .autocomplete-result-popup[hidden="true"] {
  13.   visibility: hidden;
  14. }
  15.  
  16. /* The following rule is here to fix bug 96899 (and now 117952).  
  17.    Somehow trees create a situation
  18.    in which a popupset flows itself as if its popup child is directly within it
  19.    instead of the placeholder child that should actually be inside the popupset.
  20.    This is a stopgap measure, and it does not address the real bug.  */
  21. popupset {
  22.   max-width: 0px;
  23.   width: 0px;
  24. }
  25.  
  26. treecolpicker {
  27.   display: none;
  28. }
  29.