~ubuntu-branches/ubuntu/precise/kompozer/precise

« back to all changes in this revision

Viewing changes to mozilla/themes/classic/global/win/linkTree.css

  • Committer: Bazaar Package Importer
  • Author(s): Anthony Yarusso
  • Date: 2007-08-27 01:11:03 UTC
  • Revision ID: james.westby@ubuntu.com-20070827011103-2jgf4s6532gqu2ka
Tags: upstream-0.7.10
ImportĀ upstreamĀ versionĀ 0.7.10

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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