home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 January / 01_02.iso / software / netscape62win / skinclas.xpi / bin / chrome / classic.jar / skin / classic / global / popup.css < prev    next >
Cascading Style Sheet File  |  2001-08-17  |  2KB  |  59 lines

  1. menupopup, popup
  2.   {
  3.     /* DON'T DELETE.  Removes disappearance of scrollbars
  4.      * in content pane when window is made smaller.
  5.      * Talk to evaughan@netscape.com for details.
  6.      */
  7.     min-width             : 1px;
  8.     background-color      : Menu;
  9.   }
  10.  
  11. /* XXX menupopups have to have a color explicitly specified. this is a bug */
  12. menupopup, popup 
  13.   {
  14.     border-left           : 1px solid ThreeDLightShadow;
  15.     border-top            : 1px solid ThreeDLightShadow;
  16.     border-right          : 1px solid ThreeDDarkShadow;
  17.     border-bottom         : 1px solid ThreeDDarkShadow;
  18.   }
  19.  
  20. .popup-internal-box
  21.   {
  22.     border-left           : 1px solid ThreeDHighlight;
  23.     border-top            : 1px solid ThreeDHighlight;
  24.     border-right          : 1px solid ThreeDShadow;
  25.     border-bottom         : 1px solid ThreeDShadow;
  26.     padding               : 1px;
  27.   }  
  28.   
  29. /** Tooltips (tooltip <popup> element is deprecated! Use <tooltip> instead!)
  30.  *  class="tooltip"
  31.  **/
  32. .tooltip, tooltip
  33.   {
  34.     border                : 1px solid WindowFrame;
  35.     padding               : 2px;
  36.     max-width             : 40em;
  37.     background-color      : InfoBackground;
  38.     color                 : InfoText;
  39.     font                  : message-box;
  40.   }
  41.  
  42. .tooltip > .popup-internal-box,
  43. tooltip > .popup-internal-box
  44.   {
  45.       border                : 0px;
  46.       padding               : 0px;
  47.   }
  48.  
  49. /* rules for popups associated with menulists */
  50.  
  51.   menulist > menupopup,
  52.   .menulist-menupopup
  53.     {
  54.       border              : 1px solid -moz-FieldText;
  55.       min-width           : 0px;
  56.       background-color    : -moz-Field;
  57.     }
  58.  
  59.