home *** CD-ROM | disk | FTP | other *** search
/ GameStar 2005 October / Gamestar_77_2005-10_dvd.iso / Programy / nsb-install-8-0.exe / chrome / fusion.jar / skin / fusion / global / linkTree.css < prev    next >
Cascading Style Sheet File  |  2005-07-29  |  839b  |  29 lines

  1. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
  2.  
  3. /** 
  4.  * All the properties in this rule are important to avoid having to create 
  5.  * a special type of tree. This stylesheet can be loaded into a document with
  6.  * a single tree that is a link tree. Hardly elegant but it's efficient.
  7.  */  
  8. treeitem[selected="true"] > treerow
  9.   {
  10.     background            : transparent !important;
  11.     border                : none !important;
  12.     color                 : -moz-FieldText !important;
  13.   }
  14.   
  15. treecell:hover
  16.   {
  17.     text-decoration       : underline !important;
  18.     color                 : #000080 !important;
  19.     cursor                : pointer;
  20.   }
  21.   
  22. treecell:hover:active
  23.   {
  24.     text-decoration       : underline !important;
  25.     color                 : red !important;
  26.   } 
  27.   
  28.   
  29.