082dab25 |
1 | |
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 : WindowText !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 | |